diff --git a/application/.htaccess b/application/.htaccess
old mode 100755
new mode 100644
diff --git a/application/cache/.htaccess b/application/cache/.htaccess
old mode 100755
new mode 100644
diff --git a/application/cache/index.html b/application/cache/index.html
old mode 100755
new mode 100644
diff --git a/application/config/autoload.php b/application/config/autoload.php
old mode 100755
new mode 100644
diff --git a/application/config/config.php b/application/config/config.php
old mode 100755
new mode 100644
diff --git a/application/config/constants.php b/application/config/constants.php
old mode 100755
new mode 100644
diff --git a/application/config/database.php b/application/config/database.php
old mode 100755
new mode 100644
index d8729325..995466ae
--- a/application/config/database.php
+++ b/application/config/database.php
@@ -48,13 +48,22 @@
$active_group = 'default';
$active_record = TRUE;
-$db['default']['hostname'] = 'resicoindustries.com';
-// $db['default']['username'] = 'resicoin_RIADev';
-// $db['default']['password'] = 'resico1234';
-// $db['default']['database'] = 'resicoin_RIADev';
-$db['default']['username'] = 'resicoin_PROD';
-$db['default']['password'] = 'ria!1234';
-$db['default']['database'] = 'resicoin_PROD';
+// $db['default']['hostname'] = 'localhost';
+// // $db['default']['username'] = 'resicoin_RIADev';
+// // $db['default']['password'] = 'resico1234';
+// // $db['default']['database'] = 'resicoin_RIADev';
+// $db['default']['username'] = 'resicoin_PROD';
+// $db['default']['password'] = 'ria!1234';
+// $db['default']['database'] = 'resicoin_PROD';
+
+// $db['default']['hostname'] = '119.18.54.85';
+// $db['default']['username'] = 'venbaehn_ria';
+// $db['default']['password'] = 'Ghc7ja3rMPLYNsV';
+// $db['default']['database'] = 'venbaehn_ria';
+$db['default']['hostname'] = 'vprodb1.mysql.database.azure.com';
+$db['default']['username'] = 'dbroot';
+$db['default']['password'] = 'root@DB23';
+$db['default']['database'] = 'ria_prod';
$db['default']['dbdriver'] = 'mysqli';
$db['default']['dbprefix'] = '';
$db['default']['pconnect'] = TRUE;
diff --git a/application/config/doctypes.php b/application/config/doctypes.php
old mode 100755
new mode 100644
diff --git a/application/config/foreign_chars.php b/application/config/foreign_chars.php
old mode 100755
new mode 100644
diff --git a/application/config/grocery_crud.php b/application/config/grocery_crud.php
old mode 100755
new mode 100644
diff --git a/application/config/hooks.php b/application/config/hooks.php
old mode 100755
new mode 100644
diff --git a/application/config/index.html b/application/config/index.html
old mode 100755
new mode 100644
diff --git a/application/config/migration.php b/application/config/migration.php
old mode 100755
new mode 100644
diff --git a/application/config/mimes.php b/application/config/mimes.php
old mode 100755
new mode 100644
diff --git a/application/config/profiler.php b/application/config/profiler.php
old mode 100755
new mode 100644
diff --git a/application/config/routes.php b/application/config/routes.php
old mode 100755
new mode 100644
diff --git a/application/config/smileys.php b/application/config/smileys.php
old mode 100755
new mode 100644
diff --git a/application/config/user_agents.php b/application/config/user_agents.php
old mode 100755
new mode 100644
diff --git a/application/controllers/Old_user.php b/application/controllers/Old_user.php
new file mode 100644
index 00000000..516664e7
--- /dev/null
+++ b/application/controllers/Old_user.php
@@ -0,0 +1,1589 @@
+load->model('user_model');
+ $this->load->model('dahsboard_Model');
+ $this->load->library('form_validation');
+ $this->load->model('costcenter_model');
+
+ $this->isLoggedIn();
+ $this->CompanyName = "RESICO";
+ }
+
+ /**
+ * This function used to load the first screen of the user
+ */
+ public function index()
+ {
+ // echo 'dash';
+ // print_r($this->session->userdata ( 'name' ));
+ log_message('ERROR','#####Dashboard session name : ' . $this->session->userdata ( 'name' ));
+ //print_r($this->dummy);//die();
+ $this->global['pageTitle'] = $this->CompanyName.' : Dashboard';
+
+ $this->load->model('employeedetails_model');
+
+
+ $this->load->model('dahsboard_Model');
+
+ $data['EmpCount'] = $this->employeedetails_model->getEmployeeCount();
+ $data['UserCount'] = $this->dahsboard_Model->getUserCount();
+
+ $data['totalpurchaseorder']=$this->dahsboard_Model->totalpurchaseorder();
+
+ //print_r( $data['totalpurchaseorder']);
+ $data['totalordervalue']=$this->dahsboard_Model->totalordervalue();
+ $data['pendingpo']=$this->dahsboard_Model->pendingpo();
+ // $data['totalserviceamount']=$this->dahsboard_Model->totalserviceamount();
+ // $data['totalcapitalamount']=$this->dahsboard_Model->totalcapitalamount();
+ // $data['totalimportamount']=$this->dahsboard_Model->totalimportamount();
+ // $data['totalrevenueamount']=$this->dahsboard_Model->totalrevenueamount();
+
+
+ // $data['totalservicepo']=$this->dahsboard_Model->totalservicepo();
+ // $data['totalrevenuepo']=$this->dahsboard_Model->totalrevenuepo();
+ $data['totalimportpo']=$this->dahsboard_Model->totalimportpo();
+ //$data['totalcapitalpo']=$this->dahsboard_Model->totalcapitalpo();
+
+ $data['details']=$this->dahsboard_Model->reqdetail();
+
+ $data['pending_details']=$this->dahsboard_Model->req_pending();
+ // $data['list']=$this->dahsboard_Model->req_list();
+
+ $data['serviceprogress']=$this->dahsboard_Model->serviceprogress();
+ $data['revenueprogress']=$this->dahsboard_Model->revenueprogress();
+ $data['importprogress']=$this->dahsboard_Model->importprogress();
+ $data['capitalprogress']=$this->dahsboard_Model->capitalprogress();
+ //month-wise area chart
+ $data['getTotalServicePoCount'] = $this->dahsboard_Model->getTotalServicePoCount();
+ $data['getTotalimportPoCount'] = $this->dahsboard_Model->getTotalimportPoCount();
+ $data['getTotalcapitalPoCount'] = $this->dahsboard_Model->getTotalcapitalPoCount();
+ $data['getTotalrevenuePoCount'] = $this->dahsboard_Model->getTotalrevenuePoCount();
+
+
+ //dashboard pie chart
+ $data['importbudgt'] = $this->dahsboard_Model->importbudgt();
+ $data['servicebudgt'] = $this->dahsboard_Model->servicebudgt();
+ $data['revenuebudgt'] = $this->dahsboard_Model->revenuebudgt();
+ $data['capitalbud'] = $this->dahsboard_Model->capitalbud();
+ $data['typebal'] = $this->dahsboard_Model->typebal();
+
+
+ /* HR DASHBOARD Controller Start*/
+
+
+ $data['totemp'] = $this->dahsboard_Model->totemp();
+ $data['totloan'] = $this->dahsboard_Model->totloan();
+ $data['totpay'] = $this->dahsboard_Model->totpay();
+ $data['totrec'] = $this->dahsboard_Model->totrec();
+ $data['emplist'] = $this->dahsboard_Model->emplist();
+ //print_r($data['totemp']);die;
+
+
+
+
+
+
+
+
+
+ $date = $this->input->post("id");
+ $dates = date('Y-m');
+ $date = $dates . '-01';
+ // // // echo $date;
+ $dat = date('d', strtotime("-1 days"));
+ // //echo $date;
+
+ $WH = 'WH' . date('j', strtotime("-1 days"));
+
+ $yesterday = $this->dahsboard_Model->attyesterday($WH, $date);
+ //print_r($yesterday);die;
+ $valuess = 0;
+ foreach ($yesterday as $weekda => $value)
+ {
+
+ if ($value[$WH] == 0)
+ {
+
+ $valuess++;
+ }
+
+
+ }
+ // echo $values;
+ $data['today'] = $valuess;
+
+
+ // echo $values;
+ //$data['today'] = sizeof($yesterday);
+
+
+
+
+ // $date = $this->input->post("id");
+ // echo $date;
+ $daydate = date('Y-m',strtotime($date));
+ //echo $date; die;
+ $daydate = $daydate . '-01';
+
+
+ $yesterday = $this->dahsboard_Model->attyesterday($WH, $daydate);
+ // print_r($yesterday);
+
+
+ //$absEmp =array($absEmp);
+ $values = 0;
+ $absEmp = array();
+
+ //echo $value; die;
+ foreach ($yesterday as $weekda => $value)
+ {
+ // echo $value[$WH];
+
+ if ($value[$WH] == 0)
+ {
+
+ $values++;
+ $absendId = $value['EmpID'];
+ $absendName = $value['FirstName'];
+ $absEmp [] = $absendId . "-" . $absendName; //absend empid and name list
+ }
+ }
+
+ //print_r($absentName);die;
+ $data['today'] = sizeof($absEmp);
+
+ $data['abs_name'] = $absEmp;
+
+ $OT = 'OT' . date('j',strtotime($date));
+
+ $CUR_month = date('t');
+ //echo $CUR_month;
+ //echo $daydate;
+ $toDayEmployee = $this->dahsboard_Model->yesterdayAllPersentEmpSalary($WH, $OT, $daydate);
+ //$EmpID = $toDayEmployee[0]->EmpID;
+
+ //print_r($toDayEmployee); die;
+
+ $EmpID = 0;
+
+ $employeeSalary = 0;
+
+ foreach ($toDayEmployee as $value)
+ {
+ $values = 0;
+ $totalothour = 0;
+
+ if ($value[$WH] != 0)
+ {
+
+ $totalothour = $value[$OT];
+ //echo $totalothour;die;
+ $values = 1;
+
+ //print_r($values); die;
+ $Empid = $value['EmpID'];
+ //print_r($value['EmpID']);
+
+ $totalEmployeePersent = $this->dahsboard_Model->persentEmployeeDetails($Empid);
+
+ // echo $Empid;
+ // print_r($totalEmployeePersent);
+
+ if(!empty($totalEmployeePersent))
+ {
+
+ $HRA_Amount = $totalEmployeePersent[0]->HRA_Amount;
+ $Basic_Pay = $totalEmployeePersent[0]->Basic_Pay;
+ $totalsalary = $totalEmployeePersent[0]->TotalSalary;
+ $dayFoodAmt = $totalEmployeePersent[0]->Food_Allowances;
+ //$allowances =$totalEmployeePersent[0]->Allowances;
+ //echo "hra amount";print_r(array($HRA_Amount,$Basic_Pay,$totalsalary));
+ //$Allowances = $allowances * $values;
+ $Food_Allowances = $dayFoodAmt * $values;
+
+ $daySalary = $Basic_Pay / $CUR_month;
+ /**per day salary working hour**/
+ //echo $daySalary.'
';
+
+ $dayHra = $HRA_Amount / $CUR_month;
+ /** per day hra amount **/
+ //echo $dayHra.'
';
+
+ $onehoursSalary = ($daySalary + $dayHra) / 8;
+ /**one hour salay ot calculation**/
+ if ($totalothour != 0) /** if ot not equal zero **/
+ {
+ $totSalayOT = $totalothour * $onehoursSalary;
+ }
+ else
+ {
+ $totSalayOT = 0;
+ }
+ $currentDaySalary = $daySalary * $values;
+ /** current day salary working days calculation**/
+
+
+ $currentDayHra = $dayHra * $values;
+ /** total working days hra calculations**/
+ // echo $currentDayHra.'
';
+ $currentDatePF = $currentDaySalary + $currentDayHra + $totSalayOT;
+ /** current date pf calculation**/
+ if ($totalsalary <= 20000)
+ {
+
+ $esiAmount = $currentDatePF * 1.75 / 100;
+ /** esiamount not elgiable for 20000 **/
+ }
+ else
+ {
+ $esiAmount = 0;
+ }
+ $pfAmount = $currentDaySalary * 12 / 100;
+ /** pf amount per day**/
+
+ //echo $totalothour;die;
+ $salaryInCurrentdays = $currentDaySalary + $totSalayOT + $currentDayHra + $Food_Allowances;
+ $salaryInCurrentday = $salaryInCurrentdays - ($esiAmount + $pfAmount);
+ $employeeSalary += round($salaryInCurrentday);
+
+ }
+ // echo $employeeSalary;
+ }
+
+ }
+
+
+ //$salaryInCurrentday++;
+
+
+ $data['employeeSalary'] = $employeeSalary;
+
+
+
+ $working = array();
+ $overtime = array();
+ //$holid = array();
+ for ($i = 1; $i <= $dat; $i++) //echo $dat; die;
+ {
+
+
+ $Working [] = 'WH' . $i;
+ $overtime [] = 'OT' . $i;
+
+ $CUR_month = date('t');
+ // echo $CUR_month; die;
+ // foreach ($holiday as $value)
+ // {
+ // //$holid []= 'WH'.$value;
+ // if($i==$value) {
+ // $holid []=$value;
+ // }
+ // }
+
+ }
+ //print_r($WH);die;
+ $WH = implode(",", $Working);
+
+
+ $OT = implode(",", $overtime);
+ $salarycurrentdate = array();
+
+
+
+ $toDayEmployee = $this->dahsboard_Model->dayAllPersentEmpSalary($WH, $OT, $date);
+
+
+ $totalSalary = 0;
+ $working = explode(",", $WH);
+ $overtime = explode(",", $OT);
+ foreach ($toDayEmployee as $value)
+ {
+ $values = 0;
+ foreach ($working as $work)
+ {
+// foreach ($overtime as $extra) {
+
+ if ($value[$work] != 0 || $value['OT' . substr($work, 2)] != 0)
+ {
+ $totalothour = $value['OT' . substr($work, 2)];
+ //echo $totalothour;
+ $values = 1;
+
+ //print_r($values); die;
+ $Empid = $value['EmpID'];
+ //echo $Empid;
+
+ $totalEmployeePersent = $this->dahsboard_Model->persentEmployeeDetails($Empid);
+ if(!empty($totalEmployeePersent))
+ {
+
+ $HRA_Amount = $totalEmployeePersent[0]->HRA_Amount;
+ $Basic_Pay = $totalEmployeePersent[0]->Basic_Pay;
+ $totalsalary = $totalEmployeePersent[0]->TotalSalary;
+ $dayFoodAmt = $totalEmployeePersent[0]->Food_Allowances;
+ //$allowances =$totalEmployeePersent[0]->Allowances;
+
+ // $Allowances = $allowances * $values;
+
+
+ $Food_Allowances = $dayFoodAmt * $values;
+
+ $daySalary = $Basic_Pay / $CUR_month;
+ /**per day salary working hour**/
+ //echo $daySalary.'
';
+
+ $dayHra = $HRA_Amount / $CUR_month;
+ /** per day hra amount **/
+ //echo $dayHra.'
';
+ $onehoursSalary = ($daySalary + $dayHra) / 8;
+ /**one hour salay ot calculation**/
+ if ($totalothour != 0) /** if ot not equal zero **/
+ {
+ $totSalayOT = $totalothour * $onehoursSalary;
+ }
+ else
+ {
+ $totSalayOT = 0;
+ }
+ $currentDaySalary = $daySalary * $values;
+ /** current day salary working days calculation**/
+
+
+ $currentDayHra = $dayHra * $values;
+ /** total working days hra calculations**/
+ // echo $currentDayHra.'
';
+ $currentDatePF = $currentDaySalary + $currentDayHra + $totSalayOT;
+ /** current date pf calculation**/
+ if ($totalsalary <= 20000)
+ {
+
+ $esiAmount = $currentDatePF * 1.75 / 100;
+ /** esiamount not elgiable for 20000 **/
+ } else {
+ $esiAmount = 0;
+ }
+ $pfAmount = $currentDaySalary * 12 / 100;
+ /** pf amount per day**/
+
+ //echo $totalothour;die;
+ $salaryInCurrentdays = $currentDaySalary + $totSalayOT + $currentDayHra + $Food_Allowances ;
+
+ $salaryInCurrentday = $salaryInCurrentdays -($esiAmount+$pfAmount);
+ $totalSalarys = $totalSalary + $salaryInCurrentday;
+
+ $totalSalary = round($totalSalarys);
+// $salarycurrentdate[] = $salaryInCurrentday;;
+ // echo 'totalSalary';
+ }
+
+ }
+
+ }
+ }
+ $data['totalSalary'] = $totalSalary;
+ // print_r( 'totalSalary');die;
+
+
+ $this->loadViews("dashboard", $this->global, $data, NULL);
+ }
+
+/*date click on day salary,absent name, total absent display*/
+
+function dateFunctionChangeVales()
+{
+
+
+
+ $date = $this->input->post("id");
+ $dates = date('Y-m');
+ $date = $dates . '-01';
+ // // echo $date;
+ // $dat = date('d', strtotime("-1 days"));
+ //echo $date;
+
+ $WH = 'WH' . date('j', strtotime("-1 days"));
+
+ //echo($WH);
+ $yesterday = $this->dahsboard_Model->attyesterday($WH, $date);
+ //print_r($yesterday);die;
+ $values = 0;
+ foreach ($yesterday as $weekda => $value)
+ {
+
+ if ($value[$WH] == 0)
+ {
+
+ $values++;
+ }
+
+
+ }
+ // echo $values;
+ $data['values'] = $values;
+
+
+
+
+ $date = $this->input->post("id");
+ // echo $date;
+ $daydate = date('Y-m',strtotime($date));
+ //echo $date; die;
+ $daydate = $daydate . '-01';
+ //$dat = date('d');
+ // echo $daydate; echo "";
+ $WH = 'WH' . date('j',strtotime($date));
+ // echo $WH;
+
+ $yesterday = $this->dahsboard_Model->attyesterday($WH, $daydate);
+ // print_r($yesterday);
+
+
+ //$absEmp =array($absEmp);
+ $values = 0;
+ $absEmp = array();
+ //echo $value; die;
+ foreach ($yesterday as $weekda => $value)
+ {
+ // echo $value[$WH];
+
+ if ($value[$WH] == 0)
+ {
+
+ $values++;
+ $absendId = $value['EmpID'];
+ $absendName = $value['FirstName'];
+ $absEmp [] = $absendId . "-" . $absendName; //absend empid and name list
+ }
+ }
+
+ //print_r($absentName);die;
+ $data['today'] = $values;
+ $data['absname'] = $absEmp;
+
+ $OT = 'OT' . date('j',strtotime($date));
+
+ $CUR_month = date('t');
+ //echo $CUR_month;
+ //echo $daydate;
+ $toDayEmployee = $this->dahsboard_Model->dayAllPersentEmpSalary($WH, $OT, $daydate);
+ //$EmpID = $toDayEmployee[0]->EmpID;
+
+ //print_r($toDayEmployee); die;
+
+ $EmpID = 0;
+
+ $employeeSalary = 0;
+
+ foreach ($toDayEmployee as $value)
+ {
+ $values = 0;
+ $totalothour = 0;
+
+ if ($value[$WH] != 0)
+ {
+
+ $totalothour = $value[$OT];
+ //echo $totalothour;die;
+ $values = 1;
+
+ //print_r($values); die;
+ $Empid = $value['EmpID'];
+ //print_r($value['EmpID']);
+
+ $totalEmployeePersent = $this->dahsboard_Model->persentEmployeeDetails($Empid);
+
+ // echo $Empid;
+ // print_r($totalEmployeePersent);
+
+ if(!empty($totalEmployeePersent))
+ {
+
+ $HRA_Amount = $totalEmployeePersent[0]->HRA_Amount;
+ $Basic_Pay = $totalEmployeePersent[0]->Basic_Pay;
+ $totalsalary = $totalEmployeePersent[0]->TotalSalary;
+ $dayFoodAmt = $totalEmployeePersent[0]->Food_Allowances;
+ //$allowances =$totalEmployeePersent[0]->Allowances;
+ //echo "hra amount";print_r(array($HRA_Amount,$Basic_Pay,$totalsalary));
+ //$Allowances = $allowances * $values;
+ $Food_Allowances = $dayFoodAmt * $values;
+
+ $daySalary = $Basic_Pay / $CUR_month;
+ /**per day salary working hour**/
+ //echo $daySalary.'
';
+
+ $dayHra = $HRA_Amount / $CUR_month;
+ /** per day hra amount **/
+ //echo $dayHra.'
';
+
+ $onehoursSalary = ($daySalary + $dayHra) / 8;
+ /**one hour salay ot calculation**/
+ if ($totalothour != 0) /** if ot not equal zero **/
+ {
+ $totSalayOT = $totalothour * $onehoursSalary;
+ } else {
+ $totSalayOT = 0;
+ }
+ $currentDaySalary = $daySalary * $values;
+ /** current day salary working days calculation**/
+
+
+ $currentDayHra = $dayHra * $values;
+ /** total working days hra calculations**/
+ // echo $currentDayHra.'
';
+ $currentDatePF = $currentDaySalary + $currentDayHra + $totSalayOT;
+ /** current date pf calculation**/
+ if ($totalsalary <= 20000)
+ {
+
+ $esiAmount = $currentDatePF * 1.75 / 100;
+ /** esiamount not elgiable for 20000 **/
+ } else {
+ $esiAmount = 0;
+ }
+ $pfAmount = $currentDaySalary * 12 / 100;
+ /** pf amount per day**/
+
+ //echo $totalothour;die;
+ $salaryInCurrentdays = $currentDaySalary + $totSalayOT + $currentDayHra + $Food_Allowances;
+ $salaryInCurrentday = $salaryInCurrentdays - ($esiAmount + $pfAmount);
+ $employeeSalary += round($salaryInCurrentday);
+
+ }
+ // echo $employeeSalary;
+ }
+
+ }
+
+
+ //$salaryInCurrentday++;
+
+
+ $data['employeeSalary'] = $employeeSalary;
+
+ $working = array();
+ $overtime = array();
+ //$holid = array();
+ $len = date('d',strtotime($date));
+ for ($i = 1; $i <= $len; $i++) //echo $dat; die;
+ {
+
+
+ $Working [] = 'WH' . $i;
+ $overtime [] = 'OT' . $i;
+
+ $CUR_month = date('t');
+ // echo $CUR_month; die;
+ // foreach ($holiday as $value)
+ // {
+ // //$holid []= 'WH'.$value;
+ // if($i==$value) {
+ // $holid []=$value;
+ // }
+ // }
+
+ }
+ //print_r($Working);die;
+ $WH = implode(",", $Working);
+
+
+ $OT = implode(",", $overtime);
+ $salarycurrentdate = array();
+
+
+
+ $toDayEmployee = $this->dahsboard_Model->dayAllPersentEmpSalary($WH, $OT, $daydate);
+
+
+ $totalSalary = 0;
+ $working = explode(",", $WH);
+ $overtime = explode(",", $OT);
+ foreach ($toDayEmployee as $value)
+ {
+ $values = 0;
+ foreach ($working as $work)
+ {
+// foreach ($overtime as $extra) {
+
+ if ($value[$work] != 0 || $value['OT' . substr($work, 2)] != 0)
+ {
+ $totalothour = $value['OT' . substr($work, 2)];
+ //echo $totalothour;
+ $values = 1;
+
+ //print_r($values); die;
+ $Empid = $value['EmpID'];
+ //echo $Empid;
+
+ $totalEmployeePersent = $this->dahsboard_Model->persentEmployeeDetails($Empid);
+ if(!empty($totalEmployeePersent))
+ {
+
+ $HRA_Amount = $totalEmployeePersent[0]->HRA_Amount;
+ $Basic_Pay = $totalEmployeePersent[0]->Basic_Pay;
+ $totalsalary = $totalEmployeePersent[0]->TotalSalary;
+ $dayFoodAmt = $totalEmployeePersent[0]->Food_Allowances;
+ //$allowances =$totalEmployeePersent[0]->Allowances;
+
+ // $Allowances = $allowances * $values;
+
+
+ $Food_Allowances = $dayFoodAmt * $values;
+
+ $daySalary = $Basic_Pay / $CUR_month;
+ /**per day salary working hour**/
+ //echo $daySalary.'
';
+
+ $dayHra = $HRA_Amount / $CUR_month;
+ /** per day hra amount **/
+ //echo $dayHra.'
';
+ $onehoursSalary = ($daySalary + $dayHra) / 8;
+ /**one hour salay ot calculation**/
+ if ($totalothour != 0) /** if ot not equal zero **/
+ {
+ $totSalayOT = $totalothour * $onehoursSalary;
+ }
+ else
+ {
+ $totSalayOT = 0;
+ }
+ $currentDaySalary = $daySalary * $values;
+ /** current day salary working days calculation**/
+
+
+ $currentDayHra = $dayHra * $values;
+ /** total working days hra calculations**/
+ // echo $currentDayHra.'
';
+ $currentDatePF = $currentDaySalary + $currentDayHra + $totSalayOT;
+ /** current date pf calculation**/
+ if ($totalsalary <= 20000)
+ {
+
+ $esiAmount = $currentDatePF * 1.75 / 100;
+ /** esiamount not elgiable for 20000 **/
+ } else {
+ $esiAmount = 0;
+ }
+ $pfAmount = $currentDaySalary * 12 / 100;
+ /** pf amount per day**/
+
+ //echo $totalothour;die;
+ $salaryInCurrentdays = $currentDaySalary + $totSalayOT + $currentDayHra + $Food_Allowances ;
+
+ $salaryInCurrentday = $salaryInCurrentdays -($esiAmount+$pfAmount);
+ $totalSalarys = $totalSalary + $salaryInCurrentday;
+
+ $totalSalary = round($totalSalarys);
+// $salarycurrentdate[] = $salaryInCurrentday;;
+ // echo 'totalSalary';
+ }
+
+ }
+
+ }
+ }
+ $data['totalSalary'] = $totalSalary;
+
+ //print_r($data['totalSalary']);die;
+ // }
+ echo json_encode($data);
+}
+
+
+/*this function uesd to finance startdate */
+
+ public function getFinancialStartDate()
+ {
+
+
+
+ $CURMONTH = date('n');
+ $CURYEAR = date('Y');
+ $FINYEAR = 0;
+ if ($CURMONTH >= 4)
+ {
+ $FINYEAR = $CURYEAR;
+ } else
+ {
+ $FINYEAR = $CURYEAR - 1;
+ }
+
+ $dateInString = $FINYEAR . '-4-1';
+ $result = date_create($dateInString);
+ // print_r($result);
+
+ return $result;
+
+}
+
+
+/*this function uesd to finance EndDate */
+ public function getFinancialEndDate()
+ {
+ $CURMONTH = date('n');
+ $CURYEAR = date('Y');
+ $FINYEAR = 0;
+ if ($CURMONTH < 4)
+ {
+ $FINYEAR = $CURYEAR;
+ } else
+ {
+ $FINYEAR = $CURYEAR + 1;
+ }
+
+ $dateInString = $FINYEAR . '-3-31';
+ $result = date_create($dateInString);
+
+
+ // print_r($result);
+ return $result;
+
+
+ }
+
+
+
+ /*this function used to speedometer month emp performances display*/
+
+ function monthattendance($empID ='')
+{
+
+ $date = date('Y-m');
+ //echo $date;
+ $dates = $date . '-01';
+ $EmpID = '';
+ if(empty($empID)){
+ $EmpID = $this->input->post('id');
+ }
+ else
+ {
+ $EmpID = $empID;
+ }
+ // echo $EmpID;die;
+ $monthabs = $this->dahsboard_Model->attendance($EmpID, $dates);
+ $persent_month = date('t');//current month of days 31
+ $values = array();
+ $otvalues = array();
+
+ $weekdays = array();
+ $otHours = array();
+ $date = date('j');//current month current date
+
+
+ $CURDATE =date('d');//current month current date
+
+ $CUR_month = date('t'); //current month of days 31
+
+
+ $CURYEAR = date('Y');
+ $CURMONTH = date('m');
+
+ $datejoin = $this->dahsboard_Model->joindate($EmpID);
+ $DateofJoiningInString = $datejoin[0]->DateofJoining;
+ $DateofJoining = date_create($DateofJoiningInString);
+ $doj_month = date_format($DateofJoining, "n");
+ $doj_year = date_format($DateofJoining, "Y");
+ $doj_day = date_format($DateofJoining, "j");
+ //echo $doj_day;
+ for ($i = 1; $i <= $persent_month; $i++)
+ {
+ $weekdays[] = 'WH' . $i;
+ $otHours[] = 'OT' . $i;
+ }
+ $totalwhhours=0;
+ foreach ($monthabs as $weekda)
+ {
+ //print_r($weekda);
+ foreach ($weekda as $key => $value)
+ {
+ //print_r($key);
+ foreach ($weekdays as $weeks)
+ {
+ if ($weeks == $key)
+ {
+ //print_r($key);
+ if ($value != 0)
+ {
+ //echo $value;
+ $values[] = $value;
+
+ }
+ //echo $values;
+ }
+
+ }
+ foreach ($otHours as $ot)
+ {
+ if ($ot == $key)
+ {
+ if ($value != 0)
+ {
+ $otvalues [] = $value;
+
+ }
+
+ }
+ }
+
+ }
+ }
+
+
+ $totalothour = array_sum($otvalues);
+ //$totalwhhour = sizeof($values);
+ $totalwhhours = array_sum($values);
+
+ $totalwhhour = $totalwhhours/8;
+ //echo $totalwhhour;
+ if ($CURMONTH == $doj_month && $CURYEAR == $doj_year)
+ {
+ //echo $doj_day;
+ $data['CUR_month'] = $CURDATE - $doj_day + 1;
+ //print_r($month);
+ }
+ else
+ {
+ $data['CUR_month'] = $date;
+ }
+
+ if ($totalwhhour != 0)
+ {
+ $year = date('Y');
+ $current_month = date('m');
+
+ $data['values'] = $totalwhhour;
+ //$data['salaryInCurrentday'] = round($salaryInCurrentday);
+ $data['present_percentage'] = round(($totalwhhour / $data['CUR_month']) * 100);
+
+ }
+
+ else {
+
+ $data['values'] = 0;
+ //$data['salaryInCurrentday'] = 0;
+ $data['present_percentage'] = 0;
+
+ }
+ if(empty($empID)){
+ echo json_encode( $data);
+ }
+ else{
+ return $data;
+ }
+ }
+
+
+
+
+
+
+
+ /*this function used to speedometer year emp performances display*/
+
+function attendanceyear($empID ='')
+{
+
+ $CURMONTH = date('m');
+ $CURDATE = date('d');
+ $CURYEAR = date('Y');
+ $EmpID = '';
+ if(empty($empID))
+ {
+ $EmpID = $this->input->post('id');
+ }
+ else
+ {
+ $EmpID = $empID;
+ }
+
+ $day = array();
+ $datejoin = $this->dahsboard_Model->joindate($EmpID);
+
+ $DateofJoiningInString = $datejoin[0]->DateofJoining;
+ $DateofJoining = date_create($DateofJoiningInString);
+ // print_r($DateofJoining);
+ $doj_month = date_format($DateofJoining, "n");
+ $doj_year = date_format($DateofJoining, "Y");
+ $doj_day = date_format($DateofJoining, "j");
+
+ $finStart = $this->getFinancialStartDate();
+ $finEnd = $this->getFinancialEndDate();
+
+ $JoinedMonth = date_format($DateofJoining, "n");
+
+ // print_r($finStart);print_r($finEnd);
+ //print $JoinedMonth;
+
+ if ($DateofJoining >= $finStart && $DateofJoining <= $finEnd)
+ {
+ $JoinedMonthAttendance = $this->dahsboard_Model->getAllAttendances($EmpID,$JoinedMonth);
+ $joinedMonthDaysCount = cal_days_in_month(CAL_GREGORIAN, $doj_month, $doj_year);
+
+ if ($CURMONTH == $doj_month && $CURYEAR == $doj_year)
+ {
+ $joinedMonthWorkingDayCount = $CURDATE - $doj_day +1 ;
+ }
+ else
+ {
+ $joinedMonthWorkingDayCount = $joinedMonthDaysCount - $doj_day +1;
+ }
+
+ $joinedMonthDays = 0;
+ for ($j = $doj_day; $j <= $joinedMonthDaysCount; $j++)
+ {
+ $weekdays[] = 'WH' . $j;
+ }
+ foreach ($JoinedMonthAttendance as $day)
+ {
+ foreach ($day as $key => $value)
+ {
+ foreach ($weekdays as $weeks)
+ {
+ if ($weeks == $key)
+ {
+ if ($value != 0)
+ {
+ // echo $value;
+ $joinedMonthDays++;
+ }
+ }
+
+ }
+ }
+
+ }
+
+ //echo $joinedMonthDays;die;
+
+ $result = $this->dahsboard_Model->attendanceyear($EmpID, $JoinedMonth + 1);
+
+ //print_r($result);
+ $yearabs = $this->dahsboard_Model->getAllAttendance($EmpID, $CURMONTH);
+ $TotalNoofDays = $result[0]->TotalWorkingDays;
+ $DaysWorked = $result[0]->DaysWorked;
+
+ // echo $TotalNoofDays;
+ // echo $DaysWorked;die;
+ $values = 0;
+ $values = array();
+ $weekdays = array();
+ $date = date('d');
+
+ $Work = array_sum($weekdays);
+
+ for ($j = 1; $j <= $date; $j++)
+ {
+ $weekdays[] = 'WH' . $j;
+ }
+ $totalhours =0;
+ foreach ($yearabs as $day)
+ {
+ foreach ($day as $key => $value)
+ {
+ foreach ($weekdays as $weeks)
+ {
+ if ($weeks == $key)
+ {
+ if ($value != 0)
+ {
+ //$values++;
+ //$totalhours = array_sum($value);
+ $values[] = $value;
+
+ }
+ }
+
+ }
+ }
+ }
+
+ $DaysWorked = 0;
+
+ $totalhours = array_sum($values);
+
+ $values = $totalhours/8;
+ //print_r($totalhours);
+
+ if ($CURMONTH == $doj_month && $CURYEAR == $doj_year)
+ {
+ $TotalNoofDays = $TotalNoofDays + $joinedMonthWorkingDayCount;
+ $DaysWorked = $joinedMonthDays;
+ }
+ else
+ {
+ $TotalNoofDays = $TotalNoofDays + $CURDATE + $joinedMonthWorkingDayCount;
+ $DaysWorked = $DaysWorked + $joinedMonthDays + $values;
+ }
+
+
+
+
+ $final_res = round(($DaysWorked / $TotalNoofDays) * 100);
+ // echo "------";
+ //echo $final_res;exit();
+ $data['workeds'] = $DaysWorked;
+ $data['yeardata'] = $final_res;
+ $data['totaldays'] = $TotalNoofDays;
+
+ }
+
+ else
+ {
+ $result = $this->dahsboard_Model->attendanceyear($EmpID, 4);
+ $yearabs = $this->dahsboard_Model->getAllAttendance($EmpID, $CURMONTH);
+ $TotalNoofDays = $result[0]->TotalWorkingDays;
+ $DaysWorked = $result[0]->DaysWorked;
+
+
+ $values = 0;
+ $values = array();
+ $weekdays = array();
+ $date = date('d');
+
+ $Work = array_sum($weekdays);
+
+ for ($j = 1; $j <= $date; $j++)
+ {
+ $weekdays[] = 'WH' . $j;
+ }
+ foreach ($yearabs as $day)
+ {
+ foreach ($day as $key => $value)
+ {
+ foreach ($weekdays as $weeks)
+ {
+ if ($weeks == $key)
+ {
+ if ($value != 0)
+ {
+
+ $values[]=$value;
+ }
+ }
+
+ }
+ }
+ }
+
+ $totalhours = array_sum($values);
+
+ $values = $totalhours/8;
+
+ $TotalNoofDays = $TotalNoofDays + $CURDATE;
+ $DaysWorked = $DaysWorked + $values;
+ $final_res = round(($DaysWorked / $TotalNoofDays) * 100);
+ // echo "------";
+ //echo $final_res;exit();
+ $data['workeds'] = $DaysWorked;
+ $data['yeardata'] = $final_res;
+ $data['totaldays'] = $TotalNoofDays;
+
+
+ }
+
+ if(empty($empID))
+ {
+
+ echo json_encode($data);
+ }
+ else
+ {
+ return $data;
+ }
+}
+
+
+
+
+
+
+
+
+
+
+
+/****************HR DASHBOART Controller END **************************************/
+
+ /**
+ * This function is used to load the user list
+ */
+ function userListing()
+ {
+ // if($this->isAdmin() == TRUE)
+ // {
+ // $this->loadThis();
+ // }
+ // else
+ // {
+
+ $data['userRecords'] = $this->user_model->userListing();
+
+ $this->global['pageTitle'] = $this->CompanyName.' : User Listing';
+
+ $this->loadViews("users", $this->global, $data, NULL);
+ //}
+ }
+
+
+ /**
+ * This function is used to load the add new form
+ */
+ function addNew()
+ {
+ // if($this->isAdmin() == TRUE)
+ // {
+ // $this->loadThis();
+ // }
+ // else
+ // {
+ $data['EmpList'] = $this->user_model->getAllEmployees();
+
+ $data['roles'] = $this->user_model->getUserRoles();
+
+ $data['Department'] = $this->costcenter_model->getDepartment();
+
+ $this->global['pageTitle'] = $this->CompanyName.' : Add New User';
+
+ $this->loadViews("addNew", $this->global, $data, NULL);
+ // }
+ }
+
+ /**
+ * This function is used to check whether email already exist or not
+ */
+ function checkEmailExists()
+ {
+ $userId = $this->input->post("userId");
+ $email = $this->input->post("email");
+
+ if(empty($userId)){
+ $result = $this->user_model->checkEmailExists($email);
+ } else {
+ $result = $this->user_model->checkEmailExists($email, $userId);
+ }
+
+ if(empty($result)){ echo("true"); }
+ else { echo("false"); }
+ }
+ /* Validation for Employee Dropdown
+ */
+ function Employee_validate($selectValue)
+{
+ //echo 'select_validate method called';
+ // 'none' is the first option and the text says something like "-Choose one-"
+ if($selectValue == '0')
+ {
+ $this->form_validation->set_message('Employee_validate', 'Please Select Employee.');
+ return false;
+ }
+ else // user picked something
+ {
+ return true;
+ }
+}
+ /* Validation for Employee Dropdown
+ */
+ function Role_validate($selectValue)
+{
+ //echo 'select_validate method called';
+ // 'none' is the first option and the text says something like "-Choose one-"
+ if($selectValue == '0')
+ {
+ $this->form_validation->set_message('Role_validate', 'Please Select Role.');
+ return false;
+ }
+ else // user picked something
+ {
+ return true;
+ }
+}
+ /**
+ * This function is used to add new user to the system
+ */
+ function addNewUser()
+ {
+ // if($this->isAdmin() == TRUE)
+ // {
+ // $this->loadThis();
+ // }
+ // else
+ // {
+
+ $this->form_validation->set_rules('EmpList','EmpList','trim|callback_Employee_validateS');
+ // $this->form_validation->set_rules('role','role','trim|callback_Role_validate');
+ $this->form_validation->set_rules('password','Password','required|max_length[20]');
+ $this->form_validation->set_rules('cpassword','Confirm Password','trim|required|matches[password]|max_length[20]');
+
+
+ if($this->form_validation->run() == FALSE)
+ {
+ $this->addNew();
+ }
+ else
+ {
+ $EmpID = $this->input->post('EmpList');
+ $roleId = '2';
+ $password = $this->input->post('password');
+ $dt = new DateTime('now', new DateTimeZone('Asia/Kolkata'));
+ $Createddt = $dt->format('Y-m-d H:i:s');
+
+ $email = $this->input->post('MailID');
+
+ $SelectedDepartment = $this->input->post('txtSelectedDepartment');
+
+ $comma_separated = explode(':', $SelectedDepartment);
+
+
+
+
+
+
+ $userInfo = array('email'=>$email,'EmpID'=>$EmpID,'password'=>getHashedPassword($password),'roleId'=>$roleId,'createdBy'=>$this->vendorId,'createdDtm'=>$Createddt);
+
+
+
+ //die();
+
+ $result = $this->user_model->addNewUser($userInfo);
+
+ if($SelectedDepartment != '')
+ {
+
+ for ($j = 0; $j < count($comma_separated); $j++)
+ {
+ $DeptCode = $comma_separated[$j];
+
+ //echo $DeptCode;
+
+ $userdept=array('EmpID'=>$EmpID,'Departmentcode'=>$DeptCode);
+
+ //print_r($userdept);
+
+ $access= $this->user_model->addAccess($userdept);
+
+ //echo $access;
+ }
+ }
+
+
+ if($result > 0)
+ {
+
+
+ echo "";
+ redirect('userListing','refresh');
+
+ }
+
+ else
+ {
+
+ redirect('userListing','refresh');
+ echo "";
+ }
+
+ }
+ //}
+ }
+
+
+
+
+
+function Adduserdepartment()
+ {
+ $empid= $this->input->post('Eid');
+ $Depcode= $this->input->post('Department');
+ $userdept=array('EmpID'=>$empid,'Departmentcode'=>$Depcode);
+
+ $access= $this->user_model->addAccess($userdept);
+ if($access>0)
+ {
+ echo "Successfully Added";
+ }
+ }
+
+
+ function Deleteuserdepartment()
+ {
+ $empid= $this->input->post('Eid');
+ $Depcode= $this->input->post('Department');
+ $userdept=array('EmpID'=>$empid,'Departmentcode'=>$Depcode);
+
+ $access= $this->user_model->DeleteAccess($empid,$Depcode);
+
+ if($access>0)
+ {
+ echo "Successfully Deleted";
+ }
+
+ }
+
+
+ /**
+ * This function is used load user edit information
+ * @param number $userId : Optional : This is user id
+ */
+ function editOld($UserId = '')
+ {
+ // if($this->isAdmin() == TRUE )
+ // {
+ // $this->loadThis();
+ // }
+ // else
+ // {
+ if($UserId == '')
+ {
+ // redirect('userListing');
+ }
+
+ $Uid = $_GET['UID'];
+ $Empid = $_GET['EMPID'];
+
+
+ $data['roles'] = $this->user_model->getUserRoles();
+
+ //print_r($data);
+
+ $data['EmpList'] = $this->user_model->GetEmployeeDetails($Uid);
+ //print_r($data);
+ $data['Departmentlist'] = $this->costcenter_model->getDepartmentnotadded($Empid);
+ $data['EmpRole'] = $this->user_model->GetRoleNameByUserID($Uid);
+ $data['AccessDept'] = $this->costcenter_model ->getaccessDept($Empid);
+
+ // $data['userInfo'] = $this->user_model->getUserInfo($userId);
+
+ $this->global['pageTitle'] = $this->CompanyName.' : Edit User';
+
+ $this->loadViews("editOld", $this->global, $data, NULL);
+ //}
+ }
+
+
+ /**
+ * This function is used to edit the user information
+ */
+ function editUser()
+ {
+ // if($this->isAdmin() == TRUE)
+ // {
+ // $this->loadThis();
+ // }
+ // else
+ // {
+ $userId = $this->input->post('EmpList');
+ $this->form_validation->set_rules('EmpList','EmpList','trim|callback_Employee_validateS');
+ $this->form_validation->set_rules('role','role','trim|callback_Role_validate');
+ $this->form_validation->set_rules('password','Password','required|max_length[20]');
+ $this->form_validation->set_rules('cpassword','Confirm Password','trim|required|matches[password]|max_length[20]');
+
+ if($this->form_validation->run() == FALSE)
+ {
+ $this->editOld($userId);
+ }
+ else
+ {
+ $EmpID = $this->input->post('EmpList');
+ $role = $this->input->post('role');
+ $password = $this->input->post('password');
+ $dt = new DateTime('now', new DateTimeZone('Asia/Kolkata'));
+ $updatedDate = $dt->format('Y-m-d H:i:s');
+
+ // echo $EmpID;
+
+ $userInfo = array();
+
+
+ $userInfo = array('password'=>getHashedPassword($password),'roleId'=>$role,'EmpId'=>$EmpID,'updatedDtm'=>$updatedDate);
+
+
+
+
+ $result = $this->user_model->editUser($userInfo, $EmpID);
+
+ if($result == true)
+ {
+ $this->session->set_flashdata('success', 'User updated successfully');
+ }
+ else
+ {
+ $this->session->set_flashdata('error', 'User updation failed');
+ }
+
+ redirect('userListing');
+ }
+ //}
+ }
+
+
+ /**
+ * This function is used to delete the user using userId
+ * @return boolean $result : TRUE / FALSE
+ */
+ function deleteUser()
+ {
+ echo 'Delete';
+ $Uid = $this->input->post('id');
+
+ $dt = new DateTime('now', new DateTimeZone('Asia/Kolkata'));
+ $updatedDate = $dt->format('Y-m-d H:i:s');
+
+ $userInfo = array('isDeleted'=>1,'updatedBy'=>$this->vendorId, 'updatedDtm'=>$updatedDate);
+
+ $result = $this->user_model->deleteUser($Uid, $userInfo);
+
+ echo 'Succssfully change the user status to InAcive';
+
+ }
+
+ /**
+ * This function is used to load the change password screen
+ */
+ function loadChangePass()
+ {
+ $this->global['pageTitle'] = $this->CompanyName.' : Change Password';
+
+ $this->loadViews("changePassword", $this->global, NULL, NULL);
+ }
+
+
+ /**
+ * This function is used to change the password of the user
+ */
+ function changePassword()
+ {
+ $this->load->library('form_validation');
+
+ $this->form_validation->set_rules('oldPassword','Old password','required|max_length[20]');
+ $this->form_validation->set_rules('newPassword','New password','required|max_length[20]');
+ $this->form_validation->set_rules('cNewPassword','Confirm new password','required|matches[newPassword]|max_length[20]');
+
+ if($this->form_validation->run() == FALSE)
+ {
+ $this->loadChangePass();
+ }
+ else
+ {
+ $oldPassword = $this->input->post('oldPassword');
+ $newPassword = $this->input->post('newPassword');
+
+ $resultPas = $this->user_model->matchOldPassword($this->vendorId, $oldPassword);
+
+ if(empty($resultPas))
+ {
+ $this->session->set_flashdata('nomatch', 'Your old password not correct');
+ redirect('loadChangePass');
+ }
+ else
+ {
+ $usersData = array('password'=>getHashedPassword($newPassword), 'updatedBy'=>$this->vendorId,
+ 'updatedDtm'=>date('Y-m-d H:i:sa'));
+
+ $result = $this->user_model->changePassword($this->vendorId, $usersData);
+
+ if($result > 0) { $this->session->set_flashdata('success', 'Password updation successful'); }
+ else { $this->session->set_flashdata('error', 'Password updation failed'); }
+
+ redirect('loadChangePass');
+ }
+ }
+ }
+
+ function pageNotFound()
+ {
+ $this->global['pageTitle'] = $this->CompanyName.' : 404 - Page Not Found';
+
+ $this->loadViews("404", $this->global, NULL, NULL);
+ }
+ //this function used to delivery performances
+
+function deliver_perform()
+{
+
+
+ $this->global['pageTitle'] = 'Resico : Delivery Performance';
+ 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');
+
+ //print_r($prod);
+ //die;
+
+ $data['fy']=$this->user_model->fincalYear();
+ $data['per']=$this->user_model->deliver_perform($fa,$aa,$m);
+
+ // // print_r( $data['spurchse']);
+ }
+
+ $data['fy']=$this->user_model->fincalYear();
+
+ $this->loadviews("deliver_perform",$this->global,$data,NULL);
+
+
+}
+ /*
+ *favourite add function and load view
+ */
+
+ function favourite()
+ {
+ $this->global['pageTitle'] = $this->CompanyName.' : Add Favourite';
+
+
+ // $data['ponoreset']=$this->purchaseorder_model->ponoresetfinyear();
+
+
+ $this->loadViews("Favourite", $this->global,Null);
+
+ }
+ function favouriteadd()
+ {
+ $name = $this->input->post('name');
+ $url = $this->input->post('url');
+ $status = $this->input->post('status');
+ $CreateBy = $this->session->userdata ( 'userId' );
+
+ $dt = new DateTime('now', new DateTimeZone('Asia/Kolkata'));
+ $createddt = $dt->format('Y-m-d H:i:s');
+ $menu = $this->input->post('menu');
+ // $RowCount = $this->input->post('txtRowCount');
+ // $DeletedRow = $this->input->post('txtDeletedRow');
+ // $comma_separated = explode(':', $DeletedRow);
+ $favourite = array('Menu_Name'=>$name,'Menu_URL'=>$url,'Status'=>$status,'Created_BY'=>$CreateBy,'Created_ON'=>$createddt,'Menu_ID'=>$menu);
+ $getdata= $this->user_model->favouriteadd($favourite);
+ // print_r($favourite);
+ // die();
+ if($getdata==1)
+
+ {
+ echo"success";
+
+ }
+ else{
+ echo"failed";
+ }
+
+ }
+}
+
+?>
\ No newline at end of file
diff --git a/application/controllers/cashbook.php b/application/controllers/cashbook.php
old mode 100755
new mode 100644
diff --git a/application/controllers/error.php b/application/controllers/error.php
old mode 100755
new mode 100644
diff --git a/application/controllers/index.html b/application/controllers/index.html
old mode 100755
new mode 100644
diff --git a/application/controllers/pages.php b/application/controllers/pages.php
old mode 100755
new mode 100644
diff --git a/application/controllers/purchaseorder.php b/application/controllers/purchaseorder.php
old mode 100755
new mode 100644
diff --git a/application/controllers/storerequisitioncontroller.php b/application/controllers/storerequisitioncontroller.php
old mode 100755
new mode 100644
diff --git a/application/controllers/user.php b/application/controllers/user.php
index 516664e7..2d388429 100644
--- a/application/controllers/user.php
+++ b/application/controllers/user.php
@@ -411,7 +411,7 @@ function dateFunctionChangeVales()
- $date = $this->input->post("id");
+ $date = $this->input->post("id");
$dates = date('Y-m');
$date = $dates . '-01';
// // echo $date;
@@ -1584,6 +1584,348 @@ function deliver_perform()
}
}
-}
-?>
\ No newline at end of file
+
+
+// start zoho API
+ function zohobooks_api_fetch_all(){
+
+ //echo 'scuess';//die();
+ if (isset($_POST['sync']))
+ {
+ $con = new mysqli($this->db->hostname,$this->db->username,$this->db->password,$this->db->database);
+
+ $ch=curl_init();
+
+ $organization_id = '776847408';
+ $client_id = '1000.0WMDLCXAZV5DR60IKE9P49YTYGVL6C';
+ $refresh_token = '1000.0fcf314cc7b7b598df6e519461bbe9b8.f77688a2254137532ae33ad5e152a064';
+ $client_secret = '99da3a05cfa13cf91eb6476a3c44cfa3e21b6106a8';
+ $redirect_uri = 'https://resicoindustries.com/RIA';
+
+ $date_today = date('Y-m-d');
+ // $date_yesterday = date('Y-m-d',strtotime('-1 day',strtotime($date_today)));
+ //$date_today = '2022-08-23';
+ $date_yesterday = date('Y-m-d',strtotime('-7 day',strtotime($date_today)));
+ // echo $date_yesterday;die();
+
+
+ $url_org ="https://books.zoho.com/api/v3/invoices?";
+
+ $fields=array(
+
+ "usestate" => "true",
+ "organization_id" =>"776847408",
+ "date_start" => $date_yesterday,
+ "date_end" => $date_today
+
+ );
+
+ $data_all = http_build_query($fields);
+
+ $accesstoken = '1000.095b66fc95fc81874c1cfc7d15b0904e.10bc9956d9b9ec14cce1350ee0cf8254';
+
+ //code => 57 -->expired
+ //code => 0 -->not expired
+ $headers=array(
+ 'Authorization:Zoho-oauthtoken '.$accesstoken,
+ 'Content-Type:application/json'
+ );
+
+ $data_access = $url_org.$data_all;
+
+ curl_setopt($ch, CURLOPT_URL, $data_access);
+ curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
+ curl_setopt($ch, CURLOPT_HEADER, 0);
+
+ $body = '{}';
+ curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");
+ curl_setopt($ch, CURLOPT_POSTFIELDS,$body);
+ curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
+
+ $result=curl_exec($ch);
+
+ $res = json_decode($result);
+
+
+
+ if($res->code=="57")
+ {
+
+ //echo 'new token';//die();
+ $url_getauthtoken = 'https://accounts.zoho.com/oauth/v2/token?refresh_token='.$refresh_token.'&client_id='.$client_id.'&client_secret='.$client_secret.'&redirect_uri='.$redirect_uri.'&grant_type=refresh_token';
+ curl_setopt($ch, CURLOPT_URL, $url_getauthtoken);
+ curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
+ curl_setopt($ch, CURLOPT_HEADER, 0);
+
+ $body = '{}';
+ curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
+ curl_setopt($ch, CURLOPT_POSTFIELDS,$body);
+ curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
+
+ $res_token=curl_exec($ch);
+
+ $ress = json_decode($res_token);
+
+ $newaccesstoken = $ress->access_token;
+
+
+ $headers_new=array(
+ 'Authorization:Zoho-oauthtoken '.$newaccesstoken,
+ 'Content-Type:application/json'
+ );
+
+
+
+ curl_setopt($ch, CURLOPT_URL, $url_org.$data_access);
+ curl_setopt($ch, CURLOPT_HTTPHEADER, $headers_new);
+ curl_setopt($ch, CURLOPT_HEADER, 0);
+
+ $body = '{}';
+ curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");
+ curl_setopt($ch, CURLOPT_POSTFIELDS,$body);
+ curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
+
+ $result=curl_exec($ch);
+
+ $res = json_decode($result,true);
+
+
+ // print_r($res['invoices']);
+ //print_r(count($res['invoices']));//die();
+ $inv_array = $res['invoices'];
+
+ foreach($inv_array as $inv){
+
+ $invoice_id = $inv['invoice_id'];
+
+
+ if($invoice_id!==""){
+
+ $url2 = 'https://books.zoho.com/api/v3/invoices/'.$invoice_id.'?organization_id='.$organization_id;
+
+ curl_setopt($ch, CURLOPT_URL, $url2);
+ curl_setopt($ch, CURLOPT_HTTPHEADER, $headers_new);
+ curl_setopt($ch, CURLOPT_HEADER, 0);
+
+ $body2 = '{}';
+ curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");
+ curl_setopt($ch, CURLOPT_POSTFIELDS,$body2);
+ curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
+
+ $result2=curl_exec($ch);
+
+ $resall = json_decode($result2,true);
+ $res2[] = $resall['invoice'];
+
+ }
+
+ }
+
+ //echo count($res2);
+
+
+ $insert_count = 0;
+ $update_count = 0;
+ foreach($res2 as $rs)
+ {
+
+
+ $gst_no = $rs['gst_no'];
+ $sku = $rs['line_items'][0]['sku'];
+ $invoice_number = $rs['invoice_number'];
+ $invoice_date = $rs['date'];
+ $due_date = $rs['due_date'];
+ $item_price = $rs['line_items'][0]['rate'];
+ $item_order = $rs['line_items'][0]['item_order'];
+ $item_product_unit = $rs['line_items'][0]['unit'];
+ $item_name = $rs['line_items'][0]['name'];
+ $item_description = $rs['line_items'][0]['description'];
+ $item_quantity = $rs['line_items'][0]['quantity'];
+ // $batch_no = $rs['custom_fields'][5]['value'];
+ $batch_no = "";
+ $invoice_time=$rs['created_time'];
+ $time_array = explode("T", $invoice_time);
+ $time_array = explode("+",$time_array[1]);
+ $invoice_time = $time_array[0];
+ $status = $rs['status'];
+
+ //$vehicle_number = $rs['custom_field_hash']['cf_vehicle_number'];
+ //$transport_mode =$rs['custom_field_hash']['cf_transport_mode'];
+ //$purchase_order_date = $rs['custom_field_hash']['cf_purchase_order_date'];
+ $driver = $rs['custom_field_hash']['cf_driver'];
+ $place_of_supply = $rs['custom_field_hash']['cf_place_of_supply'];
+
+
+ $cgst = $rs['taxes'][0]['tax_name'];
+ $sgst = $rs['taxes'][1]['tax_name'];
+ $cgst = $cgst[4];
+ $sgst = $sgst[4];
+ $cgst = $cgst.'.000';
+ $getcgsttax = "SELECT * FROM ip_tax_rates WHERE tax_rate_percent='$cgst'";
+ $res_cgsttax = $con->query($getcgsttax);
+ $rw_cgsttax = $res_cgsttax->fetch_assoc();
+ $cgsttaxid = $rw_cgsttax['tax_rate_id'];
+
+ $sgst = $sgst.'.000';
+ $getsgsttax = "SELECT * FROM ip_tax_rates WHERE tax_rate_percent='$sgst'";
+ $res_sgsttax = $con->query($getsgsttax);
+ $rw_sgsttax = $res_sgsttax->fetch_assoc();
+ $sgsttaxid = $rw_sgsttax['tax_rate_id'];
+
+
+
+ $item_subtotal = $rs['line_items'][0]['item_total'];
+ $item_tax_total = $rs['tax_total'];
+ $item_total = $rs['total'];
+ $item_sgst_amt = $rs['taxes'][1]['tax_amount'];
+ $item_cgst_amt = $rs['taxes'][0]['tax_amount'];
+
+ $item_discount = 0.00;
+ $item_igst_amt = 0.00;
+
+
+ if($batch_no=="")
+ {
+
+ $batch_no = "";
+ }
+
+ $gst_sql = "SELECT * FROM ip_clients WHERE client_tax_code='$gst_no'";
+ $res_gst = $con->query($gst_sql);
+ // $r_gst[] = $res_gst->fetch_assoc()['client_id'];
+ $client_id = $res_gst->fetch_assoc()['client_id'];
+
+
+ $sku_sql = "SELECT * FROM ip_products WHERE sku='$sku'";
+ $res_sku = $con->query($sku_sql);
+ // $r_sku[] = $res_sku->fetch_assoc()['product_id'];
+ $product_id = $res_sku->fetch_assoc()['product_id'];
+
+ $sql_invoice_chk = "SELECT * FROM ip_invoices WHERE invoice_number='$invoice_number' AND invoice_date_created='$invoice_date'";
+ $res_invoice = $con->query($sql_invoice_chk);
+
+
+ if($res_invoice->num_rows<=0)
+ {
+
+
+ $characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
+ $charactersLength = strlen($characters);
+ $randomString = '';
+ for ($i = 0; $i < 16; $i++)
+ {
+ $randomString .= $characters[rand(0, $charactersLength - 1)];
+ }
+
+
+
+ $url_key = $randomString;
+
+ $sql_invoice_insert = "INSERT INTO ip_invoices(user_id,client_id,invoice_group_id,invoice_status_id,invoice_date_created,invoice_time_created,invoice_date_due,invoice_number,invoice_url_key,receivedstatus,credit_status)VALUES(1,'$client_id',6,2,'$invoice_date','$invoice_time','$due_date','$invoice_number','$url_key','ST066',0)";
+ $result_invoice_insert = $con->query($sql_invoice_insert);
+
+ $invoice_insert_id=$con->insert_id;
+
+ $sql_invoiceitem_insert = "INSERT INTO ip_invoice_items(invoice_id,item_product_id,item_date_added,item_name,item_description,item_quantity,item_price,item_order,item_product_unit,Sgst_item_tax_rate_id,Cgst_item_tax_rate_id)
+ VALUES('$invoice_insert_id','$product_id','$invoice_date','$item_name','$item_description','$item_quantity','$item_price','$item_order','$item_product_unit','$sgsttaxid','$cgsttaxid')";
+ $result_invoiceitem_insert = $con->query($sql_invoiceitem_insert);
+
+ $item_insert_id = $con->insert_id;
+
+
+ //tax amount -- ip_invoice_item_amounts - table
+
+
+ $sql_tax_amount_insert = "INSERT INTO ip_invoice_item_amounts(item_id,item_subtotal,item_tax_total,item_total,item_sgst_amt,item_cgst_amt,item_discount,item_igst_amt)VALUES('$item_insert_id','$item_subtotal','$item_tax_total','$item_total','$item_sgst_amt','$item_cgst_amt','$item_discount','$item_igst_amt')";
+ $result_tax_amount_insert = $con->query($sql_tax_amount_insert);
+
+
+
+
+
+
+ //custom fields insert
+ $sql_invoice_custom_insert = "INSERT INTO ip_invoice_custom(invoice_id,invoice_custom_fieldid,invoice_custom_fieldvalue)VALUES('$invoice_insert_id',62,'$batch_no')";
+ $result_invoice_custom_insert = $con->query($sql_invoice_custom_insert);
+
+ // $custom_vehicle = "INSERT INTO ip_invoice_custom(invoice_id,invoice_custom_fieldid,invoice_custom_fieldvalue)VALUES('$invoice_insert_id',8,'$vehicle_number')";
+ // $res_vehicle = $con->query($custom_vehicle);
+
+ // $custom_transport_mode = "INSERT INTO ip_invoice_custom(invoice_id,invoice_custom_fieldid,invoice_custom_fieldvalue)VALUES('$invoice_insert_id',7,'$transport_mode')";
+ // $res_transport_mode= $con->query($custom_transport_mode);
+
+ // $custom_purchase_order_date= "INSERT INTO ip_invoice_custom(invoice_id,invoice_custom_fieldid,invoice_custom_fieldvalue)VALUES('$invoice_insert_id',15,'$purchase_order_date')";
+ // $res_purchase_order_date = $con->query($custom_purchase_order_date);
+
+ $custom_driver = "INSERT INTO ip_invoice_custom(invoice_id,invoice_custom_fieldid,invoice_custom_fieldvalue)VALUES('$invoice_insert_id',58,'$driver')";
+ $res_driver = $con->query($custom_driver);
+
+ $custom_place = "INSERT INTO ip_invoice_custom(invoice_id,invoice_custom_fieldid,invoice_custom_fieldvalue)VALUES('$invoice_insert_id',10,'$place_of_supply')";
+ $res_place = $con->query($custom_place);
+ $insert_count = $insert_count + 1;
+ echo "success";
+
+ }
+ else// update invoice status, especially for cancelled invoices
+ {
+
+ if($status == "void")
+ {
+ $sql_invoice_update = "UPDATE ip_invoices SET invoice_status_id = 5 WHERE invoice_number='$invoice_number' AND invoice_date_created='$invoice_date'";
+ $sql_invoice_update = $con->query($sql_invoice_update);
+ echo "update-".$sql_invoice_update;
+ $update_count = $update_count + 1;
+ }
+ }
+
+
+ }
+ echo 'new invoice inserted count- '. $insert_count . '/'.'cancelled status updated count - ' . $update_count;
+
+
+ }
+
+ else{
+
+
+// print_r($res);
+
+ $invoice_id = $res->invoices[0]->invoice_id;
+
+ if($invoice_id!==""){
+
+ $url2 = 'https://books.zoho.com/api/v3/invoices/'.$invoice_id.'?organization_id='.$organization_id;
+
+ curl_setopt($ch, CURLOPT_URL, $url2);
+ curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
+ curl_setopt($ch, CURLOPT_HEADER, 0);
+
+ $body2 = '{}';
+ curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");
+ curl_setopt($ch, CURLOPT_POSTFIELDS,$body2);
+ curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
+
+ $result2=curl_exec($ch);
+
+ $res2 = json_decode($result2);
+
+ //print_r($res2->invoice);
+ }
+
+
+
+ }
+ curl_close($ch);
+
+
+
+ }
+ }
+ //end
+ // END zoho API
+
+
+
+
+}?>
\ No newline at end of file
diff --git a/application/core/index.html b/application/core/index.html
old mode 100755
new mode 100644
diff --git a/application/errors/error_404.php b/application/errors/error_404.php
old mode 100755
new mode 100644
diff --git a/application/errors/error_db.php b/application/errors/error_db.php
old mode 100755
new mode 100644
diff --git a/application/errors/error_general.php b/application/errors/error_general.php
old mode 100755
new mode 100644
diff --git a/application/errors/error_php.php b/application/errors/error_php.php
old mode 100755
new mode 100644
diff --git a/application/errors/index.html b/application/errors/index.html
old mode 100755
new mode 100644
diff --git a/application/helpers/cias_helper.php b/application/helpers/cias_helper.php
old mode 100755
new mode 100644
diff --git a/application/helpers/index.html b/application/helpers/index.html
old mode 100755
new mode 100644
diff --git a/application/hooks/index.html b/application/hooks/index.html
old mode 100755
new mode 100644
diff --git a/application/index.html b/application/index.html
old mode 100755
new mode 100644
diff --git a/application/language/english/index.html b/application/language/english/index.html
old mode 100755
new mode 100644
diff --git a/application/language/index.html b/application/language/index.html
old mode 100755
new mode 100644
diff --git a/application/libraries/BaseController.php b/application/libraries/BaseController.php
old mode 100755
new mode 100644
diff --git a/application/libraries/Excel.php b/application/libraries/Excel.php
old mode 100755
new mode 100644
diff --git a/application/libraries/Excel2.php b/application/libraries/Excel2.php
old mode 100755
new mode 100644
diff --git a/application/libraries/dompdf_gen.php b/application/libraries/dompdf_gen.php
old mode 100755
new mode 100644
diff --git a/application/libraries/index.html b/application/libraries/index.html
old mode 100755
new mode 100644
diff --git a/application/libraries/pdf.php b/application/libraries/pdf.php
old mode 100755
new mode 100644
diff --git a/application/logs/index.html b/application/logs/index.html
old mode 100755
new mode 100644
diff --git a/application/logs/log-2018-07-20.php b/application/logs/log-2018-07-20.php
deleted file mode 100644
index 99c9c16a..00000000
--- a/application/logs/log-2018-07-20.php
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-ERROR - 2018-07-20 10:42:48 --> Severity: Notice --> Undefined variable: pageTitle /opt/lampp/htdocs/ria/application/views/includes/header.php 4
-ERROR - 2018-07-20 10:42:48 --> Severity: Notice --> Undefined variable: creditdebit /opt/lampp/htdocs/ria/application/views/bankingfile.php 132
-ERROR - 2018-07-20 10:42:48 --> Severity: Notice --> Undefined variable: credit /opt/lampp/htdocs/ria/application/views/bankingfile.php 134
-ERROR - 2018-07-20 10:42:48 --> Severity: Notice --> Undefined variable: debit /opt/lampp/htdocs/ria/application/views/bankingfile.php 136
-ERROR - 2018-07-20 10:51:14 --> Query error: Table 'resicoin_RIADev.T_bankbalance' doesn't exist
-ERROR - 2018-07-20 11:11:31 --> Query error: Table 'resicoin_RIADev.T_bankbalance' doesn't exist
-ERROR - 2018-07-20 11:51:09 --> Query error: Table 'resicoin_RIADev.T_bankbalance' doesn't exist
-ERROR - 2018-07-20 12:04:53 --> Query error: Table 'resicoin_RIADev.T_bankreport' doesn't exist
-ERROR - 2018-07-20 12:05:28 --> Query error: Table 'resicoin_RIADev.T_Bankmappingpo' doesn't exist
-ERROR - 2018-07-20 12:20:25 --> Query error: Table 'resicoin_RIADev.T_bankbalance' doesn't exist
-ERROR - 2018-07-20 13:30:41 --> Query error: Table 'resicoin_RIADev.T_bankbalance' doesn't exist
-ERROR - 2018-07-20 13:53:50 --> Query error: Table 'resicoin_RIADev.T_bankbalance' doesn't exist
-ERROR - 2018-07-20 13:53:55 --> Query error: Table 'resicoin_RIADev.T_bankbalance' doesn't exist
-ERROR - 2018-07-20 14:04:39 --> Severity: Warning --> Missing argument 3 for cashbook_model::getIncomeExpense(), called in /opt/lampp/htdocs/ria/application/controllers/cashbook.php on line 102 and defined /opt/lampp/htdocs/ria/application/models/cashbook_model.php 76
-ERROR - 2018-07-20 14:04:39 --> Severity: Warning --> Missing argument 4 for cashbook_model::getIncomeExpense(), called in /opt/lampp/htdocs/ria/application/controllers/cashbook.php on line 102 and defined /opt/lampp/htdocs/ria/application/models/cashbook_model.php 76
-ERROR - 2018-07-20 14:04:39 --> Severity: Notice --> Undefined variable: frmdt /opt/lampp/htdocs/ria/application/models/cashbook_model.php 90
-ERROR - 2018-07-20 14:04:39 --> Query error: Unknown column 'cashtype' in 'field list'
-ERROR - 2018-07-20 14:05:01 --> Session: The session cookie was not signed.
-ERROR - 2018-07-20 14:06:04 --> Severity: Warning --> Missing argument 3 for cashbook_model::getIncomeExpense(), called in /opt/lampp/htdocs/ria/application/controllers/cashbook.php on line 102 and defined /opt/lampp/htdocs/ria/application/models/cashbook_model.php 76
-ERROR - 2018-07-20 14:06:04 --> Severity: Warning --> Missing argument 4 for cashbook_model::getIncomeExpense(), called in /opt/lampp/htdocs/ria/application/controllers/cashbook.php on line 102 and defined /opt/lampp/htdocs/ria/application/models/cashbook_model.php 76
-ERROR - 2018-07-20 14:06:04 --> Severity: Notice --> Undefined variable: frmdt /opt/lampp/htdocs/ria/application/models/cashbook_model.php 90
-ERROR - 2018-07-20 14:06:05 --> Query error: Unknown column 'cashtype' in 'field list'
-ERROR - 2018-07-20 14:19:06 --> Query error: Table 'resicoin_RIADev.T_bankbalance' doesn't exist
diff --git a/application/logs/log-2018-07-23.php b/application/logs/log-2018-07-23.php
deleted file mode 100644
index c01d78d6..00000000
--- a/application/logs/log-2018-07-23.php
+++ /dev/null
@@ -1,3366 +0,0 @@
-
-
-ERROR - 2018-07-23 06:34:23 --> Severity: Notice --> Undefined variable: user /opt/lampp/htdocs/ria/application/views/dashboard.php 627
-ERROR - 2018-07-23 06:35:56 --> Severity: Notice --> Undefined variable: creditdebit /opt/lampp/htdocs/ria/application/views/bankingfile.php 132
-ERROR - 2018-07-23 06:41:14 --> Severity: Notice --> Undefined variable: filename /opt/lampp/htdocs/ria/application/controllers/cashbook.php 235
-ERROR - 2018-07-23 06:41:14 --> The upload path does not appear to be valid.
-ERROR - 2018-07-23 06:41:15 --> Severity: Notice --> Undefined variable: IsActive /opt/lampp/htdocs/ria/application/controllers/cashbook.php 315
-ERROR - 2018-07-23 06:41:16 --> Query error: Unknown column 'IsActive' in 'field list'
-ERROR - 2018-07-23 06:46:17 --> Severity: Notice --> Undefined variable: creditdebit /opt/lampp/htdocs/ria/application/views/bankingfile.php 132
-ERROR - 2018-07-23 06:47:07 --> Severity: Notice --> Undefined variable: filename /opt/lampp/htdocs/ria/application/controllers/cashbook.php 235
-ERROR - 2018-07-23 06:47:07 --> The upload path does not appear to be valid.
-ERROR - 2018-07-23 06:47:59 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 06:47:59 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 06:47:59 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 06:47:59 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 06:47:59 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 06:47:59 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 06:47:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 85
-ERROR - 2018-07-23 06:47:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 85
-ERROR - 2018-07-23 06:47:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 86
-ERROR - 2018-07-23 06:47:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 86
-ERROR - 2018-07-23 06:47:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 06:47:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 06:47:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 137
-ERROR - 2018-07-23 06:47:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 137
-ERROR - 2018-07-23 06:47:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 138
-ERROR - 2018-07-23 06:47:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 138
-ERROR - 2018-07-23 06:47:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 06:47:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 06:52:15 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 06:52:15 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 06:52:15 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 06:52:15 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 06:52:16 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 06:52:16 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 06:52:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 85
-ERROR - 2018-07-23 06:52:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 85
-ERROR - 2018-07-23 06:52:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 86
-ERROR - 2018-07-23 06:52:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 86
-ERROR - 2018-07-23 06:52:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 06:52:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 06:52:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 137
-ERROR - 2018-07-23 06:52:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 137
-ERROR - 2018-07-23 06:52:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 138
-ERROR - 2018-07-23 06:52:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 138
-ERROR - 2018-07-23 06:52:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 06:52:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 06:53:53 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 06:53:53 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 06:53:53 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 06:53:53 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 06:53:53 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 06:53:53 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 06:53:53 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 06:53:53 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 06:53:53 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 06:53:53 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 06:53:53 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 06:53:53 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 06:53:53 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 06:53:53 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 06:53:53 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 06:53:53 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 06:53:53 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 06:53:53 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 06:54:40 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 06:54:40 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 06:54:40 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 06:54:40 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 06:54:40 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 06:54:40 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 06:54:40 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 06:54:40 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 06:54:40 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 06:54:40 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 06:54:40 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 06:54:40 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 06:54:40 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 06:54:40 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 06:54:40 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 06:54:40 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 06:54:40 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 06:54:40 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 06:55:30 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 06:55:30 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 06:55:30 --> Severity: Notice --> Undefined variable: cash /opt/lampp/htdocs/ria/application/views/bankinvoice.php 80
-ERROR - 2018-07-23 06:55:30 --> Severity: Notice --> Undefined variable: bankid /opt/lampp/htdocs/ria/application/views/bankinvoice.php 82
-ERROR - 2018-07-23 06:56:09 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 06:56:09 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 06:56:09 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 06:56:09 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 06:56:09 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 06:56:09 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 06:56:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 06:56:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 06:56:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 06:56:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 06:56:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 06:56:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 06:56:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 06:56:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 06:56:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 06:56:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 06:56:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 06:56:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 06:56:21 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 06:56:21 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 06:59:55 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 06:59:55 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 07:00:48 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 07:00:48 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 07:01:24 --> Query error: Unknown column 'igrli.BankStatus' in 'where clause'
-ERROR - 2018-07-23 07:55:50 --> Query error: Unknown column 'BR.IGRLineItemNo' in 'on clause'
-ERROR - 2018-07-23 08:03:38 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 08:03:38 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 08:10:39 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /opt/lampp/htdocs/ria/system/database/drivers/mysqli/mysqli_result.php 38
-ERROR - 2018-07-23 08:14:46 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 08:14:46 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 08:14:46 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 08:14:46 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 08:14:47 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 08:14:47 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 08:14:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 08:14:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 08:14:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 08:14:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 08:14:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 08:14:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 08:14:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 08:14:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 08:14:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 08:14:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 08:14:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 08:14:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 08:15:08 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 08:15:08 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 08:15:30 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 08:15:30 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 08:16:02 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 08:16:02 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 08:22:03 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 08:22:03 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 08:22:18 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 08:22:18 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 08:22:54 --> Query error: Table 'resicoin_RIADev.T_eOrder_LineItem' doesn't exist
-ERROR - 2018-07-23 08:35:30 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 08:35:30 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 08:35:50 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 08:35:50 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 08:38:06 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 08:38:06 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 08:38:17 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 08:38:17 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 08:38:17 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 08:38:17 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 08:38:40 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankposettlement.php 13
-ERROR - 2018-07-23 08:38:40 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankposettlement.php 13
-ERROR - 2018-07-23 08:39:39 --> Query error: Unknown column 'IsActive' in 'field list'
-ERROR - 2018-07-23 08:44:17 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 08:44:17 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 08:44:30 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 08:44:30 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 08:44:30 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 08:45:03 --> Query error: Unknown column 'IsActive' in 'field list'
-ERROR - 2018-07-23 08:48:41 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 08:48:41 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 08:49:04 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 08:49:04 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 08:49:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 08:49:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 08:49:25 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankposettlement.php 1
-ERROR - 2018-07-23 08:49:25 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankposettlement.php 1
-ERROR - 2018-07-23 08:49:49 --> Severity: Notice --> Undefined variable: balancetocleared /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1481
-ERROR - 2018-07-23 08:49:49 --> Severity: Notice --> Undefined variable: clearedblnce /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1490
-ERROR - 2018-07-23 08:49:49 --> Severity: Notice --> Undefined variable: balancetocleared /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1490
-ERROR - 2018-07-23 08:49:50 --> Severity: Notice --> Undefined variable: data /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1556
-ERROR - 2018-07-23 08:49:50 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 08:49:50 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 08:49:50 --> Severity: Notice --> Undefined variable: bankreport /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 08:49:50 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 08:49:50 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 08:49:50 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 08:49:50 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 08:49:50 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 08:49:50 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 08:49:50 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 08:49:50 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 08:49:50 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 08:49:50 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 08:49:50 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 08:49:50 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 08:49:50 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 08:49:50 --> Severity: Notice --> Undefined variable: finyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 08:49:50 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 08:49:50 --> Severity: Notice --> Undefined variable: Bankname /opt/lampp/htdocs/ria/application/views/bankstatement.php 237
-ERROR - 2018-07-23 08:49:51 --> Severity: Notice --> Undefined variable: data /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1556
-ERROR - 2018-07-23 08:49:51 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 08:49:51 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 08:49:51 --> Severity: Notice --> Undefined variable: bankreport /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 08:49:51 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 08:49:51 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 08:49:51 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 08:49:51 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 08:49:51 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 08:49:51 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 08:49:51 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 08:49:51 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 08:49:51 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 08:49:51 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 08:49:51 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 08:49:51 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 08:49:51 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 08:49:51 --> Severity: Notice --> Undefined variable: finyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 08:49:51 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 08:49:51 --> Severity: Notice --> Undefined variable: Bankname /opt/lampp/htdocs/ria/application/views/bankstatement.php 237
-ERROR - 2018-07-23 08:49:52 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 08:49:52 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 08:49:52 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 08:49:52 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 08:49:52 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 08:49:52 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 08:49:52 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 08:49:52 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 08:49:52 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 08:49:52 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 08:49:52 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 08:49:52 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 08:49:52 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 08:49:52 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 08:49:52 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 08:49:52 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 08:49:52 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 08:49:52 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 08:51:36 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/banksettlement.php 11
-ERROR - 2018-07-23 08:51:36 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/banksettlement.php 11
-ERROR - 2018-07-23 08:51:36 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 285
-ERROR - 2018-07-23 08:51:36 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 285
-ERROR - 2018-07-23 08:51:36 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 285
-ERROR - 2018-07-23 08:51:36 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 285
-ERROR - 2018-07-23 08:51:36 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 286
-ERROR - 2018-07-23 08:51:36 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 286
-ERROR - 2018-07-23 08:51:36 --> Severity: Notice --> Undefined variable: record /opt/lampp/htdocs/ria/application/views/banksettlement.php 337
-ERROR - 2018-07-23 08:51:36 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 337
-ERROR - 2018-07-23 08:51:36 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 285
-ERROR - 2018-07-23 08:51:36 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 285
-ERROR - 2018-07-23 08:51:36 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 285
-ERROR - 2018-07-23 08:51:36 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 285
-ERROR - 2018-07-23 08:51:36 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 286
-ERROR - 2018-07-23 08:51:36 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 286
-ERROR - 2018-07-23 08:51:36 --> Severity: Notice --> Undefined variable: record /opt/lampp/htdocs/ria/application/views/banksettlement.php 337
-ERROR - 2018-07-23 08:51:36 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 337
-ERROR - 2018-07-23 08:59:12 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankposettlement.php 1
-ERROR - 2018-07-23 08:59:12 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankposettlement.php 1
-ERROR - 2018-07-23 08:59:28 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankposettlement.php 1
-ERROR - 2018-07-23 08:59:28 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankposettlement.php 1
-ERROR - 2018-07-23 09:17:27 --> Query error: Column 'PONO' cannot be null
-ERROR - 2018-07-23 09:30:25 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /opt/lampp/htdocs/ria/system/database/drivers/mysqli/mysqli_result.php 38
-ERROR - 2018-07-23 09:34:34 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /opt/lampp/htdocs/ria/system/database/drivers/mysqli/mysqli_result.php 38
-ERROR - 2018-07-23 09:34:51 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /opt/lampp/htdocs/ria/system/database/drivers/mysqli/mysqli_result.php 38
-ERROR - 2018-07-23 09:35:44 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 09:35:44 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 09:35:44 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 09:35:44 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 09:35:45 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 09:35:45 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 09:35:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 09:35:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 09:35:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 09:35:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 09:35:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 09:35:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 09:35:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 09:35:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 09:35:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 09:35:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 09:35:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 09:35:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 09:35:45 --> Severity: Notice --> Undefined variable: Bankname /opt/lampp/htdocs/ria/application/views/bankstatement.php 237
-ERROR - 2018-07-23 09:36:10 --> Severity: Notice --> Undefined variable: creditdebit /opt/lampp/htdocs/ria/application/views/bankingfile.php 132
-ERROR - 2018-07-23 09:36:36 --> Severity: Notice --> Undefined variable: filename /opt/lampp/htdocs/ria/application/controllers/cashbook.php 235
-ERROR - 2018-07-23 09:36:36 --> The upload path does not appear to be valid.
-ERROR - 2018-07-23 09:37:09 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 09:37:09 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 09:37:09 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 09:37:09 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 09:37:09 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 09:37:09 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 09:37:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 09:37:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 09:37:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 09:37:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 09:37:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 09:37:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 09:37:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 09:37:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 09:37:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 09:37:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 09:37:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 09:37:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 09:40:38 --> Severity: Warning --> Missing argument 3 for cashbook_model::getIncomeExpense(), called in /opt/lampp/htdocs/ria/application/controllers/cashbook.php on line 102 and defined /opt/lampp/htdocs/ria/application/models/cashbook_model.php 76
-ERROR - 2018-07-23 09:40:38 --> Severity: Warning --> Missing argument 4 for cashbook_model::getIncomeExpense(), called in /opt/lampp/htdocs/ria/application/controllers/cashbook.php on line 102 and defined /opt/lampp/htdocs/ria/application/models/cashbook_model.php 76
-ERROR - 2018-07-23 09:40:38 --> Severity: Notice --> Undefined variable: frmdt /opt/lampp/htdocs/ria/application/models/cashbook_model.php 90
-ERROR - 2018-07-23 09:40:39 --> Severity: Notice --> Use of undefined constant php - assumed 'php' /opt/lampp/htdocs/ria/application/views/income_expense_list.php 1
-ERROR - 2018-07-23 09:40:50 --> Severity: Notice --> Undefined variable: getsupplier /opt/lampp/htdocs/ria/application/views/addnewIncomeExpense.php 414
-ERROR - 2018-07-23 09:42:45 --> Severity: Notice --> Undefined property: stdClass::$code /opt/lampp/htdocs/ria/application/views/viewIndIncomeExpense.php 15
-ERROR - 2018-07-23 09:42:56 --> Severity: Warning --> Missing argument 1 for cashbook::editcashbook() /opt/lampp/htdocs/ria/application/controllers/cashbook.php 954
-ERROR - 2018-07-23 09:42:56 --> Severity: Notice --> Undefined variable: sid /opt/lampp/htdocs/ria/application/controllers/cashbook.php 957
-ERROR - 2018-07-23 09:42:58 --> Severity: Notice --> Undefined offset: 2 /opt/lampp/htdocs/ria/application/views/editincomeexpenses.php 218
-ERROR - 2018-07-23 09:42:58 --> Severity: Notice --> Undefined offset: 2 /opt/lampp/htdocs/ria/application/views/editincomeexpenses.php 828
-ERROR - 2018-07-23 09:44:30 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 09:44:30 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 09:44:30 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 09:44:30 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 09:44:30 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 09:44:30 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 09:44:30 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 09:44:30 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 09:44:30 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 09:44:30 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 09:44:30 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 09:44:30 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 09:44:30 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 09:44:30 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 09:44:30 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 09:44:30 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 09:44:30 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 09:44:30 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 09:46:43 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 09:46:43 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 09:47:04 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 09:47:04 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 09:47:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 09:47:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 09:47:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 09:47:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 09:47:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 09:47:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 09:47:04 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 09:47:04 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 09:47:44 --> Severity: Notice --> Undefined variable: balancetocleared /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1481
-ERROR - 2018-07-23 09:47:44 --> Severity: Notice --> Undefined variable: clearedblnce /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1490
-ERROR - 2018-07-23 09:47:44 --> Severity: Notice --> Undefined variable: balancetocleared /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1490
-ERROR - 2018-07-23 09:47:44 --> Severity: Notice --> Undefined variable: balancetocleared /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1481
-ERROR - 2018-07-23 09:47:44 --> Severity: Notice --> Undefined variable: clearedblnce /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1490
-ERROR - 2018-07-23 09:47:44 --> Severity: Notice --> Undefined variable: balancetocleared /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1490
-ERROR - 2018-07-23 09:47:44 --> Severity: Notice --> Undefined variable: balancetocleared /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1481
-ERROR - 2018-07-23 09:47:44 --> Severity: Notice --> Undefined variable: clearedblnce /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1490
-ERROR - 2018-07-23 09:47:44 --> Severity: Notice --> Undefined variable: balancetocleared /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1490
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: data /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1556
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: data /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1556
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: data /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1556
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 09:47:45 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: bankreport /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 09:47:45 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: finyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 09:47:45 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: Bankname /opt/lampp/htdocs/ria/application/views/bankstatement.php 237
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 09:47:45 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: bankreport /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 09:47:45 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: bankreport /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 09:47:45 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 09:47:45 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: finyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 09:47:45 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: Bankname /opt/lampp/htdocs/ria/application/views/bankstatement.php 237
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: finyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 09:47:45 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: Bankname /opt/lampp/htdocs/ria/application/views/bankstatement.php 237
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: data /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1556
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 09:47:45 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: bankreport /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 09:47:45 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: finyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 09:47:45 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 09:47:45 --> Severity: Notice --> Undefined variable: Bankname /opt/lampp/htdocs/ria/application/views/bankstatement.php 237
-ERROR - 2018-07-23 09:47:47 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 09:47:47 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 09:47:47 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 09:47:47 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 09:47:47 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 09:47:47 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 09:47:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 09:47:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 09:47:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 09:47:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 09:47:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 09:47:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 09:47:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 09:47:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 09:47:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 09:47:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 09:47:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 09:47:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 09:48:03 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/banksettlement.php 11
-ERROR - 2018-07-23 09:48:03 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/banksettlement.php 11
-ERROR - 2018-07-23 09:48:03 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 285
-ERROR - 2018-07-23 09:48:03 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 285
-ERROR - 2018-07-23 09:48:03 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 285
-ERROR - 2018-07-23 09:48:03 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 285
-ERROR - 2018-07-23 09:48:03 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 286
-ERROR - 2018-07-23 09:48:03 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 286
-ERROR - 2018-07-23 09:48:03 --> Severity: Notice --> Undefined variable: record /opt/lampp/htdocs/ria/application/views/banksettlement.php 337
-ERROR - 2018-07-23 09:48:03 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 337
-ERROR - 2018-07-23 09:48:03 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 285
-ERROR - 2018-07-23 09:48:03 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 285
-ERROR - 2018-07-23 09:48:03 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 285
-ERROR - 2018-07-23 09:48:03 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 285
-ERROR - 2018-07-23 09:48:03 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 286
-ERROR - 2018-07-23 09:48:03 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 286
-ERROR - 2018-07-23 09:48:03 --> Severity: Notice --> Undefined variable: record /opt/lampp/htdocs/ria/application/views/banksettlement.php 337
-ERROR - 2018-07-23 09:48:03 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 337
-ERROR - 2018-07-23 09:48:03 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 285
-ERROR - 2018-07-23 09:48:03 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 285
-ERROR - 2018-07-23 09:48:03 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 285
-ERROR - 2018-07-23 09:48:03 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 285
-ERROR - 2018-07-23 09:48:03 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 286
-ERROR - 2018-07-23 09:48:03 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 286
-ERROR - 2018-07-23 09:48:03 --> Severity: Notice --> Undefined variable: record /opt/lampp/htdocs/ria/application/views/banksettlement.php 337
-ERROR - 2018-07-23 09:48:03 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 337
-ERROR - 2018-07-23 09:48:03 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 285
-ERROR - 2018-07-23 09:48:03 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 285
-ERROR - 2018-07-23 09:48:03 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 285
-ERROR - 2018-07-23 09:48:03 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 285
-ERROR - 2018-07-23 09:48:03 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 286
-ERROR - 2018-07-23 09:48:03 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 286
-ERROR - 2018-07-23 09:48:03 --> Severity: Notice --> Undefined variable: record /opt/lampp/htdocs/ria/application/views/banksettlement.php 337
-ERROR - 2018-07-23 09:48:03 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 337
-ERROR - 2018-07-23 09:51:23 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/banksettlement.php 4
-ERROR - 2018-07-23 09:51:23 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/banksettlement.php 4
-ERROR - 2018-07-23 09:51:23 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 277
-ERROR - 2018-07-23 09:51:23 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 277
-ERROR - 2018-07-23 09:51:23 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 277
-ERROR - 2018-07-23 09:51:23 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 277
-ERROR - 2018-07-23 09:51:23 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 09:51:23 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 09:51:23 --> Severity: Notice --> Undefined variable: record /opt/lampp/htdocs/ria/application/views/banksettlement.php 329
-ERROR - 2018-07-23 09:51:23 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 329
-ERROR - 2018-07-23 09:51:23 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 277
-ERROR - 2018-07-23 09:51:23 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 277
-ERROR - 2018-07-23 09:51:23 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 277
-ERROR - 2018-07-23 09:51:23 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 277
-ERROR - 2018-07-23 09:51:23 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 09:51:23 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 09:51:23 --> Severity: Notice --> Undefined variable: record /opt/lampp/htdocs/ria/application/views/banksettlement.php 329
-ERROR - 2018-07-23 09:51:23 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 329
-ERROR - 2018-07-23 09:51:23 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 277
-ERROR - 2018-07-23 09:51:23 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 277
-ERROR - 2018-07-23 09:51:23 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 277
-ERROR - 2018-07-23 09:51:23 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 277
-ERROR - 2018-07-23 09:51:23 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 09:51:23 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 09:51:23 --> Severity: Notice --> Undefined variable: record /opt/lampp/htdocs/ria/application/views/banksettlement.php 329
-ERROR - 2018-07-23 09:51:23 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 329
-ERROR - 2018-07-23 09:51:23 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 277
-ERROR - 2018-07-23 09:51:23 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 277
-ERROR - 2018-07-23 09:51:23 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 277
-ERROR - 2018-07-23 09:51:23 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 277
-ERROR - 2018-07-23 09:51:23 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 09:51:23 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 09:51:23 --> Severity: Notice --> Undefined variable: record /opt/lampp/htdocs/ria/application/views/banksettlement.php 329
-ERROR - 2018-07-23 09:51:23 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 329
-ERROR - 2018-07-23 09:53:27 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/banksettlement.php 4
-ERROR - 2018-07-23 09:53:27 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/banksettlement.php 4
-ERROR - 2018-07-23 09:53:27 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 09:53:27 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 09:53:27 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 09:53:27 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 09:53:27 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 09:53:27 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 09:53:27 --> Severity: Notice --> Undefined variable: record /opt/lampp/htdocs/ria/application/views/banksettlement.php 330
-ERROR - 2018-07-23 09:53:27 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 330
-ERROR - 2018-07-23 09:53:27 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 09:53:27 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 09:53:27 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 09:53:27 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 09:53:27 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 09:53:27 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 09:53:27 --> Severity: Notice --> Undefined variable: record /opt/lampp/htdocs/ria/application/views/banksettlement.php 330
-ERROR - 2018-07-23 09:53:27 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 330
-ERROR - 2018-07-23 09:53:27 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 09:53:27 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 09:53:27 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 09:53:27 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 09:53:27 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 09:53:27 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 09:53:27 --> Severity: Notice --> Undefined variable: record /opt/lampp/htdocs/ria/application/views/banksettlement.php 330
-ERROR - 2018-07-23 09:53:27 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 330
-ERROR - 2018-07-23 09:53:27 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 09:53:27 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 09:53:27 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 09:53:27 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 09:53:27 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 09:53:27 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 09:53:27 --> Severity: Notice --> Undefined variable: record /opt/lampp/htdocs/ria/application/views/banksettlement.php 330
-ERROR - 2018-07-23 09:53:27 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 330
-ERROR - 2018-07-23 09:53:43 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankposettlement.php 1
-ERROR - 2018-07-23 09:53:43 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankposettlement.php 1
-ERROR - 2018-07-23 09:54:56 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankposettlement.php 1
-ERROR - 2018-07-23 09:54:56 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankposettlement.php 1
-ERROR - 2018-07-23 09:55:19 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankposettlement.php 1
-ERROR - 2018-07-23 09:55:19 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankposettlement.php 1
-ERROR - 2018-07-23 09:55:57 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankposettlement.php 1
-ERROR - 2018-07-23 09:55:57 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankposettlement.php 1
-ERROR - 2018-07-23 10:01:18 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankposettlement.php 1
-ERROR - 2018-07-23 10:01:18 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankposettlement.php 1
-ERROR - 2018-07-23 10:01:48 --> Query error: Table 'resicoin_RIADev.T_Bankngpo' doesn't exist
-ERROR - 2018-07-23 10:07:01 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/banksettlement.php 4
-ERROR - 2018-07-23 10:07:01 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/banksettlement.php 4
-ERROR - 2018-07-23 10:07:01 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:07:01 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:07:01 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:07:01 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:07:01 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:07:01 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:07:01 --> Severity: Notice --> Undefined variable: record /opt/lampp/htdocs/ria/application/views/banksettlement.php 330
-ERROR - 2018-07-23 10:07:01 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 330
-ERROR - 2018-07-23 10:07:01 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:07:01 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:07:01 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:07:01 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:07:01 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:07:01 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:07:01 --> Severity: Notice --> Undefined variable: record /opt/lampp/htdocs/ria/application/views/banksettlement.php 330
-ERROR - 2018-07-23 10:07:01 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 330
-ERROR - 2018-07-23 10:07:01 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:07:01 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:07:01 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:07:01 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:07:01 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:07:01 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:07:01 --> Severity: Notice --> Undefined variable: record /opt/lampp/htdocs/ria/application/views/banksettlement.php 330
-ERROR - 2018-07-23 10:07:01 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 330
-ERROR - 2018-07-23 10:07:01 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:07:01 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:07:01 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:07:01 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:07:01 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:07:01 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:07:01 --> Severity: Notice --> Undefined variable: record /opt/lampp/htdocs/ria/application/views/banksettlement.php 330
-ERROR - 2018-07-23 10:07:01 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 330
-ERROR - 2018-07-23 10:07:18 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankposettlement.php 1
-ERROR - 2018-07-23 10:07:18 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankposettlement.php 1
-ERROR - 2018-07-23 10:16:38 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/banksettlement.php 4
-ERROR - 2018-07-23 10:16:38 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/banksettlement.php 4
-ERROR - 2018-07-23 10:16:38 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:16:38 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:16:38 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:16:38 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:16:38 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:16:38 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:16:38 --> Severity: Notice --> Undefined variable: record /opt/lampp/htdocs/ria/application/views/banksettlement.php 330
-ERROR - 2018-07-23 10:16:38 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 330
-ERROR - 2018-07-23 10:16:38 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:16:38 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:16:38 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:16:38 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:16:38 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:16:38 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:16:38 --> Severity: Notice --> Undefined variable: record /opt/lampp/htdocs/ria/application/views/banksettlement.php 330
-ERROR - 2018-07-23 10:16:38 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 330
-ERROR - 2018-07-23 10:16:38 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:16:38 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:16:38 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:16:38 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:16:38 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:16:38 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:16:38 --> Severity: Notice --> Undefined variable: record /opt/lampp/htdocs/ria/application/views/banksettlement.php 330
-ERROR - 2018-07-23 10:16:38 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 330
-ERROR - 2018-07-23 10:16:38 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:16:38 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:16:38 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:16:38 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:16:38 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:16:38 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:16:38 --> Severity: Notice --> Undefined variable: record /opt/lampp/htdocs/ria/application/views/banksettlement.php 330
-ERROR - 2018-07-23 10:16:38 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 330
-ERROR - 2018-07-23 10:16:47 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankposettlement.php 1
-ERROR - 2018-07-23 10:16:47 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankposettlement.php 1
-ERROR - 2018-07-23 10:20:12 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 10:20:12 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 10:20:12 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 10:20:12 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1310
-ERROR - 2018-07-23 10:20:12 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 10:20:12 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 10:20:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 10:20:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 10:20:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 10:20:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 10:20:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 10:20:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 10:20:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 10:20:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 10:20:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 10:20:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 10:20:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 10:20:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 10:20:24 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/banksettlement.php 4
-ERROR - 2018-07-23 10:20:24 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/banksettlement.php 4
-ERROR - 2018-07-23 10:20:24 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:20:24 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:20:24 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:20:24 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:20:24 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:20:24 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:20:24 --> Severity: Notice --> Undefined variable: record /opt/lampp/htdocs/ria/application/views/banksettlement.php 330
-ERROR - 2018-07-23 10:20:24 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 330
-ERROR - 2018-07-23 10:20:24 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:20:24 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:20:24 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:20:24 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:20:24 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:20:24 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:20:24 --> Severity: Notice --> Undefined variable: record /opt/lampp/htdocs/ria/application/views/banksettlement.php 330
-ERROR - 2018-07-23 10:20:24 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 330
-ERROR - 2018-07-23 10:20:24 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:20:24 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:20:24 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:20:24 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:20:24 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:20:24 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:20:24 --> Severity: Notice --> Undefined variable: record /opt/lampp/htdocs/ria/application/views/banksettlement.php 330
-ERROR - 2018-07-23 10:20:24 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 330
-ERROR - 2018-07-23 10:20:24 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:20:24 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:20:24 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:20:24 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:20:24 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:20:24 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:20:24 --> Severity: Notice --> Undefined variable: record /opt/lampp/htdocs/ria/application/views/banksettlement.php 330
-ERROR - 2018-07-23 10:20:24 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 330
-ERROR - 2018-07-23 10:20:35 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankposettlement.php 1
-ERROR - 2018-07-23 10:20:35 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankposettlement.php 1
-ERROR - 2018-07-23 10:22:51 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankposettlement.php 1
-ERROR - 2018-07-23 10:22:51 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankposettlement.php 1
-ERROR - 2018-07-23 10:25:06 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankposettlement.php 1
-ERROR - 2018-07-23 10:25:06 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankposettlement.php 1
-ERROR - 2018-07-23 10:26:27 --> Query error: Unknown column 'IsActive' in 'field list'
-ERROR - 2018-07-23 10:30:29 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/banksettlement.php 4
-ERROR - 2018-07-23 10:30:29 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/banksettlement.php 4
-ERROR - 2018-07-23 10:30:29 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:30:29 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:30:29 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:30:29 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:30:29 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:30:29 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:30:29 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:30:29 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:30:29 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:30:29 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:30:29 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:30:29 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:30:29 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:30:29 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:30:29 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:30:29 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:30:29 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:30:29 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:30:29 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:30:29 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:30:29 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:30:29 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:30:29 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:30:29 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:31:33 --> Query error: Unknown column 'IsActive' in 'field list'
-ERROR - 2018-07-23 10:33:53 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/banksettlement.php 4
-ERROR - 2018-07-23 10:33:53 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/banksettlement.php 4
-ERROR - 2018-07-23 10:33:53 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:33:53 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:33:53 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:33:53 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:33:53 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:33:53 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:33:53 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:33:53 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:33:53 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:33:53 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:33:53 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:33:53 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:33:53 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:33:53 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:33:53 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:33:53 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:33:53 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:33:53 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:33:53 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:33:53 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:33:53 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:33:53 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:33:53 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:33:53 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:34:03 --> Query error: Unknown column 'IsActive' in 'field list'
-ERROR - 2018-07-23 10:38:39 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/banksettlement.php 4
-ERROR - 2018-07-23 10:38:39 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/banksettlement.php 4
-ERROR - 2018-07-23 10:38:39 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:38:39 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:38:39 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:38:39 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:38:39 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:38:39 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:38:39 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:38:39 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:38:39 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:38:39 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:38:39 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:38:39 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:38:39 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:38:39 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:38:39 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:38:39 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:38:39 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:38:39 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:38:39 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:38:39 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:38:39 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:38:39 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:38:39 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:38:39 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:40:28 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/banksettlement.php 4
-ERROR - 2018-07-23 10:40:28 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/banksettlement.php 4
-ERROR - 2018-07-23 10:40:28 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:40:28 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:40:28 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:40:28 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:40:28 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:40:28 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:40:28 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:40:28 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:40:28 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:40:28 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:40:28 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:40:28 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:40:28 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:40:28 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:40:28 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:40:28 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:40:28 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:40:28 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:40:28 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:40:28 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:40:28 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:40:28 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:40:28 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:40:28 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:41:00 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 10:41:00 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 10:41:00 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 10:41:00 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 10:41:00 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 10:41:00 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 10:41:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 10:41:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 10:41:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 10:41:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 10:41:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 10:41:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 10:41:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 10:41:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 10:41:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 10:41:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 10:41:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 10:41:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 10:41:13 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/banksettlement.php 4
-ERROR - 2018-07-23 10:41:13 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/banksettlement.php 4
-ERROR - 2018-07-23 10:41:13 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:41:13 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:41:13 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:41:13 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:41:13 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:41:13 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:41:13 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:41:13 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:41:13 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:41:13 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:41:13 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:41:13 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:41:13 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:41:13 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:41:13 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:41:13 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:41:13 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:41:13 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:41:42 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 10:41:42 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 10:42:02 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 10:42:02 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 10:42:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 10:42:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 10:42:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 10:42:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 10:42:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 10:42:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 10:42:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 10:42:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 10:45:30 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 10:45:30 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 10:45:39 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 10:45:39 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 10:45:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 10:45:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 10:45:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 10:45:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 10:45:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 10:45:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 10:45:39 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 10:45:39 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 10:50:57 --> Severity: Notice --> Undefined variable: balancetocleared /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1481
-ERROR - 2018-07-23 10:50:57 --> Severity: Notice --> Undefined variable: clearedblnce /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1490
-ERROR - 2018-07-23 10:50:57 --> Severity: Notice --> Undefined variable: balancetocleared /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1490
-ERROR - 2018-07-23 10:50:58 --> Severity: Notice --> Undefined variable: data /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1556
-ERROR - 2018-07-23 10:50:58 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 10:50:58 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 10:50:58 --> Severity: Notice --> Undefined variable: bankreport /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 10:50:58 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 10:50:58 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 10:50:58 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 10:50:58 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 10:50:58 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 10:50:58 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 10:50:58 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 10:50:58 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 10:50:58 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 10:50:58 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 10:50:58 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 10:50:58 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 10:50:58 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 10:50:58 --> Severity: Notice --> Undefined variable: finyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 10:50:58 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 10:50:58 --> Severity: Notice --> Undefined variable: Bankname /opt/lampp/htdocs/ria/application/views/bankstatement.php 237
-ERROR - 2018-07-23 10:50:58 --> Severity: Notice --> Undefined variable: data /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1556
-ERROR - 2018-07-23 10:50:58 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 10:50:58 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 10:50:58 --> Severity: Notice --> Undefined variable: bankreport /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 10:50:58 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 10:50:58 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 10:50:58 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 10:50:58 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 10:50:58 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 10:50:58 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 10:50:58 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 10:50:58 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 10:50:58 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 10:50:58 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 10:50:58 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 10:50:58 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 10:50:58 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 10:50:58 --> Severity: Notice --> Undefined variable: finyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 10:50:58 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 10:50:58 --> Severity: Notice --> Undefined variable: Bankname /opt/lampp/htdocs/ria/application/views/bankstatement.php 237
-ERROR - 2018-07-23 10:51:00 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 10:51:00 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 10:51:00 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 10:51:00 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 10:51:00 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 10:51:00 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 10:51:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 10:51:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 10:51:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 10:51:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 10:51:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 10:51:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 10:51:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 10:51:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 10:51:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 10:51:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 10:51:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 10:51:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 10:51:13 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/banksettlement.php 4
-ERROR - 2018-07-23 10:51:13 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/banksettlement.php 4
-ERROR - 2018-07-23 10:51:13 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:51:13 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:51:13 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:51:13 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:51:13 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:51:13 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:51:13 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:51:13 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:51:13 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:51:13 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:51:13 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:51:13 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:51:13 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:51:13 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:51:13 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:51:13 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:51:13 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:51:13 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:51:13 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:51:13 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:51:13 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:51:13 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:51:13 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:51:13 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:51:13 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:51:13 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:51:13 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:51:13 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 10:51:13 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:51:13 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 10:58:27 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 10:58:27 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 10:58:27 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 10:58:27 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 10:58:28 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 10:58:28 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 10:58:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 10:58:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 10:58:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 10:58:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 10:58:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 10:58:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 10:58:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 10:58:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 10:58:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 10:58:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 10:58:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 10:58:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 10:58:50 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/banksettlement.php 4
-ERROR - 2018-07-23 10:58:50 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/banksettlement.php 4
-ERROR - 2018-07-23 10:58:50 --> Severity: Notice --> Undefined variable: bankid /opt/lampp/htdocs/ria/application/views/banksettlement.php 170
-ERROR - 2018-07-23 10:58:50 --> Severity: Notice --> Undefined variable: bankid /opt/lampp/htdocs/ria/application/views/banksettlement.php 182
-ERROR - 2018-07-23 10:59:50 --> Severity: Notice --> Undefined variable: creditdebit /opt/lampp/htdocs/ria/application/views/bankingfile.php 132
-ERROR - 2018-07-23 11:00:02 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 11:00:02 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 11:00:02 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 11:00:02 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 11:00:02 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 11:00:02 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 11:00:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 11:00:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 11:00:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 11:00:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 11:00:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 11:00:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 11:00:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 11:00:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 11:00:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 11:00:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 11:00:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 11:00:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 11:00:02 --> Severity: Notice --> Undefined variable: Bankname /opt/lampp/htdocs/ria/application/views/bankstatement.php 237
-ERROR - 2018-07-23 11:00:20 --> Severity: Notice --> Undefined variable: filename /opt/lampp/htdocs/ria/application/controllers/cashbook.php 235
-ERROR - 2018-07-23 11:00:20 --> The upload path does not appear to be valid.
-ERROR - 2018-07-23 11:00:48 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 11:00:48 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 11:00:48 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 11:00:48 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 11:00:48 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 11:00:48 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 11:00:48 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 11:00:48 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 11:00:48 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 11:00:48 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 11:00:48 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 11:00:48 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 11:00:48 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 11:00:48 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 11:00:48 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 11:00:48 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 11:00:48 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 11:00:48 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 11:01:16 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 11:01:16 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 11:01:26 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 11:01:26 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 11:01:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 11:01:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 11:01:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 11:01:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 11:01:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 11:01:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 11:01:26 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 11:01:26 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 11:03:48 --> Severity: Notice --> Undefined variable: balancetocleared /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1481
-ERROR - 2018-07-23 11:03:48 --> Severity: Notice --> Undefined variable: balancetocleared /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1481
-ERROR - 2018-07-23 11:03:48 --> Severity: Notice --> Undefined variable: clearedblnce /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1490
-ERROR - 2018-07-23 11:03:48 --> Severity: Notice --> Undefined variable: balancetocleared /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1490
-ERROR - 2018-07-23 11:03:48 --> Severity: Notice --> Undefined variable: clearedblnce /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1490
-ERROR - 2018-07-23 11:03:48 --> Severity: Notice --> Undefined variable: balancetocleared /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1490
-ERROR - 2018-07-23 11:03:48 --> Severity: Notice --> Undefined variable: balancetocleared /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1481
-ERROR - 2018-07-23 11:03:48 --> Severity: Notice --> Undefined variable: clearedblnce /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1490
-ERROR - 2018-07-23 11:03:48 --> Severity: Notice --> Undefined variable: balancetocleared /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1490
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: data /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1556
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: data /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1556
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: data /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1556
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 11:03:49 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: bankreport /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 11:03:49 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 11:03:49 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: bankreport /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 11:03:49 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 11:03:49 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: bankreport /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 11:03:49 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: finyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 11:03:49 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: Bankname /opt/lampp/htdocs/ria/application/views/bankstatement.php 237
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: finyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 11:03:49 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: Bankname /opt/lampp/htdocs/ria/application/views/bankstatement.php 237
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: finyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 11:03:49 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: Bankname /opt/lampp/htdocs/ria/application/views/bankstatement.php 237
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: data /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1556
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 11:03:49 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: bankreport /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 11:03:49 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: finyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 11:03:49 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 11:03:49 --> Severity: Notice --> Undefined variable: Bankname /opt/lampp/htdocs/ria/application/views/bankstatement.php 237
-ERROR - 2018-07-23 11:03:51 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 11:03:51 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 11:03:51 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 11:03:51 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 11:03:51 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 11:03:51 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 11:03:51 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 11:03:51 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 11:03:51 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 11:03:51 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 11:03:51 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 11:03:51 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 11:03:51 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 11:03:51 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 11:03:51 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 11:03:51 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 11:03:51 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 11:03:51 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 11:04:24 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/banksettlement.php 4
-ERROR - 2018-07-23 11:04:24 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/banksettlement.php 4
-ERROR - 2018-07-23 11:04:24 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:04:24 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:04:24 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:04:24 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:04:24 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:04:24 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:04:24 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:04:24 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:04:24 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:04:24 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:04:24 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:04:24 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:04:24 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:04:24 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:04:24 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:04:24 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:04:24 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:04:24 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:04:24 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:04:24 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:04:24 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:04:24 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:04:24 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:04:24 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:04:48 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 11:04:48 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 11:04:48 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 11:04:48 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 11:04:49 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 11:04:49 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 11:04:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 11:04:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 11:04:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 11:04:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 11:04:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 11:04:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 11:04:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 11:04:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 11:04:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 11:04:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 11:04:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 11:04:49 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 11:05:17 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/banksettlement.php 4
-ERROR - 2018-07-23 11:05:17 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/banksettlement.php 4
-ERROR - 2018-07-23 11:05:17 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:05:17 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:05:17 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:05:17 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:05:17 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:05:17 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:05:17 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:05:17 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:05:17 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:05:17 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:05:17 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:05:17 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:05:17 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:05:17 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:05:17 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:05:17 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:05:17 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:05:17 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:05:54 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 11:05:54 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 11:06:02 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 11:06:02 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 11:06:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 11:06:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 11:06:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 11:06:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 11:06:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 11:06:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 11:06:02 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 11:06:02 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 11:07:34 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 11:07:34 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 11:07:47 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 11:07:47 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 11:07:47 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 11:07:47 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 11:07:47 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 11:07:47 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 11:07:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 11:07:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 11:07:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 11:07:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 11:07:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 11:07:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 11:07:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 11:07:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 11:07:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 11:07:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 11:07:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 11:07:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 11:08:02 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 11:08:02 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 11:08:11 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 11:08:11 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 11:08:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 11:08:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 11:08:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 11:08:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 11:08:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 11:08:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 11:08:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 11:08:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 11:08:53 --> Severity: Notice --> Undefined variable: balancetocleared /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1481
-ERROR - 2018-07-23 11:08:53 --> Severity: Notice --> Undefined variable: balancetocleared /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1481
-ERROR - 2018-07-23 11:08:53 --> Severity: Notice --> Undefined variable: clearedblnce /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1490
-ERROR - 2018-07-23 11:08:53 --> Severity: Notice --> Undefined variable: clearedblnce /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1490
-ERROR - 2018-07-23 11:08:53 --> Severity: Notice --> Undefined variable: balancetocleared /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1481
-ERROR - 2018-07-23 11:08:53 --> Severity: Notice --> Undefined variable: balancetocleared /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1490
-ERROR - 2018-07-23 11:08:53 --> Severity: Notice --> Undefined variable: balancetocleared /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1490
-ERROR - 2018-07-23 11:08:53 --> Severity: Notice --> Undefined variable: clearedblnce /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1490
-ERROR - 2018-07-23 11:08:53 --> Severity: Notice --> Undefined variable: balancetocleared /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1490
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: data /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1556
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: data /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1556
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: data /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1556
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 11:08:54 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: bankreport /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 11:08:54 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: finyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 11:08:54 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: Bankname /opt/lampp/htdocs/ria/application/views/bankstatement.php 237
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 11:08:54 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 11:08:54 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: bankreport /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: bankreport /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 11:08:54 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 11:08:54 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: finyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 11:08:54 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: finyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: Bankname /opt/lampp/htdocs/ria/application/views/bankstatement.php 237
-ERROR - 2018-07-23 11:08:54 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: Bankname /opt/lampp/htdocs/ria/application/views/bankstatement.php 237
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: data /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1556
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 11:08:54 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: bankreport /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 11:08:54 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: finyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 11:08:54 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 11:08:54 --> Severity: Notice --> Undefined variable: Bankname /opt/lampp/htdocs/ria/application/views/bankstatement.php 237
-ERROR - 2018-07-23 11:08:56 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 11:08:56 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 11:08:56 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 11:08:56 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 11:08:56 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 11:08:56 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 11:08:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 11:08:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 11:08:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 11:08:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 11:08:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 11:08:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 11:08:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 11:08:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 11:08:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 11:08:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 11:08:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 11:08:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/banksettlement.php 4
-ERROR - 2018-07-23 11:09:50 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/banksettlement.php 4
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:09:50 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:11:32 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 11:11:32 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 11:11:41 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 11:11:41 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 11:11:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 11:11:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 11:11:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 11:11:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 11:11:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 11:11:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 11:11:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 11:11:41 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 11:12:08 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 11:12:08 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 11:12:18 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 11:12:18 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 11:12:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 11:12:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 11:12:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 11:12:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 11:12:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 11:12:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 11:12:18 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 11:12:18 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 11:42:55 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 11:42:55 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 11:42:55 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 11:42:55 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 11:42:56 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 11:42:56 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 11:42:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 11:42:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 11:42:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 11:42:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 11:42:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 11:42:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 11:42:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 11:42:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 11:42:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 11:42:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 11:42:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 11:42:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/banksettlement.php 4
-ERROR - 2018-07-23 11:43:19 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/banksettlement.php 4
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:43:19 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:44:06 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 11:44:06 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 11:44:33 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 11:44:33 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 11:44:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 11:44:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 11:44:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 11:44:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 11:44:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 11:44:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 11:44:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 11:44:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 11:56:57 --> Severity: Warning --> mysqli_connect(): php_network_getaddresses: getaddrinfo failed: Name or service not known /opt/lampp/htdocs/ria/system/database/drivers/mysqli/mysqli_driver.php 77
-ERROR - 2018-07-23 11:56:57 --> Severity: Warning --> mysqli_connect(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: Name or service not known /opt/lampp/htdocs/ria/system/database/drivers/mysqli/mysqli_driver.php 77
-ERROR - 2018-07-23 11:56:57 --> Unable to connect to the database
-ERROR - 2018-07-23 11:58:26 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 11:58:26 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 11:58:43 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 11:58:43 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 11:58:43 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 11:58:43 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 11:58:43 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 11:58:43 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 11:58:43 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 11:58:43 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 11:58:43 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 11:58:43 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 11:58:43 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 11:58:43 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 11:58:43 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 11:58:43 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 11:58:43 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 11:58:43 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 11:58:43 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 11:58:43 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/banksettlement.php 4
-ERROR - 2018-07-23 11:59:09 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/banksettlement.php 4
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Undefined variable: t /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 278
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Undefined variable: rel /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 11:59:09 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/banksettlement.php 279
-ERROR - 2018-07-23 12:01:28 --> Severity: Notice --> Undefined variable: creditdebit /opt/lampp/htdocs/ria/application/views/bankingfile.php 132
-ERROR - 2018-07-23 12:01:44 --> Severity: Notice --> Undefined variable: filename /opt/lampp/htdocs/ria/application/controllers/cashbook.php 235
-ERROR - 2018-07-23 12:01:44 --> The upload path does not appear to be valid.
-ERROR - 2018-07-23 12:02:12 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 12:02:12 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 12:02:12 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 12:02:12 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 12:02:12 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 12:02:12 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 12:02:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 12:02:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 12:02:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 12:02:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 12:02:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 12:02:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 12:02:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 12:02:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 12:02:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 12:02:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 12:02:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 12:02:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 12:02:41 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 12:02:41 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 12:02:41 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 12:02:41 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 12:02:41 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 12:02:41 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 12:02:41 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 12:02:41 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 12:02:41 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 12:02:41 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 12:02:41 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 12:02:41 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 12:02:41 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 12:02:41 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 12:03:31 --> Severity: Warning --> Missing argument 3 for cashbook_model::getIncomeExpense(), called in /opt/lampp/htdocs/ria/application/controllers/cashbook.php on line 102 and defined /opt/lampp/htdocs/ria/application/models/cashbook_model.php 76
-ERROR - 2018-07-23 12:03:31 --> Severity: Warning --> Missing argument 4 for cashbook_model::getIncomeExpense(), called in /opt/lampp/htdocs/ria/application/controllers/cashbook.php on line 102 and defined /opt/lampp/htdocs/ria/application/models/cashbook_model.php 76
-ERROR - 2018-07-23 12:03:31 --> Severity: Notice --> Undefined variable: frmdt /opt/lampp/htdocs/ria/application/models/cashbook_model.php 90
-ERROR - 2018-07-23 12:03:31 --> Severity: Notice --> Use of undefined constant php - assumed 'php' /opt/lampp/htdocs/ria/application/views/income_expense_list.php 1
-ERROR - 2018-07-23 12:03:44 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 12:03:44 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 12:03:44 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 12:03:44 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 12:03:44 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 12:03:44 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 12:03:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 12:03:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 12:03:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 12:03:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 12:03:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 12:03:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 12:03:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 12:03:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 12:03:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 12:03:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 12:03:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 12:03:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 12:03:57 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 12:03:57 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 12:04:06 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 12:04:06 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 12:04:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 12:04:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 12:04:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 12:04:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 12:04:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 12:04:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 12:04:06 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 12:04:06 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 12:05:12 --> Severity: Notice --> Undefined variable: balancetocleared /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1481
-ERROR - 2018-07-23 12:05:12 --> Severity: Notice --> Undefined variable: balancetocleared /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1481
-ERROR - 2018-07-23 12:05:12 --> Severity: Notice --> Undefined variable: balancetocleared /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1481
-ERROR - 2018-07-23 12:05:12 --> Severity: Notice --> Undefined variable: clearedblnce /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1490
-ERROR - 2018-07-23 12:05:12 --> Severity: Notice --> Undefined variable: clearedblnce /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1490
-ERROR - 2018-07-23 12:05:12 --> Severity: Notice --> Undefined variable: clearedblnce /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1490
-ERROR - 2018-07-23 12:05:12 --> Severity: Notice --> Undefined variable: balancetocleared /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1490
-ERROR - 2018-07-23 12:05:12 --> Severity: Notice --> Undefined variable: balancetocleared /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1490
-ERROR - 2018-07-23 12:05:12 --> Severity: Notice --> Undefined variable: balancetocleared /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1490
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: data /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1556
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: data /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1556
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: data /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1556
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 12:05:13 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: bankreport /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 12:05:13 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: finyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 12:05:13 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: Bankname /opt/lampp/htdocs/ria/application/views/bankstatement.php 237
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 12:05:13 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: bankreport /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 12:05:13 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 12:05:13 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: bankreport /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 12:05:13 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: finyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 12:05:13 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: Bankname /opt/lampp/htdocs/ria/application/views/bankstatement.php 237
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: finyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 12:05:13 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: Bankname /opt/lampp/htdocs/ria/application/views/bankstatement.php 237
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: data /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1556
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 12:05:13 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: bankreport /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 12:05:13 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: finyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 12:05:13 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 12:05:13 --> Severity: Notice --> Undefined variable: Bankname /opt/lampp/htdocs/ria/application/views/bankstatement.php 237
-ERROR - 2018-07-23 12:05:15 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 12:05:15 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 12:05:15 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 12:05:15 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 12:05:15 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 12:05:15 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 12:05:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 12:05:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 12:05:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 12:05:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 12:05:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 12:05:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 12:05:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 12:05:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 12:05:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 12:05:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 12:05:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 12:05:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 12:05:33 --> Severity: Notice --> Undefined variable: cb /opt/lampp/htdocs/ria/application/views/bankcashnew.php 370
-ERROR - 2018-07-23 12:05:33 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/bankcashnew.php 370
-ERROR - 2018-07-23 12:08:33 --> Severity: Warning --> mysqli_connect(): MySQL server has gone away /opt/lampp/htdocs/ria/system/database/drivers/mysqli/mysqli_driver.php 77
-ERROR - 2018-07-23 12:08:33 --> Severity: Warning --> mysqli_connect(): Error while reading greeting packet. PID=16911 /opt/lampp/htdocs/ria/system/database/drivers/mysqli/mysqli_driver.php 77
-ERROR - 2018-07-23 12:08:33 --> Severity: Warning --> mysqli_connect(): (HY000/2006): MySQL server has gone away /opt/lampp/htdocs/ria/system/database/drivers/mysqli/mysqli_driver.php 77
-ERROR - 2018-07-23 12:08:33 --> Unable to connect to the database
-ERROR - 2018-07-23 12:10:11 --> Severity: Notice --> Undefined variable: cb /opt/lampp/htdocs/ria/application/views/bankcashnew.php 370
-ERROR - 2018-07-23 12:10:11 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/bankcashnew.php 370
-ERROR - 2018-07-23 12:13:06 --> Severity: Notice --> Undefined variable: cb /opt/lampp/htdocs/ria/application/views/bankcashnew.php 370
-ERROR - 2018-07-23 12:13:06 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/bankcashnew.php 370
-ERROR - 2018-07-23 12:34:10 --> Severity: Notice --> Undefined variable: cb /opt/lampp/htdocs/ria/application/views/bankcashnew.php 370
-ERROR - 2018-07-23 12:34:10 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/bankcashnew.php 370
-ERROR - 2018-07-23 12:36:02 --> Severity: Notice --> Undefined variable: cb /opt/lampp/htdocs/ria/application/views/bankcashnew.php 370
-ERROR - 2018-07-23 12:36:02 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/bankcashnew.php 370
-ERROR - 2018-07-23 13:09:24 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:09:24 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:09:24 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:09:24 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:09:24 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:09:24 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:09:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:09:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:09:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:09:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:09:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:09:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:09:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:09:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:09:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:09:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:09:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:09:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:10:05 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:10:05 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:10:05 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:10:05 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:10:05 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:10:05 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:10:05 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:10:05 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:10:05 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:10:05 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:10:05 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:10:05 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:10:05 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:10:05 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:10:05 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:10:05 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:10:05 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:10:05 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:15:17 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:15:17 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:15:17 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:15:17 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:15:18 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:15:18 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:15:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:15:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:15:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:15:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:15:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:15:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:15:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:15:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:15:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:15:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:15:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:15:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:15:31 --> Severity: Notice --> Undefined variable: type1 /opt/lampp/htdocs/ria/application/views/bankcashnew.php 328
-ERROR - 2018-07-23 13:16:00 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:16:00 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:16:00 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:16:00 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:16:01 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:16:01 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:16:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:16:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:16:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:16:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:16:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:16:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:16:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:16:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:16:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:16:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:16:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:16:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:16:24 --> Severity: Notice --> Undefined variable: type1 /opt/lampp/htdocs/ria/application/views/bankcashnew.php 328
-ERROR - 2018-07-23 13:22:43 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:22:44 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:22:44 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:22:44 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:22:44 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:22:44 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:22:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:22:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:22:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:22:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:22:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:22:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:22:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:22:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:22:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:22:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:22:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:22:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:28:45 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:28:45 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:28:45 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:28:45 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:28:45 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:28:45 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:28:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:28:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:28:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:28:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:28:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:28:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:28:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:28:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:28:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:28:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:28:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:28:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:29:08 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:29:08 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:29:08 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:29:08 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:29:08 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:29:08 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:29:08 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:29:08 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:29:08 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:29:08 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:29:08 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:29:08 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:29:08 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:29:08 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:29:08 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:29:08 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:29:08 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:29:08 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:29:23 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:29:23 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:29:23 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:29:23 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:29:24 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:29:24 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:29:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:29:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:29:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:29:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:29:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:29:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:29:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:29:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:29:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:29:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:29:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:29:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:29:36 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:29:36 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:29:36 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:29:36 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:29:37 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:29:37 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:29:37 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:29:37 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:29:37 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:29:37 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:29:37 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:29:37 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:29:37 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:29:37 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:29:37 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:29:37 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:29:37 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:29:37 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:31:26 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:31:26 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:31:26 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:31:26 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:31:27 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:31:27 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:31:27 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:31:27 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:31:27 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:31:27 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:31:27 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:31:27 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:31:27 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:31:27 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:31:27 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:31:27 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:31:27 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:31:27 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:33:33 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:33:33 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:33:33 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:33:33 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:33:33 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:33:33 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:33:33 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:33:33 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:33:33 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:33:33 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:33:33 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:33:33 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:33:33 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:33:33 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:33:33 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:33:33 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:33:33 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:33:33 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:34:02 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:34:02 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:34:02 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:34:02 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:34:02 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:34:02 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:34:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:34:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:34:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:34:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:34:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:34:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:34:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:34:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:34:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:34:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:34:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:34:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:35:02 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:35:02 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:35:02 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:35:02 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:35:03 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:35:03 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:35:03 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:35:03 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:35:03 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:35:03 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:35:03 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:35:03 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:35:03 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:35:03 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:35:03 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:35:03 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:35:03 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:35:03 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:39:14 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:39:14 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:39:14 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:39:14 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:39:14 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:39:14 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:39:14 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:39:14 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:39:14 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:39:14 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:39:14 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:39:14 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:39:14 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:39:14 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:39:14 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:39:14 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:39:14 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:39:14 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:40:35 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:40:35 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:40:35 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:40:35 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:40:36 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:40:36 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:40:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:40:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:40:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:40:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:40:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:40:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:40:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:40:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:40:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:40:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:40:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:40:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:40:37 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:40:37 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:40:37 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:40:37 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:40:38 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:40:38 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:40:38 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:40:38 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:40:38 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:40:38 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:40:38 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:40:38 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:40:38 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:40:38 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:40:38 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:40:38 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:40:38 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:40:38 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:41:34 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:41:34 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:41:34 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:41:34 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:41:35 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:41:35 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:41:35 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:41:35 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:41:35 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:41:35 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:41:35 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:41:35 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:41:35 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:41:35 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:41:35 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:41:35 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:41:35 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:41:35 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:41:51 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 13:41:51 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 13:42:09 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 13:42:09 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 13:42:28 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:42:28 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:42:28 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:42:28 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:42:28 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:42:28 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:42:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:42:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:42:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:42:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:42:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:42:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:42:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:42:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:42:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:42:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:42:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:42:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:46:32 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:46:32 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:46:32 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:46:32 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:46:33 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:46:33 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:46:33 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:46:33 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:46:33 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:46:33 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:46:33 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:46:33 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:46:33 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:46:33 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:46:33 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:46:33 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:46:33 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:46:33 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:46:59 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:46:59 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:46:59 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:46:59 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:47:00 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:47:00 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:47:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:47:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:47:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:47:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:47:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:47:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:47:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:47:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:47:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:47:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:47:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:47:00 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:51:31 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:51:31 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:51:31 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:51:31 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:51:32 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:51:32 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:51:32 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:51:32 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:51:32 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:51:32 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:51:32 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:51:32 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:51:32 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:51:32 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:51:32 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:51:32 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:51:32 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:51:32 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:52:11 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:52:11 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:52:11 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:52:11 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:52:11 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:52:11 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:52:11 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:52:11 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:52:11 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:52:11 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:52:11 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:52:11 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:52:11 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:52:11 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:52:11 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:52:11 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:52:11 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:52:11 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:52:23 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 13:52:23 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 13:52:55 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:52:55 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:52:55 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:52:55 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:52:56 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:52:56 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:52:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:52:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:52:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:52:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:52:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:52:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:52:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:52:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:52:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:52:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:52:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:52:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:53:15 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:53:15 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:53:15 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:53:15 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:53:16 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:53:16 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:53:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:53:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:53:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:53:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:53:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:53:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:53:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:53:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:53:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:53:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:53:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:53:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:53:31 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:53:31 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:53:31 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:53:31 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:53:31 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:53:31 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:53:31 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:53:31 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:53:31 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:53:31 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:53:31 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:53:31 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:53:31 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:53:31 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:53:31 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:53:31 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:53:31 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:53:31 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:53:43 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 13:53:43 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 13:53:43 --> Severity: Notice --> Undefined variable: cash /opt/lampp/htdocs/ria/application/views/bankinvoice.php 80
-ERROR - 2018-07-23 13:53:43 --> Severity: Notice --> Undefined variable: bankid /opt/lampp/htdocs/ria/application/views/bankinvoice.php 82
-ERROR - 2018-07-23 13:54:01 --> Severity: Notice --> Undefined variable: cashbook /opt/lampp/htdocs/ria/application/views/cashbooklisting.php 269
-ERROR - 2018-07-23 13:54:17 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:54:17 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:54:17 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:54:17 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:54:18 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:54:18 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:54:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:54:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:54:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:54:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:54:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:54:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:54:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:54:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:54:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:54:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:54:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:54:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:54:30 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 13:54:30 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 13:54:30 --> Severity: Notice --> Undefined variable: cash /opt/lampp/htdocs/ria/application/views/bankinvoice.php 80
-ERROR - 2018-07-23 13:54:30 --> Severity: Notice --> Undefined variable: bankid /opt/lampp/htdocs/ria/application/views/bankinvoice.php 82
-ERROR - 2018-07-23 13:54:43 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 13:54:43 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 13:54:43 --> Severity: Notice --> Undefined variable: cash /opt/lampp/htdocs/ria/application/views/bankinvoice.php 80
-ERROR - 2018-07-23 13:54:43 --> Severity: Notice --> Undefined variable: bankid /opt/lampp/htdocs/ria/application/views/bankinvoice.php 82
-ERROR - 2018-07-23 13:54:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankinvoice.php 176
-ERROR - 2018-07-23 13:54:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay /opt/lampp/htdocs/ria/application/views/bankinvoice.php 177
-ERROR - 2018-07-23 13:54:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankinvoice.php 176
-ERROR - 2018-07-23 13:54:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay /opt/lampp/htdocs/ria/application/views/bankinvoice.php 177
-ERROR - 2018-07-23 13:57:53 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 13:57:53 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 13:57:53 --> Severity: Notice --> Undefined variable: cash /opt/lampp/htdocs/ria/application/views/bankinvoice.php 80
-ERROR - 2018-07-23 13:57:53 --> Severity: Notice --> Undefined variable: bankid /opt/lampp/htdocs/ria/application/views/bankinvoice.php 82
-ERROR - 2018-07-23 13:58:24 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 13:58:24 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 13:58:24 --> Severity: Notice --> Undefined variable: cash /opt/lampp/htdocs/ria/application/views/bankinvoice.php 84
-ERROR - 2018-07-23 13:58:24 --> Severity: Notice --> Undefined variable: bankid /opt/lampp/htdocs/ria/application/views/bankinvoice.php 86
-ERROR - 2018-07-23 13:59:00 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 13:59:00 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 13:59:00 --> Severity: Notice --> Undefined variable: cash /opt/lampp/htdocs/ria/application/views/bankinvoice.php 84
-ERROR - 2018-07-23 13:59:00 --> Severity: Notice --> Undefined variable: bankid /opt/lampp/htdocs/ria/application/views/bankinvoice.php 86
-ERROR - 2018-07-23 13:59:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankinvoice.php 180
-ERROR - 2018-07-23 13:59:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay /opt/lampp/htdocs/ria/application/views/bankinvoice.php 181
-ERROR - 2018-07-23 13:59:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankinvoice.php 180
-ERROR - 2018-07-23 13:59:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay /opt/lampp/htdocs/ria/application/views/bankinvoice.php 181
-ERROR - 2018-07-23 13:59:39 --> Severity: Notice --> Undefined variable: balancetoreceived /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1608
-ERROR - 2018-07-23 13:59:39 --> Severity: Notice --> Undefined variable: clearedblnce /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1619
-ERROR - 2018-07-23 13:59:39 --> Severity: Notice --> Undefined variable: balancetoreceived /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1619
-ERROR - 2018-07-23 13:59:40 --> Query error: Unknown column 'IsActive' in 'field list'
-ERROR - 2018-07-23 13:59:42 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:59:42 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:59:42 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:59:42 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 13:59:43 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:59:43 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 13:59:43 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:59:43 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 13:59:43 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:59:43 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 13:59:43 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:59:43 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 13:59:43 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:59:43 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 13:59:43 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:59:43 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 13:59:43 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 13:59:43 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 14:00:13 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 14:00:13 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 14:00:13 --> Severity: Notice --> Undefined variable: cash /opt/lampp/htdocs/ria/application/views/bankinvoice.php 84
-ERROR - 2018-07-23 14:00:13 --> Severity: Notice --> Undefined variable: bankid /opt/lampp/htdocs/ria/application/views/bankinvoice.php 86
-ERROR - 2018-07-23 14:00:38 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 14:00:38 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 14:00:38 --> Severity: Notice --> Undefined variable: cash /opt/lampp/htdocs/ria/application/views/bankinvoice.php 84
-ERROR - 2018-07-23 14:00:38 --> Severity: Notice --> Undefined variable: bankid /opt/lampp/htdocs/ria/application/views/bankinvoice.php 86
-ERROR - 2018-07-23 14:00:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankinvoice.php 180
-ERROR - 2018-07-23 14:00:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay /opt/lampp/htdocs/ria/application/views/bankinvoice.php 181
-ERROR - 2018-07-23 14:00:38 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankinvoice.php 180
-ERROR - 2018-07-23 14:00:38 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay /opt/lampp/htdocs/ria/application/views/bankinvoice.php 181
-ERROR - 2018-07-23 14:01:23 --> Severity: Notice --> Undefined variable: balancetoreceived /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1608
-ERROR - 2018-07-23 14:01:23 --> Severity: Notice --> Undefined variable: clearedblnce /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1619
-ERROR - 2018-07-23 14:01:23 --> Severity: Notice --> Undefined variable: balancetoreceived /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1619
-ERROR - 2018-07-23 14:01:23 --> Query error: Unknown column 'IsActive' in 'field list'
-ERROR - 2018-07-23 14:01:26 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 14:01:26 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 14:01:26 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 14:01:26 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 14:01:26 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 14:01:26 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 14:01:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 14:01:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 14:01:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 14:01:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 14:01:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 14:01:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 14:01:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 14:01:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 14:01:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 14:01:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 14:01:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 14:01:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 14:03:44 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 14:03:44 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 14:03:44 --> Severity: Notice --> Undefined variable: cash /opt/lampp/htdocs/ria/application/views/bankinvoice.php 84
-ERROR - 2018-07-23 14:03:44 --> Severity: Notice --> Undefined variable: bankid /opt/lampp/htdocs/ria/application/views/bankinvoice.php 86
-ERROR - 2018-07-23 14:04:00 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 14:04:00 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 14:04:00 --> Severity: Notice --> Undefined variable: cash /opt/lampp/htdocs/ria/application/views/bankinvoice.php 84
-ERROR - 2018-07-23 14:04:00 --> Severity: Notice --> Undefined variable: bankid /opt/lampp/htdocs/ria/application/views/bankinvoice.php 86
-ERROR - 2018-07-23 14:04:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankinvoice.php 180
-ERROR - 2018-07-23 14:04:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay /opt/lampp/htdocs/ria/application/views/bankinvoice.php 181
-ERROR - 2018-07-23 14:04:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankinvoice.php 180
-ERROR - 2018-07-23 14:04:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay /opt/lampp/htdocs/ria/application/views/bankinvoice.php 181
-ERROR - 2018-07-23 14:04:59 --> Severity: Notice --> Undefined variable: balancetoreceived /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1608
-ERROR - 2018-07-23 14:04:59 --> Severity: Notice --> Undefined variable: clearedblnce /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1619
-ERROR - 2018-07-23 14:04:59 --> Severity: Notice --> Undefined variable: balancetoreceived /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1619
-ERROR - 2018-07-23 14:05:00 --> Query error: Unknown column 'IsActive' in 'field list'
-ERROR - 2018-07-23 14:05:02 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 14:05:02 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 14:05:02 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 14:05:02 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 14:05:02 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 14:05:02 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 14:05:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 14:05:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 14:05:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 14:05:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 14:05:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 14:05:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 14:05:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 14:05:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 14:05:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 14:05:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 14:05:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 14:05:02 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 14:05:19 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 14:05:19 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 14:05:19 --> Severity: Notice --> Undefined variable: cash /opt/lampp/htdocs/ria/application/views/bankinvoice.php 84
-ERROR - 2018-07-23 14:05:19 --> Severity: Notice --> Undefined variable: bankid /opt/lampp/htdocs/ria/application/views/bankinvoice.php 86
-ERROR - 2018-07-23 14:05:29 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 14:05:29 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 14:05:29 --> Severity: Notice --> Undefined variable: cash /opt/lampp/htdocs/ria/application/views/bankinvoice.php 84
-ERROR - 2018-07-23 14:05:29 --> Severity: Notice --> Undefined variable: bankid /opt/lampp/htdocs/ria/application/views/bankinvoice.php 86
-ERROR - 2018-07-23 14:05:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankinvoice.php 180
-ERROR - 2018-07-23 14:05:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay /opt/lampp/htdocs/ria/application/views/bankinvoice.php 181
-ERROR - 2018-07-23 14:05:29 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankinvoice.php 180
-ERROR - 2018-07-23 14:05:29 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay /opt/lampp/htdocs/ria/application/views/bankinvoice.php 181
-ERROR - 2018-07-23 14:09:36 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 14:09:36 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 14:09:36 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 14:09:36 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 14:09:36 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 14:09:36 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 14:09:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 14:09:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 14:09:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 14:09:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 14:09:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 14:09:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 14:09:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 14:09:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 14:09:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 14:09:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 14:09:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 14:09:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 14:53:11 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 14:53:11 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 14:53:11 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 14:53:11 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 14:53:12 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 14:53:12 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 14:53:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 14:53:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 14:53:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 14:53:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 14:53:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 14:53:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 14:53:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 14:53:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 14:53:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 14:53:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 14:53:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 14:53:12 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 14:53:41 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 14:53:41 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 14:53:41 --> Severity: Notice --> Undefined variable: cash /opt/lampp/htdocs/ria/application/views/bankinvoice.php 84
-ERROR - 2018-07-23 14:53:41 --> Severity: Notice --> Undefined variable: bankid /opt/lampp/htdocs/ria/application/views/bankinvoice.php 86
-ERROR - 2018-07-23 14:53:51 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 14:53:51 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 14:53:51 --> Severity: Notice --> Undefined variable: cash /opt/lampp/htdocs/ria/application/views/bankinvoice.php 84
-ERROR - 2018-07-23 14:53:51 --> Severity: Notice --> Undefined variable: bankid /opt/lampp/htdocs/ria/application/views/bankinvoice.php 86
-ERROR - 2018-07-23 14:53:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankinvoice.php 180
-ERROR - 2018-07-23 14:53:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay /opt/lampp/htdocs/ria/application/views/bankinvoice.php 181
-ERROR - 2018-07-23 14:53:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankinvoice.php 180
-ERROR - 2018-07-23 14:53:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay /opt/lampp/htdocs/ria/application/views/bankinvoice.php 181
-ERROR - 2018-07-23 14:54:21 --> Query error: Unknown column 'IsActive' in 'field list'
-ERROR - 2018-07-23 14:56:22 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 14:56:22 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 14:56:22 --> Severity: Notice --> Undefined variable: cash /opt/lampp/htdocs/ria/application/views/bankinvoice.php 84
-ERROR - 2018-07-23 14:56:22 --> Severity: Notice --> Undefined variable: bankid /opt/lampp/htdocs/ria/application/views/bankinvoice.php 86
-ERROR - 2018-07-23 14:56:43 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 14:56:43 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 14:56:43 --> Severity: Notice --> Undefined variable: cash /opt/lampp/htdocs/ria/application/views/bankinvoice.php 84
-ERROR - 2018-07-23 14:56:43 --> Severity: Notice --> Undefined variable: bankid /opt/lampp/htdocs/ria/application/views/bankinvoice.php 86
-ERROR - 2018-07-23 14:56:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankinvoice.php 180
-ERROR - 2018-07-23 14:56:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay /opt/lampp/htdocs/ria/application/views/bankinvoice.php 181
-ERROR - 2018-07-23 14:56:43 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankinvoice.php 180
-ERROR - 2018-07-23 14:56:43 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay /opt/lampp/htdocs/ria/application/views/bankinvoice.php 181
-ERROR - 2018-07-23 14:57:26 --> Query error: Unknown column 'IsActive' in 'field list'
-ERROR - 2018-07-23 14:59:30 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 14:59:30 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 14:59:30 --> Severity: Notice --> Undefined variable: cash /opt/lampp/htdocs/ria/application/views/bankinvoice.php 84
-ERROR - 2018-07-23 14:59:30 --> Severity: Notice --> Undefined variable: bankid /opt/lampp/htdocs/ria/application/views/bankinvoice.php 86
-ERROR - 2018-07-23 15:00:00 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 15:00:00 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 15:00:00 --> Severity: Notice --> Undefined variable: cash /opt/lampp/htdocs/ria/application/views/bankinvoice.php 84
-ERROR - 2018-07-23 15:00:00 --> Severity: Notice --> Undefined variable: bankid /opt/lampp/htdocs/ria/application/views/bankinvoice.php 86
-ERROR - 2018-07-23 15:00:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankinvoice.php 180
-ERROR - 2018-07-23 15:00:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay /opt/lampp/htdocs/ria/application/views/bankinvoice.php 181
-ERROR - 2018-07-23 15:00:00 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankinvoice.php 180
-ERROR - 2018-07-23 15:00:00 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay /opt/lampp/htdocs/ria/application/views/bankinvoice.php 181
-ERROR - 2018-07-23 15:00:35 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:00:35 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:00:35 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:00:35 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:00:35 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:00:35 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:00:35 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:00:35 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:00:35 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:00:35 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:00:35 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:00:35 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:00:35 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:00:35 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:00:35 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:00:35 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:00:35 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:00:35 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:01:23 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 15:01:23 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 15:01:23 --> Severity: Notice --> Undefined variable: cash /opt/lampp/htdocs/ria/application/views/bankinvoice.php 84
-ERROR - 2018-07-23 15:01:23 --> Severity: Notice --> Undefined variable: bankid /opt/lampp/htdocs/ria/application/views/bankinvoice.php 86
-ERROR - 2018-07-23 15:06:21 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 15:06:21 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 15:06:21 --> Severity: Notice --> Undefined variable: cash /opt/lampp/htdocs/ria/application/views/bankinvoice.php 84
-ERROR - 2018-07-23 15:06:21 --> Severity: Notice --> Undefined variable: bankid /opt/lampp/htdocs/ria/application/views/bankinvoice.php 86
-ERROR - 2018-07-23 15:06:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankinvoice.php 180
-ERROR - 2018-07-23 15:06:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay /opt/lampp/htdocs/ria/application/views/bankinvoice.php 181
-ERROR - 2018-07-23 15:06:21 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankinvoice.php 180
-ERROR - 2018-07-23 15:06:21 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay /opt/lampp/htdocs/ria/application/views/bankinvoice.php 181
-ERROR - 2018-07-23 15:11:35 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:11:35 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:11:35 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:11:35 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:11:36 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:11:36 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:11:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:11:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:11:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:11:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:11:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:11:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:11:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:11:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:11:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:11:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:11:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:11:36 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:16:30 --> Severity: Notice --> Undefined variable: creditdebit /opt/lampp/htdocs/ria/application/views/bankingfile.php 132
-ERROR - 2018-07-23 15:16:58 --> Severity: Notice --> Undefined variable: filename /opt/lampp/htdocs/ria/application/controllers/cashbook.php 235
-ERROR - 2018-07-23 15:16:58 --> The upload path does not appear to be valid.
-ERROR - 2018-07-23 15:18:57 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:18:57 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:18:57 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:18:57 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:18:57 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:18:57 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:18:57 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:18:57 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:18:57 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:18:57 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:18:57 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:18:57 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:18:57 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:18:57 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:18:57 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:18:57 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:18:57 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:18:57 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:19:16 --> Severity: Notice --> Undefined variable: creditdebit /opt/lampp/htdocs/ria/application/views/bankingfile.php 132
-ERROR - 2018-07-23 15:19:46 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:19:46 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:19:46 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:19:46 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:19:47 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:19:47 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:19:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:19:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:19:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:19:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:19:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:19:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:19:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:19:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:19:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:19:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:19:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:19:47 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:20:00 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 15:20:00 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 15:20:00 --> Severity: Notice --> Undefined variable: cash /opt/lampp/htdocs/ria/application/views/bankinvoice.php 84
-ERROR - 2018-07-23 15:20:00 --> Severity: Notice --> Undefined variable: bankid /opt/lampp/htdocs/ria/application/views/bankinvoice.php 86
-ERROR - 2018-07-23 15:20:41 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 15:20:41 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 15:20:41 --> Severity: Notice --> Undefined variable: cash /opt/lampp/htdocs/ria/application/views/bankinvoice.php 84
-ERROR - 2018-07-23 15:20:41 --> Severity: Notice --> Undefined variable: bankid /opt/lampp/htdocs/ria/application/views/bankinvoice.php 86
-ERROR - 2018-07-23 15:20:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankinvoice.php 180
-ERROR - 2018-07-23 15:20:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay /opt/lampp/htdocs/ria/application/views/bankinvoice.php 181
-ERROR - 2018-07-23 15:20:41 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankinvoice.php 180
-ERROR - 2018-07-23 15:20:41 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay /opt/lampp/htdocs/ria/application/views/bankinvoice.php 181
-ERROR - 2018-07-23 15:21:24 --> Severity: Notice --> Undefined variable: balancetoreceived /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1608
-ERROR - 2018-07-23 15:21:24 --> Severity: Notice --> Undefined variable: clearedblnce /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1619
-ERROR - 2018-07-23 15:21:24 --> Severity: Notice --> Undefined variable: balancetoreceived /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1619
-ERROR - 2018-07-23 15:21:25 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:21:25 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:21:25 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:21:25 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:21:26 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:21:26 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:21:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:21:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:21:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:21:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:21:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:21:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:21:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:21:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:21:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:21:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:21:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:21:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:22:28 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 15:22:28 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 15:22:28 --> Severity: Notice --> Undefined variable: cash /opt/lampp/htdocs/ria/application/views/bankinvoice.php 84
-ERROR - 2018-07-23 15:22:28 --> Severity: Notice --> Undefined variable: bankid /opt/lampp/htdocs/ria/application/views/bankinvoice.php 86
-ERROR - 2018-07-23 15:22:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankinvoice.php 180
-ERROR - 2018-07-23 15:22:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay /opt/lampp/htdocs/ria/application/views/bankinvoice.php 181
-ERROR - 2018-07-23 15:22:28 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankinvoice.php 180
-ERROR - 2018-07-23 15:22:28 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay /opt/lampp/htdocs/ria/application/views/bankinvoice.php 181
-ERROR - 2018-07-23 15:23:01 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:23:01 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:23:01 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:23:01 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:23:01 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:23:01 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:23:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:23:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:23:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:23:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:23:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:23:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:23:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:23:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:23:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:23:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:23:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:23:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:35:26 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:35:26 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:35:26 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:35:26 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:35:26 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:35:26 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:35:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:35:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:35:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:35:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:35:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:35:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:35:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:35:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:35:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:35:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:35:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:35:26 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:35:26 --> Severity: Notice --> Undefined variable: Bankname /opt/lampp/htdocs/ria/application/views/bankstatement.php 237
-ERROR - 2018-07-23 15:35:42 --> Severity: Notice --> Undefined variable: creditdebit /opt/lampp/htdocs/ria/application/views/bankingfile.php 132
-ERROR - 2018-07-23 15:36:59 --> Severity: Notice --> Undefined variable: filename /opt/lampp/htdocs/ria/application/controllers/cashbook.php 235
-ERROR - 2018-07-23 15:36:59 --> The upload path does not appear to be valid.
-ERROR - 2018-07-23 15:37:28 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:37:28 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:37:28 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:37:28 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:37:28 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:37:28 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:37:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:37:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:37:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:37:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:37:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:37:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:37:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:37:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:37:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:37:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:37:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:37:28 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:37:43 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 15:37:43 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 15:37:43 --> Severity: Notice --> Undefined variable: cash /opt/lampp/htdocs/ria/application/views/bankinvoice.php 84
-ERROR - 2018-07-23 15:37:43 --> Severity: Notice --> Undefined variable: bankid /opt/lampp/htdocs/ria/application/views/bankinvoice.php 86
-ERROR - 2018-07-23 15:37:52 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 15:37:52 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 15:37:52 --> Severity: Notice --> Undefined variable: cash /opt/lampp/htdocs/ria/application/views/bankinvoice.php 84
-ERROR - 2018-07-23 15:37:52 --> Severity: Notice --> Undefined variable: bankid /opt/lampp/htdocs/ria/application/views/bankinvoice.php 86
-ERROR - 2018-07-23 15:37:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankinvoice.php 180
-ERROR - 2018-07-23 15:37:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay /opt/lampp/htdocs/ria/application/views/bankinvoice.php 181
-ERROR - 2018-07-23 15:37:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankinvoice.php 180
-ERROR - 2018-07-23 15:37:52 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay /opt/lampp/htdocs/ria/application/views/bankinvoice.php 181
-ERROR - 2018-07-23 15:38:37 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 15:38:37 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 15:38:37 --> Severity: Notice --> Undefined variable: cash /opt/lampp/htdocs/ria/application/views/bankinvoice.php 84
-ERROR - 2018-07-23 15:38:37 --> Severity: Notice --> Undefined variable: bankid /opt/lampp/htdocs/ria/application/views/bankinvoice.php 86
-ERROR - 2018-07-23 15:38:51 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 15:38:51 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 15:38:51 --> Severity: Notice --> Undefined variable: cash /opt/lampp/htdocs/ria/application/views/bankinvoice.php 84
-ERROR - 2018-07-23 15:38:51 --> Severity: Notice --> Undefined variable: bankid /opt/lampp/htdocs/ria/application/views/bankinvoice.php 86
-ERROR - 2018-07-23 15:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankinvoice.php 180
-ERROR - 2018-07-23 15:38:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay /opt/lampp/htdocs/ria/application/views/bankinvoice.php 181
-ERROR - 2018-07-23 15:38:51 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankinvoice.php 180
-ERROR - 2018-07-23 15:38:51 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay /opt/lampp/htdocs/ria/application/views/bankinvoice.php 181
-ERROR - 2018-07-23 15:39:38 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:39:38 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:39:38 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:39:38 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:39:39 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:39:39 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:39:39 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:39:39 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:39:39 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:39:39 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:39:39 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:39:39 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:39:39 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:39:39 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:39:39 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:39:39 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:39:39 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:39:39 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:39:53 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankinvoicesettlement.php 12
-ERROR - 2018-07-23 15:39:53 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankinvoicesettlement.php 12
-ERROR - 2018-07-23 15:39:53 --> Severity: Notice --> Undefined variable: record /opt/lampp/htdocs/ria/application/views/bankinvoicesettlement.php 183
-ERROR - 2018-07-23 15:39:53 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/bankinvoicesettlement.php 183
-ERROR - 2018-07-23 15:45:10 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankinvoicesettlement.php 7
-ERROR - 2018-07-23 15:45:10 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankinvoicesettlement.php 7
-ERROR - 2018-07-23 15:45:10 --> Severity: Notice --> Undefined variable: record /opt/lampp/htdocs/ria/application/views/bankinvoicesettlement.php 178
-ERROR - 2018-07-23 15:45:10 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/bankinvoicesettlement.php 178
-ERROR - 2018-07-23 15:45:43 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 15:45:43 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 15:45:52 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 15:45:52 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 15:45:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 15:45:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 15:45:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 15:45:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 15:45:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 15:45:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 15:45:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 15:45:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 15:46:13 --> Severity: Notice --> Undefined variable: balancetocleared /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1481
-ERROR - 2018-07-23 15:46:13 --> Severity: Notice --> Undefined variable: clearedblnce /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1490
-ERROR - 2018-07-23 15:46:13 --> Severity: Notice --> Undefined variable: balancetocleared /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1490
-ERROR - 2018-07-23 15:46:14 --> Severity: Notice --> Undefined variable: data /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1556
-ERROR - 2018-07-23 15:46:14 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:46:14 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:46:14 --> Severity: Notice --> Undefined variable: bankreport /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 15:46:14 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 15:46:14 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:46:14 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:46:14 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:46:14 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:46:14 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:46:14 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:46:14 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:46:14 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:46:14 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:46:14 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:46:14 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:46:14 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:46:14 --> Severity: Notice --> Undefined variable: finyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 15:46:14 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 15:46:14 --> Severity: Notice --> Undefined variable: Bankname /opt/lampp/htdocs/ria/application/views/bankstatement.php 237
-ERROR - 2018-07-23 15:46:15 --> Severity: Notice --> Undefined variable: data /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1556
-ERROR - 2018-07-23 15:46:15 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:46:15 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:46:15 --> Severity: Notice --> Undefined variable: bankreport /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 15:46:15 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 8
-ERROR - 2018-07-23 15:46:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:46:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:46:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:46:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:46:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:46:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:46:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:46:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:46:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:46:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:46:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:46:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:46:15 --> Severity: Notice --> Undefined variable: finyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 15:46:15 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 199
-ERROR - 2018-07-23 15:46:15 --> Severity: Notice --> Undefined variable: Bankname /opt/lampp/htdocs/ria/application/views/bankstatement.php 237
-ERROR - 2018-07-23 15:46:16 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:46:16 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:46:16 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:46:16 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:46:16 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:46:16 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:46:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:46:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:46:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:46:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:46:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:46:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:46:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:46:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:46:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:46:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:46:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:46:16 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:46:48 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:46:48 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:46:48 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:46:48 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:46:48 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:46:48 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:46:48 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:46:48 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:46:48 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:46:48 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:46:48 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:46:48 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:46:48 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:46:48 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:49:59 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:49:59 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:49:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:49:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:49:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:49:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:49:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:49:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:49:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:49:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:49:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:49:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:49:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:49:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:50:57 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 15:50:57 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 15:51:07 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 15:51:07 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 15:51:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 15:51:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 15:51:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 15:51:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 15:51:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 15:51:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 15:51:07 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 15:51:07 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 15:51:24 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:51:24 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:51:24 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:51:24 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:51:24 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:51:24 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:51:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:51:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:51:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:51:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:51:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:51:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:51:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:51:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:51:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:51:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:51:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:51:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:54:15 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:54:15 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:54:15 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:54:15 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:54:15 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:54:15 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:54:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:54:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:54:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:54:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:54:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:54:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:54:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:54:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:54:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:54:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:54:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:54:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:58:19 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:58:19 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:58:19 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:58:19 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:58:19 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:58:19 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:58:19 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:58:19 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:58:19 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:58:19 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:58:19 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:58:19 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:58:19 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:58:19 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:58:19 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:58:19 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:58:19 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:58:19 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:58:34 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:58:34 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:58:34 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:58:34 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 15:58:34 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:58:34 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 15:58:34 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:58:34 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 15:58:34 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:58:34 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 15:58:34 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:58:34 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 15:58:34 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:58:34 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 15:58:34 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:58:34 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 15:58:34 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 15:58:34 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:00:23 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:00:23 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:00:23 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:00:23 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:00:23 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:00:23 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:00:23 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:00:23 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:00:23 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:00:23 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:00:23 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:00:23 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:00:23 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:00:23 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:00:23 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:00:23 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:00:23 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:00:23 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:02:44 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:02:44 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:02:44 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:02:44 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:02:44 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:02:44 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:02:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:02:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:02:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:02:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:02:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:02:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:02:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:02:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:02:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:02:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:02:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:02:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:02:58 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 16:02:58 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 16:03:08 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 16:03:08 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 16:03:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 16:03:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 16:03:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 16:03:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 16:03:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 16:03:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 16:03:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus /opt/lampp/htdocs/ria/application/views/bankdebit.php 177
-ERROR - 2018-07-23 16:03:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity /opt/lampp/htdocs/ria/application/views/bankdebit.php 179
-ERROR - 2018-07-23 16:03:24 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:03:24 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:03:24 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:03:24 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:03:24 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:03:24 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:03:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:03:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:03:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:03:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:03:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:03:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:03:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:03:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:03:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:03:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:03:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:03:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:03:50 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:03:50 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:03:50 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:03:50 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:03:50 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:03:50 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:03:50 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:03:50 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:03:50 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:03:50 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:03:50 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:03:50 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:03:50 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:03:50 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:03:50 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:03:50 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:03:50 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:03:50 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:03:53 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:03:53 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:03:53 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:03:53 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:03:53 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:03:53 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:03:53 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:03:53 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:03:53 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:03:53 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:03:53 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:03:53 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:03:53 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:03:53 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:03:53 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:03:53 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:03:53 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:03:53 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:03:55 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:03:55 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:03:55 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:03:55 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:03:56 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:03:56 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:03:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:03:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:03:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:03:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:03:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:03:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:03:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:03:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:03:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:03:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:03:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:03:56 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:09:40 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 16:09:40 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 16:09:54 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 16:09:54 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankdebit.php 2
-ERROR - 2018-07-23 16:09:59 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 16:09:59 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 16:09:59 --> Severity: Notice --> Undefined variable: cash /opt/lampp/htdocs/ria/application/views/bankinvoice.php 84
-ERROR - 2018-07-23 16:09:59 --> Severity: Notice --> Undefined variable: bankid /opt/lampp/htdocs/ria/application/views/bankinvoice.php 86
-ERROR - 2018-07-23 16:10:18 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:10:18 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:10:18 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:10:18 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:10:18 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:10:18 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:10:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:10:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:10:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:10:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:10:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:10:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:10:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:10:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:10:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:10:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:10:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:10:18 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:10:23 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:10:23 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:10:23 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:10:23 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:10:24 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:10:24 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:10:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:10:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:10:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:10:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:10:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:10:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:10:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:10:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:10:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:10:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:10:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:10:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:10:32 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 16:10:32 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankinvoice.php 2
-ERROR - 2018-07-23 16:10:32 --> Severity: Notice --> Undefined variable: cash /opt/lampp/htdocs/ria/application/views/bankinvoice.php 84
-ERROR - 2018-07-23 16:10:32 --> Severity: Notice --> Undefined variable: bankid /opt/lampp/htdocs/ria/application/views/bankinvoice.php 86
-ERROR - 2018-07-23 16:11:59 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:11:59 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:11:59 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:11:59 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:11:59 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:11:59 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:11:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:11:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:11:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:11:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:11:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:11:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:11:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:11:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:11:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:11:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:11:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:11:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:12:07 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:12:07 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:12:07 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:12:07 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:12:08 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:12:08 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:12:08 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:12:08 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:12:08 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:12:08 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:12:08 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:12:08 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:12:08 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:12:08 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:12:08 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:12:08 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:12:08 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:12:08 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:13:27 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:13:27 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:13:27 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:13:27 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:13:27 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:13:27 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:13:27 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:13:27 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:13:27 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:13:27 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:13:27 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:13:27 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:13:27 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:13:27 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:13:27 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:13:27 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:13:27 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:13:27 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:13:32 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:13:32 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:13:32 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:13:32 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:13:32 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:13:32 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:13:32 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:13:32 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:13:32 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:13:32 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:13:32 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:13:32 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:13:32 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:13:32 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:13:32 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:13:32 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:13:32 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:13:32 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:18:30 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:18:30 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:18:30 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:18:30 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:18:30 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:18:30 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:18:30 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:18:30 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:18:30 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:18:30 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:18:30 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:18:30 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:18:30 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:18:30 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:18:30 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:18:30 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:18:30 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:18:30 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:19:02 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:19:02 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:19:02 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:19:02 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:19:03 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:19:03 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:19:03 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:19:03 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:19:03 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:19:03 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:19:03 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:19:03 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:19:03 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:19:03 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:19:03 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:19:03 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:19:03 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:19:03 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:19:04 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:19:04 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:19:04 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:19:04 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:19:04 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:19:04 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:19:04 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:19:04 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:19:04 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:19:04 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:19:04 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:19:04 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:19:04 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:19:04 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:19:04 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:19:04 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:19:04 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:19:04 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:20:24 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:20:24 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:20:24 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:20:24 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:20:24 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:20:24 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:20:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:20:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:20:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:20:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:20:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:20:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:20:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:20:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:20:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:20:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:20:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:20:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:21:01 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:21:01 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:21:01 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:21:01 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:21:01 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:21:01 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:21:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:21:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:21:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:21:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:21:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:21:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:21:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:21:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:21:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:21:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:21:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:21:01 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:21:39 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:21:39 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:21:39 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:21:39 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:21:39 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:21:39 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:21:39 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:21:39 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:21:39 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:21:39 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:21:39 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:21:39 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:21:39 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:21:39 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:21:39 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:21:39 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:21:39 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:21:39 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:24:20 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:24:20 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:24:20 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:24:20 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:24:20 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:24:20 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:24:20 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:24:20 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:24:20 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:24:20 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:24:20 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:24:20 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:24:20 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:24:20 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:24:20 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:24:20 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:24:20 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:24:20 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:25:09 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:25:09 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:25:09 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:25:09 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:25:09 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:25:09 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:25:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:25:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:25:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:25:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:25:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:25:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:25:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:25:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:25:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:25:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:25:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:25:09 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:25:59 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:25:59 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:25:59 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:25:59 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:25:59 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:25:59 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:25:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:25:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:25:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:25:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:25:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:25:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:25:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:25:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:25:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:25:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:25:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:25:59 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:26:45 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:26:45 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:26:45 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:26:45 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:26:45 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:26:45 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:26:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:26:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:26:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:26:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:26:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:26:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:26:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:26:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:26:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:26:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:26:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:26:45 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:29:19 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:29:19 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:29:19 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:29:19 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:29:20 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:29:20 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:29:20 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:29:20 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:29:20 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:29:20 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:29:20 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:29:20 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:29:20 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:29:20 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:29:20 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:29:20 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:29:20 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:29:20 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:30:24 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:30:24 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:30:24 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:30:24 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:30:24 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:30:24 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:30:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:30:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:30:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:30:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:30:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:30:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:30:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:30:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:30:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:30:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:30:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:30:24 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:31:15 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:31:15 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:31:15 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:31:15 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:31:15 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:31:15 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:31:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:31:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:31:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:31:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:31:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:31:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:31:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:31:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:31:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:31:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:31:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:31:15 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:33:44 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:33:44 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:33:44 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:33:44 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:33:44 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:33:44 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:33:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:33:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:33:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:33:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:33:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:33:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:33:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:33:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:33:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:33:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:33:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:33:44 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:34:17 --> Severity: Notice --> Undefined variable: fdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:34:17 --> Severity: Notice --> Undefined variable: tdate /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:34:17 --> Severity: Notice --> Undefined variable: fa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:34:17 --> Severity: Notice --> Undefined variable: aa /opt/lampp/htdocs/ria/application/controllers/cashbook.php 1309
-ERROR - 2018-07-23 16:34:17 --> Severity: Notice --> Undefined variable: financialyear /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:34:17 --> Severity: Warning --> Invalid argument supplied for foreach() /opt/lampp/htdocs/ria/application/views/bankstatement.php 2
-ERROR - 2018-07-23 16:34:17 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:34:17 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 87
-ERROR - 2018-07-23 16:34:17 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:34:17 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 88
-ERROR - 2018-07-23 16:34:17 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:34:17 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 89
-ERROR - 2018-07-23 16:34:17 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:34:17 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 139
-ERROR - 2018-07-23 16:34:17 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:34:17 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 140
-ERROR - 2018-07-23 16:34:17 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:34:17 --> Severity: Notice --> Undefined variable: i /opt/lampp/htdocs/ria/application/views/bankstatement.php 141
-ERROR - 2018-07-23 16:39:58 --> Severity: Notice --> Undefined variable: cb /opt/lampp/htdocs/ria/application/views/bankcashnew.php 370
-ERROR - 2018-07-23 16:39:59 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/ria/application/views/bankcashnew.php 370
diff --git a/application/logs/log-2018-11-27.php b/application/logs/log-2018-11-27.php
deleted file mode 100644
index 0c95449d..00000000
--- a/application/logs/log-2018-11-27.php
+++ /dev/null
@@ -1,1374 +0,0 @@
-
-
-ERROR - 2018-11-27 10:59:23 --> Severity: Notice --> Undefined variable: PayableAT C:\xampp\htdocs\ria\application\views\companyview.php 579
-ERROR - 2018-11-27 11:35:37 --> Severity: Notice --> Undefined variable: PayableAT C:\xampp\htdocs\ria\application\views\companyview.php 579
-ERROR - 2018-11-27 11:36:30 --> Severity: Notice --> Undefined variable: PayableAT C:\xampp\htdocs\ria\application\views\companyview.php 579
-ERROR - 2018-11-27 11:40:03 --> 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 - 2018-11-27 11:40:14 --> Severity: Notice --> Undefined property: stdClass::$FirstName C:\xampp\htdocs\ria\application\views\editRevenuepurchaseorder.php 122
-ERROR - 2018-11-27 11:40:14 --> Severity: Notice --> Undefined variable: update C:\xampp\htdocs\ria\application\views\editRevenuepurchaseorder.php 238
-ERROR - 2018-11-27 11:40:14 --> Severity: Notice --> Undefined property: stdClass::$BillNo C:\xampp\htdocs\ria\application\views\editRevenuepurchaseorder.php 4059
-ERROR - 2018-11-27 11:40:14 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\ria\application\views\editRevenuepurchaseorder.php 4060
-ERROR - 2018-11-27 11:40:14 --> Severity: Notice --> Undefined property: stdClass::$BillNo C:\xampp\htdocs\ria\application\views\editRevenuepurchaseorder.php 4231
-ERROR - 2018-11-27 11:40:33 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 11:40:33 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 11:40:34 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 11:40:34 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 11:40:35 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 11:40:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 11:40:35 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 11:40:35 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 11:40:35 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 11:40:36 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 11:40:36 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 11:40:36 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 11:40:36 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 11:40:36 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 11:40:36 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 11:40:36 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 11:40:36 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 11:40:41 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:41 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:41 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:41 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:41 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:41 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:41 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:41 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:41 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:41 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:41 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:41 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:41 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:41 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:41 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:41 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:41 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:41 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:41 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:41 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:41 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:41 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:42 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:42 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:42 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:42 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:42 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:42 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:42 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:42 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:42 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:42 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:42 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:42 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:42 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:42 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:42 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:42 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:40:43 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; TTFontFile has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\ttfontsuni.php 51
-ERROR - 2018-11-27 11:41:55 --> Severity: Notice --> Undefined variable: PayableAT C:\xampp\htdocs\ria\application\views\companyview.php 579
-ERROR - 2018-11-27 11:47:34 --> Severity: Notice --> Undefined variable: PayableAT C:\xampp\htdocs\ria\application\views\companyview.php 579
-ERROR - 2018-11-27 11:47:46 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 11:47:46 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 11:47:46 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 11:47:46 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 11:47:46 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 11:47:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 11:47:46 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 11:47:46 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 11:47:46 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 11:47:46 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 11:47:46 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 11:47:46 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 11:47:46 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 11:47:46 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 11:47:47 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 11:47:47 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 11:47:47 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 11:47:49 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:49 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:49 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:49 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:49 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:49 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:49 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:49 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:49 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:49 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:49 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:49 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:49 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:49 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:49 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:49 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:47:50 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; TTFontFile has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\ttfontsuni.php 51
-ERROR - 2018-11-27 11:49:12 --> 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 - 2018-11-27 11:49:19 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 11:49:19 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 11:49:19 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 11:49:19 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 11:49:19 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 11:49:19 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 11:49:19 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 11:49:19 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 11:49:19 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 11:49:19 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 11:49:19 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 11:49:19 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 11:49:19 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 11:49:19 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 11:49:19 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 11:49:19 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 11:49:19 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 11:49:22 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:22 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:22 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:22 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:22 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:22 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:22 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 11:49:24 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; TTFontFile has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\ttfontsuni.php 51
-ERROR - 2018-11-27 11:56:32 --> Severity: Notice --> Undefined variable: PayableAT C:\xampp\htdocs\ria\application\views\companyview.php 579
-ERROR - 2018-11-27 12:10:57 --> 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 - 2018-11-27 12:11:04 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 12:11:04 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 12:11:04 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 12:11:05 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 12:11:05 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 12:11:05 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 12:11:05 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 12:11:05 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 12:11:05 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 12:11:05 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 12:11:05 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 12:11:05 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 12:11:05 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 12:11:05 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 12:11:05 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 12:11:05 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 12:11:05 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 12:11:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:09 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:09 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:09 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:09 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:09 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:09 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:09 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:09 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:09 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:11:09 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; TTFontFile has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\ttfontsuni.php 51
-ERROR - 2018-11-27 12:12:46 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 12:12:46 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 12:12:46 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 12:12:46 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 12:12:46 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 12:12:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 12:12:46 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 12:12:46 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 12:12:46 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 12:12:46 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 12:12:46 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 12:12:46 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 12:12:46 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 12:12:47 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 12:12:47 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 12:12:47 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 12:12:47 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 12:12:47 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 12:12:47 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 12:12:47 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 12:12:47 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 12:12:47 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 12:12:47 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 12:12:47 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 12:12:47 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 12:12:47 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 12:12:47 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 12:12:47 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 12:12:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:50 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:51 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:51 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:51 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:51 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:51 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:51 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:51 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:51 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:51 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:51 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:51 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:51 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:51 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:51 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:51 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:51 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 12:12:51 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; TTFontFile has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\ttfontsuni.php 51
-ERROR - 2018-11-27 12:36:05 --> Severity: Notice --> Undefined variable: PayableAT C:\xampp\htdocs\ria\application\views\companyview.php 579
-ERROR - 2018-11-27 12:36:20 --> Severity: Notice --> Undefined variable: PayableAT C:\xampp\htdocs\ria\application\views\companyview.php 579
-ERROR - 2018-11-27 13:07:36 --> 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 - 2018-11-27 13:07:43 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:07:44 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:07:44 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:07:45 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:07:45 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:07:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:07:45 --> Severity: Notice --> Undefined variable: cur_date C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 179
-ERROR - 2018-11-27 13:07:46 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:07:46 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:07:46 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:07:46 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:07:46 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:07:46 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:07:47 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:07:47 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:07:47 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:07:47 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:07:47 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:07:51 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:51 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:51 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:51 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:51 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:51 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:51 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:51 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:51 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:51 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:51 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:51 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:51 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:51 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:51 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:51 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:51 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:52 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:52 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:52 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:52 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:52 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:52 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:52 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:52 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:52 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:52 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:52 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:52 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:52 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:52 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:52 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:52 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:52 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:52 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:52 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:52 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:52 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:07:53 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; TTFontFile has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\ttfontsuni.php 51
-ERROR - 2018-11-27 13:08:03 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:08:03 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:08:03 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:08:03 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:08:03 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:08:03 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:08:03 --> Severity: Notice --> Undefined variable: cur_date C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 179
-ERROR - 2018-11-27 13:08:03 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:08:03 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:08:03 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:08:03 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:08:03 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:08:03 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:08:04 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:08:04 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:08:04 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:08:04 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:08:04 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:08:06 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:06 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:06 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:06 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:06 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:06 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:06 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:06 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:06 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:06 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:06 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:06 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:06 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:06 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:06 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:06 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:06 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:06 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:06 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:06 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:06 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:06 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:06 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:06 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:06 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:06 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:06 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:07 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:07 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:07 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:07 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:07 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:07 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:07 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:07 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:07 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:07 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:07 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:07 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; TTFontFile has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\ttfontsuni.php 51
-ERROR - 2018-11-27 13:08:53 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:08:54 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:08:54 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:08:54 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:08:54 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:08:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:08:54 --> Severity: Notice --> Undefined variable: cur_date C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 179
-ERROR - 2018-11-27 13:08:54 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:08:54 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:08:54 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:08:54 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:08:54 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:08:54 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:08:54 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:08:54 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:08:54 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:08:54 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:08:54 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:57 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:08:58 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; TTFontFile has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\ttfontsuni.php 51
-ERROR - 2018-11-27 13:09:35 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:09:35 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:09:35 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:09:35 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:09:35 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:09:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:09:35 --> Severity: Notice --> Undefined variable: cur_date C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 179
-ERROR - 2018-11-27 13:09:35 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:09:35 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:09:35 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:09:35 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:09:35 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:09:35 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:09:35 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:09:35 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:09:35 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:09:35 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:09:35 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:09:37 --> Severity: Warning --> fopen(): Filename cannot be empty C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 10437
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:38 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:38 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:38 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:38 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined variable: cur_date C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 179
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:38 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:09:38 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:38 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:38 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:39 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:39 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:09:39 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:09:39 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:09:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:09:39 --> Severity: Notice --> Undefined variable: cur_date C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 179
-ERROR - 2018-11-27 13:09:39 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:09:39 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:09:39 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:09:39 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:39 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:09:39 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:09:39 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:09:39 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:09:39 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:09:39 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:09:39 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:09:39 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:39 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:09:39 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:09:39 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:39 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:09:39 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:09:39 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:09:39 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:09:39 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:09:39 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:09:39 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:09:39 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:09:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:09:39 --> Severity: Notice --> Undefined variable: cur_date C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 179
-ERROR - 2018-11-27 13:09:39 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:09:39 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:09:39 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:09:39 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:09:39 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:09:39 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:09:39 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:09:39 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:09:39 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:09:39 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:09:40 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:09:40 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:09:40 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:09:40 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; TTFontFile has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\ttfontsuni.php 51
-ERROR - 2018-11-27 13:09:40 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:09:40 --> Severity: Notice --> Undefined variable: cur_date C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 179
-ERROR - 2018-11-27 13:09:40 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:09:40 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:09:40 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:09:40 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:09:40 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:09:40 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:09:40 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:09:40 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:09:40 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:09:40 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:09:40 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:09:40 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:09:40 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:09:40 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:09:40 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:09:42 --> Severity: Warning --> fopen(): Filename cannot be empty C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 10437
-ERROR - 2018-11-27 13:09:42 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:42 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:42 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:42 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:42 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:42 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:42 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:42 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:42 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:42 --> Severity: Warning --> fopen(): Filename cannot be empty C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 10437
-ERROR - 2018-11-27 13:09:42 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:42 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:42 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:42 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:42 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:42 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:42 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:42 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:43 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:43 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:43 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:43 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:43 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:43 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:43 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:43 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:43 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:43 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:43 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:43 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:43 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:43 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:43 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:43 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:43 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:43 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:43 --> Severity: Warning --> fopen(): Filename cannot be empty C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 10437
-ERROR - 2018-11-27 13:09:43 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:43 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:43 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:43 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:43 --> Severity: Warning --> fopen(): Filename cannot be empty C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 10437
-ERROR - 2018-11-27 13:09:43 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:43 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:43 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:43 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:43 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:43 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:43 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:43 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:43 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:43 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; TTFontFile has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\ttfontsuni.php 51
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:44 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:45 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:45 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:45 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:45 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:45 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:45 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:45 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:45 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:45 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:45 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:45 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:45 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; TTFontFile has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\ttfontsuni.php 51
-ERROR - 2018-11-27 13:09:45 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:45 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:45 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:45 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:45 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:45 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:45 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:45 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:45 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:45 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:45 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:45 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:45 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:45 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:45 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:45 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:45 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:45 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:45 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:45 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:45 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; TTFontFile has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\ttfontsuni.php 51
-ERROR - 2018-11-27 13:09:46 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; TTFontFile has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\ttfontsuni.php 51
-ERROR - 2018-11-27 13:09:51 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:09:51 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:09:51 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:09:51 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:09:51 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:09:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:09:51 --> Severity: Notice --> Undefined variable: cur_date C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 179
-ERROR - 2018-11-27 13:09:51 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:09:51 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:09:51 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:09:51 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:09:51 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:09:51 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:09:51 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:09:51 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:09:52 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:09:52 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:09:52 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:09:54 --> Severity: Warning --> fopen(): Filename cannot be empty C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 10437
-ERROR - 2018-11-27 13:09:55 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:55 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:55 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:55 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:55 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:55 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:55 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:55 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:55 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:55 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:55 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:55 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:55 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:55 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:55 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:55 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:55 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:55 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:56 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:56 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:56 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:56 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:56 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:56 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:56 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:56 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:56 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:56 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:56 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:56 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:56 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:56 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:56 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:56 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:56 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:56 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:56 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:56 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:09:56 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; TTFontFile has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\ttfontsuni.php 51
-ERROR - 2018-11-27 13:11:55 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:11:56 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:11:56 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:11:56 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:11:56 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:11:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:18:59 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:18:59 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:18:59 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:19:00 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:19:00 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:19:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:20:12 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:20:12 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:20:12 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:20:12 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:20:12 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:20:12 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:20:12 --> Severity: Notice --> Undefined variable: date C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 179
-ERROR - 2018-11-27 13:20:45 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:20:45 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:20:46 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:20:46 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:20:46 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:20:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:20:46 --> Severity: Notice --> Undefined variable: date C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 179
-ERROR - 2018-11-27 13:20:54 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:20:54 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:20:54 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:20:54 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:20:54 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:20:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:20:55 --> Severity: Notice --> Undefined variable: date C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 179
-ERROR - 2018-11-27 13:21:06 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:21:06 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:21:06 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:21:06 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:21:07 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:21:07 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:21:07 --> Severity: Notice --> Undefined variable: date C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 179
-ERROR - 2018-11-27 13:21:26 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:21:26 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:21:26 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:21:26 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:21:26 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:21:26 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:21:26 --> Severity: Notice --> Undefined variable: date C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 179
-ERROR - 2018-11-27 13:21:56 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:21:56 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:21:56 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:21:56 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:21:56 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:21:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:21:56 --> Severity: Notice --> Undefined variable: date C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 179
-ERROR - 2018-11-27 13:22:11 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:22:11 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:22:11 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:22:11 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:22:11 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:22:11 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:22:11 --> Severity: Notice --> Undefined variable: date C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 179
-ERROR - 2018-11-27 13:22:24 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:22:24 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:22:24 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:22:24 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:22:24 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:22:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:22:35 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:22:35 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:22:35 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:22:35 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:22:35 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:22:35 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:22:35 --> Severity: Warning --> date() expects at least 1 parameter, 0 given C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 181
-ERROR - 2018-11-27 13:22:45 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:22:45 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:22:45 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:22:45 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:22:45 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:22:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:23:04 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:23:04 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:23:04 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:23:04 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:23:04 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:23:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:23:04 --> Severity: Warning --> date() expects at least 1 parameter, 0 given C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 181
-ERROR - 2018-11-27 13:23:14 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:23:14 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:23:14 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:23:14 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:23:14 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:23:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:23:31 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:23:31 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:23:31 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:23:31 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:23:31 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:23:31 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:23:43 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:23:43 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:23:43 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:23:43 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:23:44 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:23:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:23:51 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:23:51 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:23:51 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:23:51 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:23:51 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:23:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:24:22 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:24:22 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:24:22 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:24:22 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:24:22 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:24:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:24:29 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:24:29 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:24:29 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:24:29 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:24:29 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:24:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:26:04 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:26:04 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:26:04 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:26:04 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:26:04 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:26:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:26:05 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:26:05 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:26:05 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:26:05 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:26:05 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:26:05 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:26:05 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:26:05 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:26:05 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:26:05 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:26:06 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:26:11 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:11 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:11 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:11 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:11 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:11 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:11 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:11 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:11 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:11 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:11 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:11 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:11 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:11 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:11 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:11 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:11 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:11 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:11 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:11 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:11 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:11 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:11 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:11 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:11 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:11 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:11 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:11 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:12 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:12 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:12 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:12 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:12 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:12 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:12 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:12 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:12 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:12 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:26:13 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; TTFontFile has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\ttfontsuni.php 51
-ERROR - 2018-11-27 13:26:23 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:26:23 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:26:23 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:26:23 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:26:23 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:26:24 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:26:24 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:26:24 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:26:24 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:26:24 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:26:24 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:26:24 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:26:24 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:26:24 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:26:24 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:26:24 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:26:24 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:26:27 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; TTFontFile has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\ttfontsuni.php 51
-ERROR - 2018-11-27 13:27:04 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:27:04 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:27:04 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:27:04 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:27:04 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:27:04 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:27:04 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:27:04 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:27:04 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:27:05 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:27:05 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:27:05 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:27:05 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:27:05 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:27:05 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:27:05 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:27:05 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:27:07 --> Severity: Warning --> fopen(): Filename cannot be empty C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 10437
-ERROR - 2018-11-27 13:27:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:08 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:09 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:09 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:09 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:09 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:09 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:09 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:09 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:09 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:09 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:09 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:09 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:09 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:27:09 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; TTFontFile has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\ttfontsuni.php 51
-ERROR - 2018-11-27 13:27:37 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:27:37 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:27:37 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:27:37 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:27:37 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:27:37 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:27:37 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:27:37 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:27:37 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:27:37 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:27:38 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:27:38 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:27:38 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:27:38 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:27:38 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:27:38 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:27:38 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:27:40 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; TTFontFile has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\ttfontsuni.php 51
-ERROR - 2018-11-27 13:28:14 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:28:14 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:28:14 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:28:14 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:28:14 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:28:14 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:28:14 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:28:14 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:28:14 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:28:14 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:28:14 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:28:14 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:28:14 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:28:14 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:28:14 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:28:14 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:28:15 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:28:17 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:17 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:17 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:17 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:17 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:17 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:17 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:18 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:18 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:18 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:18 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:18 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:18 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:18 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:18 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:18 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:18 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:18 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:18 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:18 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:18 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:18 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:18 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:18 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:18 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:18 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:18 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:18 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:18 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:18 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:18 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:18 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:18 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:18 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:18 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:18 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:18 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:18 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:28:19 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; TTFontFile has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\ttfontsuni.php 51
-ERROR - 2018-11-27 13:31:44 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:31:44 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:31:44 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:31:44 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:31:44 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:31:44 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:31:44 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:31:44 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:31:44 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:31:44 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:31:44 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:31:44 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:31:44 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:31:44 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:31:44 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:31:44 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:31:44 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:31:45 --> Severity: Notice --> Undefined property: stdClass::$FirstName C:\xampp\htdocs\ria\application\views\editRevenuepurchaseorder.php 122
-ERROR - 2018-11-27 13:31:45 --> Severity: Notice --> Undefined property: stdClass::$BillNo C:\xampp\htdocs\ria\application\views\editRevenuepurchaseorder.php 4059
-ERROR - 2018-11-27 13:31:45 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\ria\application\views\editRevenuepurchaseorder.php 4060
-ERROR - 2018-11-27 13:31:45 --> Severity: Notice --> Undefined property: stdClass::$BillNo C:\xampp\htdocs\ria\application\views\editRevenuepurchaseorder.php 4231
-ERROR - 2018-11-27 13:31:47 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:47 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:47 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:47 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:47 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:47 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:47 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:47 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:47 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:47 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:47 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:47 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:47 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:47 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:47 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:47 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:47 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:47 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:47 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:48 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:48 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:48 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:48 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:48 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:48 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:48 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:48 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:48 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:48 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:48 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:48 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:48 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:48 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:48 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:48 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:49 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:49 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:49 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:31:49 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; TTFontFile has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\ttfontsuni.php 51
-ERROR - 2018-11-27 13:31:58 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:31:58 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:31:58 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:31:58 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:31:58 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:31:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:31:58 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:31:58 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:31:58 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:31:58 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:31:59 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:31:59 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:31:59 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:31:59 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:31:59 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:31:59 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:31:59 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:32:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:03 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:03 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:03 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:03 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:03 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:03 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:03 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:03 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:03 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:03 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:03 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:03 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:03 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:03 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:03 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:03 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:03 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:03 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:03 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:03 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:03 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:04 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; TTFontFile has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\ttfontsuni.php 51
-ERROR - 2018-11-27 13:32:19 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-27 13:32:20 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-27 13:32:20 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-27 13:32:20 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-27 13:32:20 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:32:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-27 13:32:20 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:32:20 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:32:20 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-27 13:32:20 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:32:20 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:32:20 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-27 13:32:21 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:32:21 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:32:21 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:32:21 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:32:21 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-27 13:32:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:25 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:25 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:25 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:25 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:25 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:25 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:25 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:25 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:25 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:25 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:25 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:25 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:25 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:25 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:25 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:25 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:25 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:25 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-27 13:32:25 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; TTFontFile has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\ttfontsuni.php 51
-ERROR - 2018-11-27 13:33:50 --> 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 - 2018-11-27 13:35:41 --> Severity: Notice --> Undefined variable: Other_Deductions C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 264
-ERROR - 2018-11-27 13:35:42 --> Severity: Notice --> Undefined variable: Festival_Bonus C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 267
-ERROR - 2018-11-27 13:35:42 --> Severity: Notice --> Undefined property: stdClass::$Loan_amount C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 290
-ERROR - 2018-11-27 13:35:42 --> Severity: Notice --> Undefined variable: Other_Deductions C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 264
-ERROR - 2018-11-27 13:35:42 --> Severity: Notice --> Undefined variable: Festival_Bonus C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 267
-ERROR - 2018-11-27 13:35:42 --> Severity: Notice --> Undefined property: stdClass::$Loan_amount C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 290
-ERROR - 2018-11-27 13:35:42 --> Severity: Notice --> Undefined variable: Other_Deductions C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 264
-ERROR - 2018-11-27 13:35:42 --> Severity: Notice --> Undefined variable: Festival_Bonus C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 267
-ERROR - 2018-11-27 13:35:42 --> Severity: Notice --> Undefined property: stdClass::$Loan_amount C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 290
-ERROR - 2018-11-27 13:35:42 --> Severity: Notice --> Undefined variable: Other_Deductions C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 264
-ERROR - 2018-11-27 13:35:42 --> Severity: Notice --> Undefined variable: Festival_Bonus C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 267
-ERROR - 2018-11-27 13:35:42 --> Severity: Notice --> Undefined property: stdClass::$Loan_amount C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 290
-ERROR - 2018-11-27 13:35:42 --> Severity: Notice --> Undefined variable: totalmanualoan C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 320
-ERROR - 2018-11-27 13:35:42 --> Severity: Warning --> array_sum() expects parameter 1 to be array, null given C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 320
-ERROR - 2018-11-27 13:36:25 --> Severity: Notice --> Undefined variable: Other_Deductions C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 264
-ERROR - 2018-11-27 13:36:25 --> Severity: Notice --> Undefined variable: Festival_Bonus C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 267
-ERROR - 2018-11-27 13:36:25 --> Severity: Notice --> Undefined property: stdClass::$Loan_amount C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 290
-ERROR - 2018-11-27 13:36:25 --> Severity: Notice --> Undefined variable: Other_Deductions C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 264
-ERROR - 2018-11-27 13:36:25 --> Severity: Notice --> Undefined variable: Festival_Bonus C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 267
-ERROR - 2018-11-27 13:36:25 --> Severity: Notice --> Undefined property: stdClass::$Loan_amount C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 290
-ERROR - 2018-11-27 13:36:25 --> Severity: Notice --> Undefined variable: Other_Deductions C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 264
-ERROR - 2018-11-27 13:36:25 --> Severity: Notice --> Undefined variable: Festival_Bonus C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 267
-ERROR - 2018-11-27 13:36:25 --> Severity: Notice --> Undefined property: stdClass::$Loan_amount C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 290
-ERROR - 2018-11-27 13:36:25 --> Severity: Notice --> Undefined variable: Other_Deductions C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 264
-ERROR - 2018-11-27 13:36:25 --> Severity: Notice --> Undefined variable: Festival_Bonus C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 267
-ERROR - 2018-11-27 13:36:25 --> Severity: Notice --> Undefined property: stdClass::$Loan_amount C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 290
-ERROR - 2018-11-27 13:36:25 --> Severity: Notice --> Undefined variable: totalmanualoan C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 320
-ERROR - 2018-11-27 13:36:25 --> Severity: Warning --> array_sum() expects parameter 1 to be array, null given C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 320
-ERROR - 2018-11-27 13:36:35 --> Severity: Notice --> Undefined variable: Other_Deductions C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 264
-ERROR - 2018-11-27 13:36:35 --> Severity: Notice --> Undefined variable: Festival_Bonus C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 267
-ERROR - 2018-11-27 13:36:36 --> Severity: Notice --> Undefined property: stdClass::$Loan_amount C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 290
-ERROR - 2018-11-27 13:36:36 --> Severity: Notice --> Undefined variable: Other_Deductions C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 264
-ERROR - 2018-11-27 13:36:36 --> Severity: Notice --> Undefined variable: Festival_Bonus C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 267
-ERROR - 2018-11-27 13:36:36 --> Severity: Notice --> Undefined property: stdClass::$Loan_amount C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 290
-ERROR - 2018-11-27 13:36:36 --> Severity: Notice --> Undefined variable: Other_Deductions C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 264
-ERROR - 2018-11-27 13:36:36 --> Severity: Notice --> Undefined variable: Festival_Bonus C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 267
-ERROR - 2018-11-27 13:36:36 --> Severity: Notice --> Undefined property: stdClass::$Loan_amount C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 290
-ERROR - 2018-11-27 13:36:36 --> Severity: Notice --> Undefined variable: Other_Deductions C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 264
-ERROR - 2018-11-27 13:36:36 --> Severity: Notice --> Undefined variable: Festival_Bonus C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 267
-ERROR - 2018-11-27 13:36:36 --> Severity: Notice --> Undefined property: stdClass::$Loan_amount C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 290
-ERROR - 2018-11-27 13:36:36 --> Severity: Notice --> Undefined variable: totalmanualoan C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 320
-ERROR - 2018-11-27 13:36:36 --> Severity: Warning --> array_sum() expects parameter 1 to be array, null given C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 320
-ERROR - 2018-11-27 13:48:49 --> Query error: FUNCTION resicoin_RIADev.STINCT does not exist
-ERROR - 2018-11-27 13:59:41 --> Query error: FUNCTION resicoin_RIADev.STINCT does not exist
diff --git a/application/logs/log-2018-11-28.php b/application/logs/log-2018-11-28.php
deleted file mode 100644
index 8f9cca8a..00000000
--- a/application/logs/log-2018-11-28.php
+++ /dev/null
@@ -1,59 +0,0 @@
-
-
-ERROR - 2018-11-28 06:08:07 --> 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 - 2018-11-28 06:08:20 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-28 06:08:20 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-28 06:08:21 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-28 06:08:22 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-28 06:08:22 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-28 06:08:22 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-28 06:08:22 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-28 06:08:22 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-28 06:08:22 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-28 06:08:22 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-28 06:08:22 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-28 06:08:22 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-28 06:08:22 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-28 06:08:22 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-28 06:08:22 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-28 06:08:22 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-28 06:08:22 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-28 06:08:27 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:27 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:27 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:27 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:27 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:27 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:27 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:27 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:27 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:27 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:27 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:27 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:27 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:27 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:27 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:27 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:27 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:27 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:27 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:27 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:27 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:27 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:27 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:27 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:27 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:27 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:27 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:27 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:27 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:28 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:28 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:28 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:28 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:28 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:28 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:28 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:28 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:28 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-28 06:08:29 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; TTFontFile has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\ttfontsuni.php 51
diff --git a/application/logs/log-2018-11-29.php b/application/logs/log-2018-11-29.php
deleted file mode 100644
index 57eb1034..00000000
--- a/application/logs/log-2018-11-29.php
+++ /dev/null
@@ -1,172 +0,0 @@
-
-
-ERROR - 2018-11-29 05:51:55 --> Severity: Notice --> Undefined variable: cust C:\xampp\htdocs\ria\application\views\suppliersummeryreport.php 88
-ERROR - 2018-11-29 05:51:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\suppliersummeryreport.php 88
-ERROR - 2018-11-29 05:51:55 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\suppliersummeryreport.php 110
-ERROR - 2018-11-29 05:51:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\suppliersummeryreport.php 110
-ERROR - 2018-11-29 05:52:21 --> Severity: Notice --> Undefined variable: cust C:\xampp\htdocs\ria\application\views\suppliersummeryreport.php 88
-ERROR - 2018-11-29 05:52:21 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\suppliersummeryreport.php 88
-ERROR - 2018-11-29 05:52:21 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\suppliersummeryreport.php 110
-ERROR - 2018-11-29 05:52:21 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\suppliersummeryreport.php 110
-ERROR - 2018-11-29 05:59:16 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\report.php 683
-ERROR - 2018-11-29 05:59:17 --> Severity: Notice --> Undefined variable: cust C:\xampp\htdocs\ria\application\views\suppliersummeryreport.php 88
-ERROR - 2018-11-29 05:59:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\suppliersummeryreport.php 88
-ERROR - 2018-11-29 05:59:17 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\suppliersummeryreport.php 110
-ERROR - 2018-11-29 05:59:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\suppliersummeryreport.php 110
-ERROR - 2018-11-29 06:02:31 --> Severity: Notice --> Undefined variable: cust C:\xampp\htdocs\ria\application\views\suppliersummeryreport.php 88
-ERROR - 2018-11-29 06:02:31 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\suppliersummeryreport.php 88
-ERROR - 2018-11-29 06:02:31 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\suppliersummeryreport.php 110
-ERROR - 2018-11-29 06:02:31 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\suppliersummeryreport.php 110
-ERROR - 2018-11-29 06:02:50 --> Severity: Notice --> Undefined variable: cust C:\xampp\htdocs\ria\application\views\suppliersummeryreport.php 88
-ERROR - 2018-11-29 06:02:50 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\suppliersummeryreport.php 88
-ERROR - 2018-11-29 06:02:51 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\suppliersummeryreport.php 110
-ERROR - 2018-11-29 06:02:51 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\suppliersummeryreport.php 110
-ERROR - 2018-11-29 06:03:25 --> Severity: Notice --> Undefined variable: cust C:\xampp\htdocs\ria\application\views\suppliersummeryreport.php 88
-ERROR - 2018-11-29 06:03:25 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\suppliersummeryreport.php 88
-ERROR - 2018-11-29 06:03:25 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\suppliersummeryreport.php 110
-ERROR - 2018-11-29 06:03:25 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\suppliersummeryreport.php 110
-ERROR - 2018-11-29 06:05:54 --> Severity: Notice --> Undefined variable: cust C:\xampp\htdocs\ria\application\views\suppliersummeryreport.php 88
-ERROR - 2018-11-29 06:05:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\suppliersummeryreport.php 88
-ERROR - 2018-11-29 06:05:54 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\suppliersummeryreport.php 110
-ERROR - 2018-11-29 06:05:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\suppliersummeryreport.php 110
-ERROR - 2018-11-29 06:39:56 --> 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 - 2018-11-29 06:40:27 --> Severity: Notice --> Undefined property: stdClass::$FirstName C:\xampp\htdocs\ria\application\views\editRevenuepurchaseorder.php 122
-ERROR - 2018-11-29 06:40:27 --> Severity: Notice --> Undefined variable: update C:\xampp\htdocs\ria\application\views\editRevenuepurchaseorder.php 238
-ERROR - 2018-11-29 06:40:27 --> Severity: Notice --> Undefined property: stdClass::$BillNo C:\xampp\htdocs\ria\application\views\editRevenuepurchaseorder.php 4059
-ERROR - 2018-11-29 06:40:27 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\ria\application\views\editRevenuepurchaseorder.php 4060
-ERROR - 2018-11-29 06:40:27 --> Severity: Notice --> Undefined property: stdClass::$BillNo C:\xampp\htdocs\ria\application\views\editRevenuepurchaseorder.php 4231
-ERROR - 2018-11-29 06:40:33 --> Severity: Notice --> Undefined property: stdClass::$FirstName C:\xampp\htdocs\ria\application\views\editRevenuepurchaseorder.php 122
-ERROR - 2018-11-29 06:40:33 --> Severity: Notice --> Undefined variable: update C:\xampp\htdocs\ria\application\views\editRevenuepurchaseorder.php 238
-ERROR - 2018-11-29 06:40:33 --> Severity: Notice --> Undefined property: stdClass::$BillNo C:\xampp\htdocs\ria\application\views\editRevenuepurchaseorder.php 4059
-ERROR - 2018-11-29 06:40:33 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\ria\application\views\editRevenuepurchaseorder.php 4060
-ERROR - 2018-11-29 06:40:34 --> Severity: Notice --> Undefined property: stdClass::$BillNo C:\xampp\htdocs\ria\application\views\editRevenuepurchaseorder.php 4231
-ERROR - 2018-11-29 10:53:37 --> 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 - 2018-11-29 10:53:37 --> Unable to connect to the database
-ERROR - 2018-11-29 10:53:41 --> 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 - 2018-11-29 10:53:41 --> Unable to connect to the database
-ERROR - 2018-11-29 10:53:42 --> 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 - 2018-11-29 10:53:42 --> Unable to connect to the database
-ERROR - 2018-11-29 10:53:42 --> 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 - 2018-11-29 10:53:42 --> Unable to connect to the database
-ERROR - 2018-11-29 10:53:42 --> 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 - 2018-11-29 10:53:42 --> Unable to connect to the database
-ERROR - 2018-11-29 10:53:43 --> 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 - 2018-11-29 10:53:43 --> Unable to connect to the database
-ERROR - 2018-11-29 11:37:52 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-29 11:37:53 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-29 11:37:53 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-29 11:37:54 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-29 11:37:55 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-29 11:37:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-29 11:37:55 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-29 11:37:55 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-29 11:37:55 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-29 11:37:55 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-29 11:37:55 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-29 11:37:56 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-29 11:37:56 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-29 11:37:56 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-29 11:37:56 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-29 11:37:56 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-29 11:37:56 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-29 11:38:01 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:01 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:01 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:01 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:01 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:01 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:01 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:01 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:01 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:01 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:01 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:02 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:38:03 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; TTFontFile has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\ttfontsuni.php 51
-ERROR - 2018-11-29 11:39:20 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; grad has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\grad.php 3
-ERROR - 2018-11-29 11:39:20 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; mpdfform has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\mpdfform.php 3
-ERROR - 2018-11-29 11:39:20 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; cssmgr has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\cssmgr.php 3
-ERROR - 2018-11-29 11:39:20 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; otl has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\otl.php 12
-ERROR - 2018-11-29 11:39:20 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-29 11:39:20 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\includes\pdfheader.php 168
-ERROR - 2018-11-29 11:39:20 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-29 11:39:20 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-29 11:39:20 --> Severity: Notice --> Undefined property: stdClass::$DiscountType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 343
-ERROR - 2018-11-29 11:39:20 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-29 11:39:20 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-29 11:39:20 --> Severity: Notice --> Undefined property: stdClass::$PackagingType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 344
-ERROR - 2018-11-29 11:39:20 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-29 11:39:20 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-29 11:39:20 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-29 11:39:20 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-29 11:39:20 --> Severity: Notice --> Undefined property: stdClass::$FreightType C:\xampp\htdocs\ria\application\views\revenuepopdf.php 387
-ERROR - 2018-11-29 11:39:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:23 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:24 --> Severity: Notice --> Undefined index: dom C:\xampp\htdocs\ria\application\third_party\mpdf\mpdf.php 26073
-ERROR - 2018-11-29 11:39:25 --> Severity: 8192 --> Methods with the same name as their class will not be constructors in a future version of PHP; TTFontFile has a deprecated constructor C:\xampp\htdocs\ria\application\third_party\mpdf\classes\ttfontsuni.php 51
diff --git a/application/logs/log-2018-11-30.php b/application/logs/log-2018-11-30.php
deleted file mode 100644
index 4b28ee2e..00000000
--- a/application/logs/log-2018-11-30.php
+++ /dev/null
@@ -1,35 +0,0 @@
-
-
-ERROR - 2018-11-30 06:33:56 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'elect im.IGRNO as igrn,pm.POType as potype,im.PONO as pono,date_format(im.Create' at line 1
-ERROR - 2018-11-30 07:20:25 --> Severity: Notice --> Undefined property: stdClass::$invno C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 315
-ERROR - 2018-11-30 07:20:25 --> Severity: Notice --> Undefined property: stdClass::$invdate C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 316
-ERROR - 2018-11-30 07:20:25 --> Severity: Notice --> Undefined property: stdClass::$invno C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 315
-ERROR - 2018-11-30 07:20:25 --> Severity: Notice --> Undefined property: stdClass::$invdate C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 316
-ERROR - 2018-11-30 07:20:25 --> Severity: Notice --> Undefined property: stdClass::$invno C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 315
-ERROR - 2018-11-30 07:20:25 --> Severity: Notice --> Undefined property: stdClass::$invdate C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 316
-ERROR - 2018-11-30 07:20:25 --> Severity: Notice --> Undefined property: stdClass::$invno C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 315
-ERROR - 2018-11-30 07:20:25 --> Severity: Notice --> Undefined property: stdClass::$invdate C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 316
-ERROR - 2018-11-30 07:20:25 --> Severity: Notice --> Undefined property: stdClass::$invno C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 315
-ERROR - 2018-11-30 07:20:25 --> Severity: Notice --> Undefined property: stdClass::$invdate C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 316
-ERROR - 2018-11-30 07:20:25 --> Severity: Notice --> Undefined property: stdClass::$invno C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 315
-ERROR - 2018-11-30 07:20:25 --> Severity: Notice --> Undefined property: stdClass::$invdate C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 316
-ERROR - 2018-11-30 07:20:25 --> Severity: Notice --> Undefined property: stdClass::$invno C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 315
-ERROR - 2018-11-30 07:20:25 --> Severity: Notice --> Undefined property: stdClass::$invdate C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 316
-ERROR - 2018-11-30 07:23:49 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '`
-when 'IMPORT'
-then ifnull((sum((id.QuantityAsPerInvoice * pl.Rate) * pm.Exch' at line 3
-ERROR - 2018-11-30 07:26:51 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '`
-when 'IMPORT'
-then ifnull((sum((id.QuantityAsPerInvoice * pl.Rate) * pm.Exch' at line 3
-ERROR - 2018-11-30 07:41:14 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '`
-when 'IMPORT'
-then ifnull((sum((id.QuantityAsPerInvoice * pl.Rate) * pm.Exch' at line 3
-ERROR - 2018-11-30 07:41:40 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '`
-when 'IMPORT'
-then ifnull((sum((id.QuantityAsPerInvoice * pl.Rate) * pm.Exch' at line 3
-ERROR - 2018-11-30 07:45:12 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '`
-when 'IMPORT'
-then ifnull((sum((id.QuantityAsPerInvoice * pl.Rate) * pm.Exch' at line 3
-ERROR - 2018-11-30 07:51:21 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'ELECT sd.SupplierID as sid,sd.SupplierName as supplier_name,count(im.PONO) as co' at line 1
-ERROR - 2018-11-30 08:08:01 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'ELECT sd.SupplierID as sid,sd.SupplierName as supplier_name,count(im.PONO) as co' at line 1
-ERROR - 2018-11-30 08:11:04 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'elect pono,igrn,potype,date_format(created_date,'%d-%m-%Y') as created_date,date' at line 1
diff --git a/application/logs/log-2018-12-01.php b/application/logs/log-2018-12-01.php
deleted file mode 100644
index 71b30d47..00000000
--- a/application/logs/log-2018-12-01.php
+++ /dev/null
@@ -1,230 +0,0 @@
-
-
-ERROR - 2018-12-01 08:24:09 --> Severity: Notice --> Undefined variable: totalmonthloan C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 319
-ERROR - 2018-12-01 08:24:09 --> Severity: Warning --> array_sum() expects parameter 1 to be array, null given C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 319
-ERROR - 2018-12-01 08:24:09 --> Severity: Notice --> Undefined variable: totalmanualoan C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 320
-ERROR - 2018-12-01 08:24:09 --> Severity: Warning --> array_sum() expects parameter 1 to be array, null given C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 320
-ERROR - 2018-12-01 08:24:09 --> Severity: Notice --> Undefined variable: totalinst C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 321
-ERROR - 2018-12-01 08:24:09 --> Severity: Warning --> array_sum() expects parameter 1 to be array, null given C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 321
-ERROR - 2018-12-01 08:24:09 --> Severity: Notice --> Undefined variable: totalotherDet C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 322
-ERROR - 2018-12-01 08:24:09 --> Severity: Warning --> array_sum() expects parameter 1 to be array, null given C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 322
-ERROR - 2018-12-01 08:24:09 --> Severity: Notice --> Undefined variable: totalfestival C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 323
-ERROR - 2018-12-01 08:24:09 --> Severity: Warning --> array_sum() expects parameter 1 to be array, null given C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 323
-ERROR - 2018-12-01 08:24:10 --> Severity: Notice --> Undefined variable: estTotal C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 324
-ERROR - 2018-12-01 08:24:10 --> Severity: Warning --> array_sum() expects parameter 1 to be array, null given C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 324
-ERROR - 2018-12-01 08:24:22 --> Severity: Notice --> Undefined variable: Other_Deductions C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 264
-ERROR - 2018-12-01 08:24:22 --> Severity: Notice --> Undefined variable: Festival_Bonus C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 267
-ERROR - 2018-12-01 08:24:22 --> Severity: Notice --> Undefined property: stdClass::$Loan_amount C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 290
-ERROR - 2018-12-01 08:24:22 --> Severity: Notice --> Undefined variable: Other_Deductions C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 264
-ERROR - 2018-12-01 08:24:22 --> Severity: Notice --> Undefined variable: Festival_Bonus C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 267
-ERROR - 2018-12-01 08:24:22 --> Severity: Notice --> Undefined property: stdClass::$Loan_amount C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 290
-ERROR - 2018-12-01 08:24:22 --> Severity: Notice --> Undefined variable: Other_Deductions C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 264
-ERROR - 2018-12-01 08:24:22 --> Severity: Notice --> Undefined variable: Festival_Bonus C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 267
-ERROR - 2018-12-01 08:24:23 --> Severity: Notice --> Undefined property: stdClass::$Loan_amount C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 290
-ERROR - 2018-12-01 08:24:23 --> Severity: Notice --> Undefined variable: Other_Deductions C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 264
-ERROR - 2018-12-01 08:24:23 --> Severity: Notice --> Undefined variable: Festival_Bonus C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 267
-ERROR - 2018-12-01 08:24:23 --> Severity: Notice --> Undefined property: stdClass::$Loan_amount C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 290
-ERROR - 2018-12-01 08:24:23 --> Severity: Notice --> Undefined variable: totalmanualoan C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 320
-ERROR - 2018-12-01 08:24:23 --> Severity: Warning --> array_sum() expects parameter 1 to be array, null given C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 320
-ERROR - 2018-12-01 11:39:04 --> Severity: Notice --> Undefined variable: totalmonthloan C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 319
-ERROR - 2018-12-01 11:39:04 --> Severity: Warning --> array_sum() expects parameter 1 to be array, null given C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 319
-ERROR - 2018-12-01 11:39:04 --> Severity: Notice --> Undefined variable: totalmanualoan C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 320
-ERROR - 2018-12-01 11:39:04 --> Severity: Warning --> array_sum() expects parameter 1 to be array, null given C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 320
-ERROR - 2018-12-01 11:39:04 --> Severity: Notice --> Undefined variable: totalinst C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 321
-ERROR - 2018-12-01 11:39:04 --> Severity: Warning --> array_sum() expects parameter 1 to be array, null given C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 321
-ERROR - 2018-12-01 11:39:04 --> Severity: Notice --> Undefined variable: totalotherDet C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 322
-ERROR - 2018-12-01 11:39:04 --> Severity: Warning --> array_sum() expects parameter 1 to be array, null given C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 322
-ERROR - 2018-12-01 11:39:04 --> Severity: Notice --> Undefined variable: totalfestival C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 323
-ERROR - 2018-12-01 11:39:05 --> Severity: Warning --> array_sum() expects parameter 1 to be array, null given C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 323
-ERROR - 2018-12-01 11:39:05 --> Severity: Notice --> Undefined variable: estTotal C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 324
-ERROR - 2018-12-01 11:39:05 --> Severity: Warning --> array_sum() expects parameter 1 to be array, null given C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 324
-ERROR - 2018-12-01 11:39:22 --> Severity: Notice --> Undefined variable: totalmonthloan C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 319
-ERROR - 2018-12-01 11:39:22 --> Severity: Warning --> array_sum() expects parameter 1 to be array, null given C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 319
-ERROR - 2018-12-01 11:39:22 --> Severity: Notice --> Undefined variable: totalmanualoan C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 320
-ERROR - 2018-12-01 11:39:22 --> Severity: Warning --> array_sum() expects parameter 1 to be array, null given C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 320
-ERROR - 2018-12-01 11:39:22 --> Severity: Notice --> Undefined variable: totalinst C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 321
-ERROR - 2018-12-01 11:39:22 --> Severity: Warning --> array_sum() expects parameter 1 to be array, null given C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 321
-ERROR - 2018-12-01 11:39:22 --> Severity: Notice --> Undefined variable: totalotherDet C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 322
-ERROR - 2018-12-01 11:39:22 --> Severity: Warning --> array_sum() expects parameter 1 to be array, null given C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 322
-ERROR - 2018-12-01 11:39:22 --> Severity: Notice --> Undefined variable: totalfestival C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 323
-ERROR - 2018-12-01 11:39:23 --> Severity: Warning --> array_sum() expects parameter 1 to be array, null given C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 323
-ERROR - 2018-12-01 11:39:23 --> Severity: Notice --> Undefined variable: estTotal C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 324
-ERROR - 2018-12-01 11:39:23 --> Severity: Warning --> array_sum() expects parameter 1 to be array, null given C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 324
-ERROR - 2018-12-01 11:54:50 --> Severity: Notice --> Undefined variable: Other_Deductions C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 264
-ERROR - 2018-12-01 11:54:50 --> Severity: Notice --> Undefined variable: Festival_Bonus C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 267
-ERROR - 2018-12-01 11:54:50 --> Severity: Notice --> Undefined property: stdClass::$Loan_amount C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 290
-ERROR - 2018-12-01 11:54:50 --> Severity: Notice --> Undefined variable: Other_Deductions C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 264
-ERROR - 2018-12-01 11:54:50 --> Severity: Notice --> Undefined variable: Festival_Bonus C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 267
-ERROR - 2018-12-01 11:54:50 --> Severity: Notice --> Undefined property: stdClass::$Loan_amount C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 290
-ERROR - 2018-12-01 11:54:50 --> Severity: Notice --> Undefined variable: Other_Deductions C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 264
-ERROR - 2018-12-01 11:54:50 --> Severity: Notice --> Undefined variable: Festival_Bonus C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 267
-ERROR - 2018-12-01 11:54:51 --> Severity: Notice --> Undefined property: stdClass::$Loan_amount C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 290
-ERROR - 2018-12-01 11:54:51 --> Severity: Notice --> Undefined variable: Other_Deductions C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 264
-ERROR - 2018-12-01 11:54:51 --> Severity: Notice --> Undefined variable: Festival_Bonus C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 267
-ERROR - 2018-12-01 11:54:51 --> Severity: Notice --> Undefined property: stdClass::$Loan_amount C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 290
-ERROR - 2018-12-01 11:54:51 --> Severity: Notice --> Undefined variable: totalmanualoan C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 320
-ERROR - 2018-12-01 11:54:51 --> Severity: Warning --> array_sum() expects parameter 1 to be array, null given C:\xampp\htdocs\ria\application\views\monthlypayinputs.php 320
-ERROR - 2018-12-01 12:44:17 --> Severity: Notice --> Undefined index: Gender C:\xampp\htdocs\ria\application\views\editEmployee.php 271
-ERROR - 2018-12-01 12:44:17 --> Severity: Notice --> Undefined index: Gender C:\xampp\htdocs\ria\application\views\editEmployee.php 271
-ERROR - 2018-12-01 12:44:17 --> Severity: Notice --> Undefined index: BloodGroup C:\xampp\htdocs\ria\application\views\editEmployee.php 308
-ERROR - 2018-12-01 12:44:17 --> Severity: Notice --> Undefined index: BloodGroup C:\xampp\htdocs\ria\application\views\editEmployee.php 308
-ERROR - 2018-12-01 12:44:17 --> Severity: Notice --> Undefined index: BloodGroup C:\xampp\htdocs\ria\application\views\editEmployee.php 308
-ERROR - 2018-12-01 12:44:17 --> Severity: Notice --> Undefined index: BloodGroup C:\xampp\htdocs\ria\application\views\editEmployee.php 308
-ERROR - 2018-12-01 12:44:17 --> Severity: Notice --> Undefined index: BloodGroup C:\xampp\htdocs\ria\application\views\editEmployee.php 308
-ERROR - 2018-12-01 12:44:17 --> Severity: Notice --> Undefined index: BloodGroup C:\xampp\htdocs\ria\application\views\editEmployee.php 308
-ERROR - 2018-12-01 12:44:17 --> Severity: Notice --> Undefined index: BloodGroup C:\xampp\htdocs\ria\application\views\editEmployee.php 308
-ERROR - 2018-12-01 12:44:17 --> Severity: Notice --> Undefined index: MartialStatus C:\xampp\htdocs\ria\application\views\editEmployee.php 335
-ERROR - 2018-12-01 12:44:17 --> Severity: Notice --> Undefined index: MartialStatus C:\xampp\htdocs\ria\application\views\editEmployee.php 335
-ERROR - 2018-12-01 12:44:17 --> Severity: Notice --> Undefined index: MartialStatus C:\xampp\htdocs\ria\application\views\editEmployee.php 335
-ERROR - 2018-12-01 12:44:17 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:17 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:17 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:17 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:17 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:17 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:17 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:17 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:17 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:17 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:17 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:17 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:17 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:18 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:18 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:18 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:18 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:18 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:18 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:18 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:18 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:18 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:18 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:18 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:18 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:18 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:18 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:18 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:18 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:18 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:18 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:18 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:18 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:18 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:18 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:18 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:18 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:18 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:18 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:18 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:18 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:18 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:44:18 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-01 12:44:18 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-01 12:44:18 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-01 12:44:19 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-01 12:44:19 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-01 12:44:19 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-01 12:44:19 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-01 12:44:19 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-01 12:44:19 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-01 12:44:19 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-01 12:44:19 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-01 12:44:19 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-01 12:44:19 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-01 12:44:19 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-01 12:44:19 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-01 12:44:19 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-01 12:44:19 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-01 12:44:19 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-01 12:44:19 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-01 12:44:19 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-01 12:44:19 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-01 12:44:19 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-01 12:44:19 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-01 12:44:19 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-01 12:44:19 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-01 12:44:19 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-01 12:44:19 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-01 12:44:19 --> Severity: Notice --> Undefined variable: uano C:\xampp\htdocs\ria\application\views\editEmployee.php 609
-ERROR - 2018-12-01 12:45:37 --> Severity: Notice --> Undefined index: Gender C:\xampp\htdocs\ria\application\views\editEmployee.php 271
-ERROR - 2018-12-01 12:45:37 --> Severity: Notice --> Undefined index: Gender C:\xampp\htdocs\ria\application\views\editEmployee.php 271
-ERROR - 2018-12-01 12:45:37 --> Severity: Notice --> Undefined index: BloodGroup C:\xampp\htdocs\ria\application\views\editEmployee.php 308
-ERROR - 2018-12-01 12:45:37 --> Severity: Notice --> Undefined index: BloodGroup C:\xampp\htdocs\ria\application\views\editEmployee.php 308
-ERROR - 2018-12-01 12:45:37 --> Severity: Notice --> Undefined index: BloodGroup C:\xampp\htdocs\ria\application\views\editEmployee.php 308
-ERROR - 2018-12-01 12:45:37 --> Severity: Notice --> Undefined index: BloodGroup C:\xampp\htdocs\ria\application\views\editEmployee.php 308
-ERROR - 2018-12-01 12:45:37 --> Severity: Notice --> Undefined index: BloodGroup C:\xampp\htdocs\ria\application\views\editEmployee.php 308
-ERROR - 2018-12-01 12:45:37 --> Severity: Notice --> Undefined index: BloodGroup C:\xampp\htdocs\ria\application\views\editEmployee.php 308
-ERROR - 2018-12-01 12:45:37 --> Severity: Notice --> Undefined index: BloodGroup C:\xampp\htdocs\ria\application\views\editEmployee.php 308
-ERROR - 2018-12-01 12:45:37 --> Severity: Notice --> Undefined index: MartialStatus C:\xampp\htdocs\ria\application\views\editEmployee.php 335
-ERROR - 2018-12-01 12:45:37 --> Severity: Notice --> Undefined index: MartialStatus C:\xampp\htdocs\ria\application\views\editEmployee.php 335
-ERROR - 2018-12-01 12:45:37 --> Severity: Notice --> Undefined index: MartialStatus C:\xampp\htdocs\ria\application\views\editEmployee.php 335
-ERROR - 2018-12-01 12:45:37 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:37 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:38 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:38 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:38 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:38 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:38 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:38 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:38 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:38 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:38 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:38 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:38 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:38 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:38 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:38 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:38 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:38 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:38 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:38 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:38 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:38 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:38 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:38 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:38 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:38 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:38 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:38 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:38 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:38 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:38 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:39 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:39 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:39 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:39 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:39 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:39 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:39 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:39 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:39 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:39 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:39 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-01 12:45:39 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-01 12:45:39 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-01 12:45:39 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-01 12:45:39 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-01 12:45:39 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-01 12:45:39 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-01 12:45:39 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-01 12:45:39 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-01 12:45:39 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-01 12:45:39 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-01 12:45:39 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-01 12:45:39 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-01 12:45:39 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-01 12:45:39 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-01 12:45:39 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-01 12:45:39 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-01 12:45:39 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-01 12:45:39 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-01 12:45:39 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-01 12:45:39 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-01 12:45:39 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-01 12:45:40 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-01 12:45:40 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-01 12:45:40 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-01 12:45:40 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-01 12:45:40 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-01 12:45:40 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-01 12:45:40 --> Severity: Notice --> Undefined variable: uano C:\xampp\htdocs\ria\application\views\editEmployee.php 609
diff --git a/application/logs/log-2018-12-04.php b/application/logs/log-2018-12-04.php
deleted file mode 100644
index 0e98f268..00000000
--- a/application/logs/log-2018-12-04.php
+++ /dev/null
@@ -1,234 +0,0 @@
-
-
-ERROR - 2018-12-04 06:37:18 --> Severity: Notice --> Undefined index: Gender C:\xampp\htdocs\ria\application\views\editEmployee.php 271
-ERROR - 2018-12-04 06:37:18 --> Severity: Notice --> Undefined index: Gender C:\xampp\htdocs\ria\application\views\editEmployee.php 271
-ERROR - 2018-12-04 06:37:18 --> Severity: Notice --> Undefined index: BloodGroup C:\xampp\htdocs\ria\application\views\editEmployee.php 308
-ERROR - 2018-12-04 06:37:18 --> Severity: Notice --> Undefined index: BloodGroup C:\xampp\htdocs\ria\application\views\editEmployee.php 308
-ERROR - 2018-12-04 06:37:18 --> Severity: Notice --> Undefined index: BloodGroup C:\xampp\htdocs\ria\application\views\editEmployee.php 308
-ERROR - 2018-12-04 06:37:18 --> Severity: Notice --> Undefined index: BloodGroup C:\xampp\htdocs\ria\application\views\editEmployee.php 308
-ERROR - 2018-12-04 06:37:18 --> Severity: Notice --> Undefined index: BloodGroup C:\xampp\htdocs\ria\application\views\editEmployee.php 308
-ERROR - 2018-12-04 06:37:18 --> Severity: Notice --> Undefined index: BloodGroup C:\xampp\htdocs\ria\application\views\editEmployee.php 308
-ERROR - 2018-12-04 06:37:18 --> Severity: Notice --> Undefined index: BloodGroup C:\xampp\htdocs\ria\application\views\editEmployee.php 308
-ERROR - 2018-12-04 06:37:18 --> Severity: Notice --> Undefined index: MartialStatus C:\xampp\htdocs\ria\application\views\editEmployee.php 335
-ERROR - 2018-12-04 06:37:18 --> Severity: Notice --> Undefined index: MartialStatus C:\xampp\htdocs\ria\application\views\editEmployee.php 335
-ERROR - 2018-12-04 06:37:18 --> Severity: Notice --> Undefined index: MartialStatus C:\xampp\htdocs\ria\application\views\editEmployee.php 335
-ERROR - 2018-12-04 06:37:18 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:18 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:18 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:18 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:19 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:19 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:19 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:19 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:19 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:19 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:19 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:19 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:19 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:19 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:19 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:19 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:19 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:19 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:19 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:19 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:19 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:19 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:19 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:19 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:19 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:19 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:19 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:19 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:19 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:19 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:19 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:20 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:20 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:20 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:20 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:20 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:20 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:20 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:20 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:20 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:20 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:20 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:37:20 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-04 06:37:20 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-04 06:37:20 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-04 06:37:20 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-04 06:37:20 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-04 06:37:20 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-04 06:37:20 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-04 06:37:20 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-04 06:37:20 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-04 06:37:20 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-04 06:37:20 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-04 06:37:20 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-04 06:37:20 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-04 06:37:20 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-04 06:37:20 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-04 06:37:20 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-04 06:37:20 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-04 06:37:20 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-04 06:37:20 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-04 06:37:20 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-04 06:37:20 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-04 06:37:21 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-04 06:37:21 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-04 06:37:21 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-04 06:37:21 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-04 06:37:21 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-04 06:37:21 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-04 06:37:21 --> Severity: Notice --> Undefined variable: uano C:\xampp\htdocs\ria\application\views\editEmployee.php 609
-ERROR - 2018-12-04 06:40:19 --> Severity: Notice --> Undefined index: Gender C:\xampp\htdocs\ria\application\views\editEmployee.php 271
-ERROR - 2018-12-04 06:40:20 --> Severity: Notice --> Undefined index: Gender C:\xampp\htdocs\ria\application\views\editEmployee.php 271
-ERROR - 2018-12-04 06:40:20 --> Severity: Notice --> Undefined index: BloodGroup C:\xampp\htdocs\ria\application\views\editEmployee.php 308
-ERROR - 2018-12-04 06:40:20 --> Severity: Notice --> Undefined index: BloodGroup C:\xampp\htdocs\ria\application\views\editEmployee.php 308
-ERROR - 2018-12-04 06:40:20 --> Severity: Notice --> Undefined index: BloodGroup C:\xampp\htdocs\ria\application\views\editEmployee.php 308
-ERROR - 2018-12-04 06:40:20 --> Severity: Notice --> Undefined index: BloodGroup C:\xampp\htdocs\ria\application\views\editEmployee.php 308
-ERROR - 2018-12-04 06:40:20 --> Severity: Notice --> Undefined index: BloodGroup C:\xampp\htdocs\ria\application\views\editEmployee.php 308
-ERROR - 2018-12-04 06:40:20 --> Severity: Notice --> Undefined index: BloodGroup C:\xampp\htdocs\ria\application\views\editEmployee.php 308
-ERROR - 2018-12-04 06:40:20 --> Severity: Notice --> Undefined index: BloodGroup C:\xampp\htdocs\ria\application\views\editEmployee.php 308
-ERROR - 2018-12-04 06:40:20 --> Severity: Notice --> Undefined index: MartialStatus C:\xampp\htdocs\ria\application\views\editEmployee.php 335
-ERROR - 2018-12-04 06:40:20 --> Severity: Notice --> Undefined index: MartialStatus C:\xampp\htdocs\ria\application\views\editEmployee.php 335
-ERROR - 2018-12-04 06:40:20 --> Severity: Notice --> Undefined index: MartialStatus C:\xampp\htdocs\ria\application\views\editEmployee.php 335
-ERROR - 2018-12-04 06:40:20 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:20 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:20 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:20 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:20 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:20 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:20 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:20 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:20 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:20 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:20 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:20 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:20 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:20 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:20 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:20 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:20 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:20 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:20 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:20 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:21 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:21 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:21 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:21 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:21 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:21 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:21 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:21 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:21 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:21 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:21 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:21 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:21 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:21 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:21 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:21 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:21 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:21 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:21 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:21 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:21 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:21 --> Severity: Notice --> Undefined index: Designation C:\xampp\htdocs\ria\application\views\editEmployee.php 421
-ERROR - 2018-12-04 06:40:21 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-04 06:40:21 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-04 06:40:21 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-04 06:40:21 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-04 06:40:21 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-04 06:40:21 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-04 06:40:21 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-04 06:40:21 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-04 06:40:21 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-04 06:40:22 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-04 06:40:22 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-04 06:40:22 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-04 06:40:22 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-04 06:40:22 --> Severity: Notice --> Undefined index: Departmentcode C:\xampp\htdocs\ria\application\views\editEmployee.php 448
-ERROR - 2018-12-04 06:40:22 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-04 06:40:22 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-04 06:40:22 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-04 06:40:22 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-04 06:40:22 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-04 06:40:22 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-04 06:40:22 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-04 06:40:22 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-04 06:40:22 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-04 06:40:22 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-04 06:40:22 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-04 06:40:22 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-04 06:40:22 --> Severity: Notice --> Undefined index: Edu_Qualification C:\xampp\htdocs\ria\application\views\editEmployee.php 486
-ERROR - 2018-12-04 06:40:22 --> Severity: Notice --> Undefined variable: uano C:\xampp\htdocs\ria\application\views\editEmployee.php 609
-ERROR - 2018-12-04 07:33:58 --> Severity: Warning --> mysqli_query(): MySQL server has gone away C:\xampp\htdocs\ria\system\database\drivers\mysqli\mysqli_driver.php 180
-ERROR - 2018-12-04 07:33:58 --> Severity: Warning --> mysqli_query(): MySQL server has gone away C:\xampp\htdocs\ria\system\database\drivers\mysqli\mysqli_driver.php 180
-ERROR - 2018-12-04 07:33:59 --> Severity: Warning --> mysqli_query(): Error reading result set's header C:\xampp\htdocs\ria\system\database\drivers\mysqli\mysqli_driver.php 180
-ERROR - 2018-12-04 07:33:59 --> Query error: MySQL server has gone away
-ERROR - 2018-12-04 07:33:59 --> Severity: Warning --> mysqli_query(): Error reading result set's header C:\xampp\htdocs\ria\system\database\drivers\mysqli\mysqli_driver.php 180
-ERROR - 2018-12-04 07:33:59 --> Query error: MySQL server has gone away
-ERROR - 2018-12-04 07:35:35 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'report' does not have a method 'index' C:\xampp\htdocs\ria\system\core\CodeIgniter.php 360
-ERROR - 2018-12-04 07:38:16 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'report' does not have a method 'index' C:\xampp\htdocs\ria\system\core\CodeIgniter.php 360
-ERROR - 2018-12-04 07:40:23 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'report' does not have a method 'index' C:\xampp\htdocs\ria\system\core\CodeIgniter.php 360
-ERROR - 2018-12-04 07:41:34 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'report' does not have a method 'index' C:\xampp\htdocs\ria\system\core\CodeIgniter.php 360
-ERROR - 2018-12-04 07:42:42 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'report' does not have a method 'index' C:\xampp\htdocs\ria\system\core\CodeIgniter.php 360
-ERROR - 2018-12-04 07:43:44 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'report' does not have a method 'index' C:\xampp\htdocs\ria\system\core\CodeIgniter.php 360
-ERROR - 2018-12-04 07:47:51 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'report' does not have a method 'index' C:\xampp\htdocs\ria\system\core\CodeIgniter.php 360
-ERROR - 2018-12-04 07:48:17 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'report' does not have a method 'index' C:\xampp\htdocs\ria\system\core\CodeIgniter.php 360
-ERROR - 2018-12-04 07:49:18 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'report' does not have a method 'index' C:\xampp\htdocs\ria\system\core\CodeIgniter.php 360
-ERROR - 2018-12-04 07:49:34 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'report' does not have a method 'index' C:\xampp\htdocs\ria\system\core\CodeIgniter.php 360
-ERROR - 2018-12-04 07:57:05 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'report' does not have a method 'index' C:\xampp\htdocs\ria\system\core\CodeIgniter.php 360
-ERROR - 2018-12-04 08:00:55 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'report' does not have a method 'index' C:\xampp\htdocs\ria\system\core\CodeIgniter.php 360
-ERROR - 2018-12-04 08:01:18 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'report' does not have a method 'index' C:\xampp\htdocs\ria\system\core\CodeIgniter.php 360
-ERROR - 2018-12-04 08:29:19 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'report' does not have a method 'index' C:\xampp\htdocs\ria\system\core\CodeIgniter.php 360
-ERROR - 2018-12-04 08:30:39 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'report' does not have a method 'index' C:\xampp\htdocs\ria\system\core\CodeIgniter.php 360
-ERROR - 2018-12-04 08:30:54 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'report' does not have a method 'index' C:\xampp\htdocs\ria\system\core\CodeIgniter.php 360
-ERROR - 2018-12-04 08:31:27 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'report' does not have a method 'index' C:\xampp\htdocs\ria\system\core\CodeIgniter.php 360
-ERROR - 2018-12-04 08:33:13 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'report' does not have a method 'index' C:\xampp\htdocs\ria\system\core\CodeIgniter.php 360
-ERROR - 2018-12-04 08:33:54 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'report' does not have a method 'index' C:\xampp\htdocs\ria\system\core\CodeIgniter.php 360
-ERROR - 2018-12-04 10:00:21 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'report' does not have a method 'index' C:\xampp\htdocs\ria\system\core\CodeIgniter.php 360
-ERROR - 2018-12-04 10:01:38 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'report' does not have a method 'index' C:\xampp\htdocs\ria\system\core\CodeIgniter.php 360
-ERROR - 2018-12-04 10:08:35 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'report' does not have a method 'index' C:\xampp\htdocs\ria\system\core\CodeIgniter.php 360
-ERROR - 2018-12-04 10:09:53 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'report' does not have a method 'index' C:\xampp\htdocs\ria\system\core\CodeIgniter.php 360
-ERROR - 2018-12-04 10:11:05 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'report' does not have a method 'index' C:\xampp\htdocs\ria\system\core\CodeIgniter.php 360
-ERROR - 2018-12-04 10:19:39 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'report' does not have a method 'index' C:\xampp\htdocs\ria\system\core\CodeIgniter.php 360
-ERROR - 2018-12-04 10:20:11 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'report' does not have a method 'index' C:\xampp\htdocs\ria\system\core\CodeIgniter.php 360
-ERROR - 2018-12-04 10:21:44 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'report' does not have a method 'index' C:\xampp\htdocs\ria\system\core\CodeIgniter.php 360
-ERROR - 2018-12-04 12:17:34 --> Severity: Notice --> Use of undefined constant console - assumed 'console' C:\xampp\htdocs\ria\application\controllers\report.php 676
-ERROR - 2018-12-04 12:17:34 --> Severity: Warning --> log() expects parameter 1 to be float, string given C:\xampp\htdocs\ria\application\controllers\report.php 676
-ERROR - 2018-12-04 12:29:34 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\controllers\report.php 689
-ERROR - 2018-12-04 12:30:12 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\controllers\report.php 689
-ERROR - 2018-12-04 13:14:09 --> 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 - 2018-12-04 13:14:09 --> Unable to connect to the database
-ERROR - 2018-12-04 13:14:43 --> 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 - 2018-12-04 13:14:44 --> Unable to connect to the database
-ERROR - 2018-12-04 13:14:57 --> 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 - 2018-12-04 13:14:57 --> Unable to connect to the database
-ERROR - 2018-12-04 13:17:47 --> 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 - 2018-12-04 13:17:47 --> Unable to connect to the database
-ERROR - 2018-12-04 13:29:30 --> Severity: Notice --> Array to string conversion C:\xampp\htdocs\ria\application\models\dahsboard_model.php 1809
-ERROR - 2018-12-04 13:29:31 --> Severity: Notice --> Array to string conversion C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 70
-ERROR - 2018-12-04 14:24:31 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'report' does not have a method 'index' C:\xampp\htdocs\ria\system\core\CodeIgniter.php 360
-ERROR - 2018-12-04 14:29:28 --> Severity: Notice --> Array to string conversion C:\xampp\htdocs\ria\application\models\dahsboard_model.php 1809
-ERROR - 2018-12-04 14:29:28 --> Severity: Notice --> Array to string conversion C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 70
-ERROR - 2018-12-04 14:30:35 --> Severity: Notice --> Array to string conversion C:\xampp\htdocs\ria\application\models\dahsboard_model.php 1809
-ERROR - 2018-12-04 14:47:50 --> Severity: Notice --> Array to string conversion C:\xampp\htdocs\ria\application\models\dahsboard_model.php 1810
-ERROR - 2018-12-04 14:47:50 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''Array' group by pono,material_name,category,supplier_name,id.IGRItemNo' at line 52
-ERROR - 2018-12-04 14:52:12 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''30 mesh x 32 G SS304 wire mesh screenfor 60,6212 - Silica Sand AFS 39-43- For S' at line 52
-ERROR - 2018-12-04 14:53:23 --> Severity: Notice --> Array to string conversion C:\xampp\htdocs\ria\application\models\dahsboard_model.php 1810
-ERROR - 2018-12-04 14:53:23 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''Array' group by pono,material_name,category,supplier_name,id.IGRItemNo' at line 52
-ERROR - 2018-12-04 14:55:06 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'mesh x 32 G SS304 wire mesh screenfor 60,6212 - Silica Sand AFS 39-43- For Sievi' at line 52
-ERROR - 2018-12-04 14:55:31 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'mesh x 32 G SS304 wire mesh screenfor 60,6212 - Silica Sand AFS 39-43- For Sievi' at line 52
-ERROR - 2018-12-04 14:56:00 --> Severity: Warning --> implode(): Invalid arguments passed C:\xampp\htdocs\ria\application\models\dahsboard_model.php 1810
-ERROR - 2018-12-04 14:56:01 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ') group by pono,material_name,category,supplier_name,id.IGRItemNo' at line 52
-ERROR - 2018-12-04 14:56:17 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'mesh x 32 G SS304 wire mesh screenfor 60,6212 - Silica Sand AFS 39-43- For Sievi' at line 52
-ERROR - 2018-12-04 14:56:35 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''(30 mesh x 32 G SS304 wire mesh screenfor 60,6212 - Silica Sand AFS 39-43- For ' at line 52
-ERROR - 2018-12-04 15:03:41 --> Severity: Notice --> Array to string conversion C:\xampp\htdocs\ria\application\models\dahsboard_model.php 1810
-ERROR - 2018-12-04 15:03:42 --> Severity: Warning --> implode(): Invalid arguments passed C:\xampp\htdocs\ria\application\models\dahsboard_model.php 1810
diff --git a/application/logs/log-2018-12-05.php b/application/logs/log-2018-12-05.php
deleted file mode 100644
index 182e2a08..00000000
--- a/application/logs/log-2018-12-05.php
+++ /dev/null
@@ -1,145 +0,0 @@
-
-
-ERROR - 2018-12-05 06:57:28 --> Severity: Warning --> mysqli_connect(): (HY000/1044): Access denied for user 'resicoin_RIADev'@'%' to database 'resicoin_PROD' C:\xampp\htdocs\ria\system\database\drivers\mysqli\mysqli_driver.php 77
-ERROR - 2018-12-05 06:57:28 --> Unable to connect to the database
-ERROR - 2018-12-05 06:57:40 --> Severity: Warning --> mysqli_connect(): (HY000/1044): Access denied for user 'resicoin_RIADev'@'%' to database 'resicoin_PROD' C:\xampp\htdocs\ria\system\database\drivers\mysqli\mysqli_driver.php 77
-ERROR - 2018-12-05 06:57:40 --> Unable to connect to the database
-ERROR - 2018-12-05 06:57:51 --> Severity: Warning --> mysqli_connect(): (HY000/1044): Access denied for user 'resicoin_RIADev'@'%' to database 'resicoin_PROD' C:\xampp\htdocs\ria\system\database\drivers\mysqli\mysqli_driver.php 77
-ERROR - 2018-12-05 06:57:51 --> Unable to connect to the database
-ERROR - 2018-12-05 06:58:41 --> Severity: Warning --> mysqli_connect(): (HY000/1045): Access denied for user 'resicoin_PROD'@'103.16.202.153' (using password: YES) C:\xampp\htdocs\ria\system\database\drivers\mysqli\mysqli_driver.php 77
-ERROR - 2018-12-05 06:58:41 --> Unable to connect to the database
-ERROR - 2018-12-05 06:58:46 --> Severity: Warning --> mysqli_connect(): (HY000/1045): Access denied for user 'resicoin_PROD'@'103.16.202.153' (using password: YES) C:\xampp\htdocs\ria\system\database\drivers\mysqli\mysqli_driver.php 77
-ERROR - 2018-12-05 06:58:46 --> Unable to connect to the database
-ERROR - 2018-12-05 07:03:16 --> Severity: Warning --> mysqli_connect(): (HY000/1045): Access denied for user 'resicoin_PROD'@'103.16.202.153' (using password: YES) C:\xampp\htdocs\ria\system\database\drivers\mysqli\mysqli_driver.php 77
-ERROR - 2018-12-05 07:03:16 --> Unable to connect to the database
-ERROR - 2018-12-05 07:03:30 --> Severity: Warning --> mysqli_connect(): (HY000/1045): Access denied for user 'resicoin_PROD'@'103.16.202.153' (using password: YES) C:\xampp\htdocs\ria\system\database\drivers\mysqli\mysqli_driver.php 77
-ERROR - 2018-12-05 07:03:30 --> Unable to connect to the database
-ERROR - 2018-12-05 07:03:34 --> Severity: Warning --> mysqli_connect(): (HY000/1045): Access denied for user 'resicoin_PROD'@'103.16.202.153' (using password: YES) C:\xampp\htdocs\ria\system\database\drivers\mysqli\mysqli_driver.php 77
-ERROR - 2018-12-05 07:03:34 --> Unable to connect to the database
-ERROR - 2018-12-05 07:03:51 --> Severity: Warning --> mysqli_connect(): (HY000/1045): Access denied for user 'resicoin_PROD'@'103.16.202.153' (using password: YES) C:\xampp\htdocs\ria\system\database\drivers\mysqli\mysqli_driver.php 77
-ERROR - 2018-12-05 07:03:51 --> Unable to connect to the database
-ERROR - 2018-12-05 07:04:11 --> Severity: Warning --> mysqli_connect(): (HY000/1045): Access denied for user 'resicoin_PROD'@'103.16.202.153' (using password: YES) C:\xampp\htdocs\ria\system\database\drivers\mysqli\mysqli_driver.php 77
-ERROR - 2018-12-05 07:04:11 --> Unable to connect to the database
-ERROR - 2018-12-05 07:04:27 --> Severity: Warning --> mysqli_connect(): (HY000/1045): Access denied for user 'resicoin_PROD'@'103.16.202.153' (using password: YES) C:\xampp\htdocs\ria\system\database\drivers\mysqli\mysqli_driver.php 77
-ERROR - 2018-12-05 07:04:27 --> Unable to connect to the database
-ERROR - 2018-12-05 07:05:25 --> Severity: Warning --> mysqli_connect(): (HY000/1045): Access denied for user 'resicoin_PROD'@'103.16.202.153' (using password: YES) C:\xampp\htdocs\ria\system\database\drivers\mysqli\mysqli_driver.php 77
-ERROR - 2018-12-05 07:05:25 --> Unable to connect to the database
-ERROR - 2018-12-05 07:05:44 --> Severity: Warning --> mysqli_connect(): (HY000/1045): Access denied for user 'resicoin_PROD'@'103.16.202.153' (using password: YES) C:\xampp\htdocs\ria\system\database\drivers\mysqli\mysqli_driver.php 77
-ERROR - 2018-12-05 07:05:44 --> Unable to connect to the database
-ERROR - 2018-12-05 07:19:58 --> Severity: Notice --> Undefined variable: user C:\xampp\htdocs\ria\application\views\dashboard.php 627
-ERROR - 2018-12-05 07:47:19 --> Severity: Notice --> Undefined variable: user C:\xampp\htdocs\ria\application\views\dashboard.php 627
-ERROR - 2018-12-05 08:00:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:06 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:07 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:29 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:00:30 --> Severity: Notice --> Undefined property: stdClass::$client_name C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 112
-ERROR - 2018-12-05 08:13:34 --> Severity: Notice --> Undefined variable: UANumber C:\xampp\htdocs\ria\application\views\editSupplier.php 242
-ERROR - 2018-12-05 08:13:35 --> Severity: Notice --> Undefined variable: Exiseregistration C:\xampp\htdocs\ria\application\views\editSupplier.php 248
-ERROR - 2018-12-05 08:13:35 --> Severity: Notice --> Undefined variable: CSTNO C:\xampp\htdocs\ria\application\views\editSupplier.php 255
-ERROR - 2018-12-05 08:13:35 --> Severity: Notice --> Undefined variable: CSTDate C:\xampp\htdocs\ria\application\views\editSupplier.php 258
-ERROR - 2018-12-05 08:13:35 --> Severity: Notice --> Undefined variable: CollectrateAddress C:\xampp\htdocs\ria\application\views\editSupplier.php 273
-ERROR - 2018-12-05 08:14:06 --> 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 - 2018-12-05 08:14:18 --> Severity: Notice --> Undefined property: stdClass::$FirstName C:\xampp\htdocs\ria\application\views\editRevenuepurchaseorder.php 122
-ERROR - 2018-12-05 08:14:19 --> Severity: Notice --> Undefined variable: update C:\xampp\htdocs\ria\application\views\editRevenuepurchaseorder.php 238
-ERROR - 2018-12-05 08:14:19 --> Severity: Notice --> Undefined property: stdClass::$BillNo C:\xampp\htdocs\ria\application\views\editRevenuepurchaseorder.php 4059
-ERROR - 2018-12-05 08:14:19 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\ria\application\views\editRevenuepurchaseorder.php 4060
-ERROR - 2018-12-05 08:14:19 --> Severity: Notice --> Undefined property: stdClass::$BillNo C:\xampp\htdocs\ria\application\views\editRevenuepurchaseorder.php 4059
-ERROR - 2018-12-05 08:14:19 --> Severity: Notice --> Undefined property: stdClass::$FilePath C:\xampp\htdocs\ria\application\views\editRevenuepurchaseorder.php 4060
-ERROR - 2018-12-05 08:14:19 --> Severity: Notice --> Undefined property: stdClass::$BillNo C:\xampp\htdocs\ria\application\views\editRevenuepurchaseorder.php 4231
-ERROR - 2018-12-05 08:49:29 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 106
-ERROR - 2018-12-05 08:49:29 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 106
-ERROR - 2018-12-05 10:05:45 --> Severity: Notice --> Undefined variable: sname C:\xampp\htdocs\ria\application\controllers\report.php 703
-ERROR - 2018-12-05 10:33:51 --> Severity: Notice --> Undefined variable: user C:\xampp\htdocs\ria\application\views\dashboard.php 627
-ERROR - 2018-12-05 10:46:36 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 61
-ERROR - 2018-12-05 10:46:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 61
-ERROR - 2018-12-05 10:46:36 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 100
-ERROR - 2018-12-05 10:46:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 100
-ERROR - 2018-12-05 10:49:09 --> Severity: Notice --> Undefined offset: 0 C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 61
-ERROR - 2018-12-05 10:49:09 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 61
-ERROR - 2018-12-05 11:19:19 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\report.php 736
-ERROR - 2018-12-05 11:19:19 --> Severity: Notice --> Undefined variable: pageTitle C:\xampp\htdocs\ria\application\views\includes\header.php 4
-ERROR - 2018-12-05 11:19:19 --> Severity: Notice --> Undefined variable: cust C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 120
-ERROR - 2018-12-05 11:19:19 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 120
-ERROR - 2018-12-05 11:19:19 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 143
-ERROR - 2018-12-05 11:19:19 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 143
-ERROR - 2018-12-05 11:19:19 --> Severity: Notice --> Undefined variable: material C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 189
-ERROR - 2018-12-05 11:19:19 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\Report_supplierlink_summary.php 189
diff --git a/application/logs/log-2018-12-11.php b/application/logs/log-2018-12-11.php
deleted file mode 100644
index c55257e7..00000000
--- a/application/logs/log-2018-12-11.php
+++ /dev/null
@@ -1,1394 +0,0 @@
-
-
-ERROR - 2018-12-11 08:11:32 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-11 08:16:39 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-11 09:59:05 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-11 10:18:56 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-11 10:18:56 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-11 10:19:33 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-11 10:19:33 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-11 10:21:17 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-11 10:21:17 --> The upload path does not appear to be valid.
-ERROR - 2018-12-11 10:21:18 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-11 10:21:18 --> The upload path does not appear to be valid.
-ERROR - 2018-12-11 10:24:06 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-11 10:26:03 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-11 10:26:33 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-11 10:26:33 --> The upload path does not appear to be valid.
-ERROR - 2018-12-11 10:37:51 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-11 10:38:01 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-11 10:38:47 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-11 10:38:47 --> The upload path does not appear to be valid.
-ERROR - 2018-12-11 10:38:48 --> Severity: Notice --> Undefined variable: res C:\xampp\htdocs\ria\application\controllers\cashbook.php 356
-ERROR - 2018-12-11 10:38:51 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1565
-ERROR - 2018-12-11 10:38:51 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1565
-ERROR - 2018-12-11 10:38:51 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1565
-ERROR - 2018-12-11 10:38:51 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1565
-ERROR - 2018-12-11 10:38:52 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 10:38:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 10:38:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 10:38:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 10:38:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 10:38:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 10:38:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 10:38:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 10:38:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 10:38:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 10:38:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 10:38:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 10:38:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 10:38:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 10:39:34 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-11 10:39:43 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-11 10:39:58 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-11 10:39:58 --> The upload path does not appear to be valid.
-ERROR - 2018-12-11 10:39:59 --> Severity: Notice --> Undefined variable: res C:\xampp\htdocs\ria\application\controllers\cashbook.php 356
-ERROR - 2018-12-11 10:40:02 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1565
-ERROR - 2018-12-11 10:40:02 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1565
-ERROR - 2018-12-11 10:40:02 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1565
-ERROR - 2018-12-11 10:40:02 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1565
-ERROR - 2018-12-11 10:40:02 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 10:40:02 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 10:40:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 10:40:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 10:40:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 10:40:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 10:40:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 10:40:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 10:40:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 10:40:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 10:40:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 10:40:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 10:40:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 10:40:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 10:40:46 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-11 10:41:00 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-11 10:41:00 --> The upload path does not appear to be valid.
-ERROR - 2018-12-11 11:02:29 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-11 11:03:51 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1565
-ERROR - 2018-12-11 11:03:51 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1565
-ERROR - 2018-12-11 11:03:51 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1565
-ERROR - 2018-12-11 11:03:51 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1565
-ERROR - 2018-12-11 11:03:52 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 11:03:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 11:03:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 11:03:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 11:03:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 11:03:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 11:03:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 11:03:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 11:03:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 11:03:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 11:03:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 11:03:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 11:03:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 11:03:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 11:04:13 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
-ERROR - 2018-12-11 11:04:13 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
-ERROR - 2018-12-11 11:04:22 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
-ERROR - 2018-12-11 11:04:22 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
-ERROR - 2018-12-11 11:04:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-11 11:04:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-11 11:04:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-11 11:04:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-11 11:04:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-11 11:04:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-11 11:04:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-11 11:04:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-11 11:04:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-11 11:04:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-11 11:04:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-11 11:04:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-11 11:04:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-11 11:04:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-11 11:04:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-11 11:04:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-11 11:04:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-11 11:04:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-11 11:04:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-11 11:04:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-11 11:04:22 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-11 11:04:22 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-11 11:04:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-11 11:04:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-11 11:04:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-11 11:04:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-11 11:04:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-11 11:04:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-11 11:04:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-11 11:04:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-11 11:04:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-11 11:04:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-11 11:04:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-11 11:04:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-11 11:04:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-11 11:04:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-11 11:04:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-11 11:04:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-11 11:04:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-11 11:04:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-11 11:04:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-11 11:04:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-11 11:04:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-11 11:04:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-11 11:04:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-11 11:04:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-11 11:04:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-11 11:04:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-11 11:04:23 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-11 11:04:23 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-11 11:04:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-11 11:04:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-11 11:04:24 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-11 11:04:24 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-11 11:05:48 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1754
-ERROR - 2018-12-11 11:05:48 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1763
-ERROR - 2018-12-11 11:05:48 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1763
-ERROR - 2018-12-11 11:05:48 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-11 11:05:48 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-11 11:05:49 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 11:05:49 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 11:05:49 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 11:05:49 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
-ERROR - 2018-12-11 11:05:49 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 11:05:49 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
-ERROR - 2018-12-11 11:05:49 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
-ERROR - 2018-12-11 11:05:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 11:05:49 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
-ERROR - 2018-12-11 11:05:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 11:05:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 11:05:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 11:05:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 11:05:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 11:05:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 11:05:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 11:05:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 11:05:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 11:05:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 11:05:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 11:05:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 11:05:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 11:05:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 11:05:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 11:05:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 11:05:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 11:05:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 11:05:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 11:05:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 11:05:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 11:05:49 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
-ERROR - 2018-12-11 11:05:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 11:05:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 11:05:49 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
-ERROR - 2018-12-11 11:05:49 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
-ERROR - 2018-12-11 11:05:49 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
-ERROR - 2018-12-11 11:05:49 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
-ERROR - 2018-12-11 11:05:49 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
-ERROR - 2018-12-11 11:05:50 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1565
-ERROR - 2018-12-11 11:05:50 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1565
-ERROR - 2018-12-11 11:05:50 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1565
-ERROR - 2018-12-11 11:05:50 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1565
-ERROR - 2018-12-11 11:05:50 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1565
-ERROR - 2018-12-11 11:05:50 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1565
-ERROR - 2018-12-11 11:05:50 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1565
-ERROR - 2018-12-11 11:05:50 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1565
-ERROR - 2018-12-11 11:05:51 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 11:05:51 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 11:05:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 11:05:51 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 11:05:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 11:05:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 11:05:51 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 11:05:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 11:05:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 11:05:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 11:05:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 11:05:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 11:05:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 11:05:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 11:05:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 11:05:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 11:05:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 11:05:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 11:05:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 11:05:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 11:05:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 11:05:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 11:05:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 11:05:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 11:05:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 11:05:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 11:05:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 11:05:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 11:06:01 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
-ERROR - 2018-12-11 11:06:01 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
-ERROR - 2018-12-11 11:06:01 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
-ERROR - 2018-12-11 11:06:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
-ERROR - 2018-12-11 11:06:01 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
-ERROR - 2018-12-11 11:06:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
-ERROR - 2018-12-11 11:06:01 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
-ERROR - 2018-12-11 11:06:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
-ERROR - 2018-12-11 11:06:01 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
-ERROR - 2018-12-11 11:06:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
-ERROR - 2018-12-11 11:06:01 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
-ERROR - 2018-12-11 11:06:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
-ERROR - 2018-12-11 11:06:01 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
-ERROR - 2018-12-11 11:06:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
-ERROR - 2018-12-11 11:06:38 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1565
-ERROR - 2018-12-11 11:06:38 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1565
-ERROR - 2018-12-11 11:06:38 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1565
-ERROR - 2018-12-11 11:06:38 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1565
-ERROR - 2018-12-11 11:06:38 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 11:06:39 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 11:06:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 11:06:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 11:06:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 11:06:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 11:06:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 11:06:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 11:06:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 11:06:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 11:06:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 11:06:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 11:06:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 11:06:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 11:06:48 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
-ERROR - 2018-12-11 11:06:48 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
-ERROR - 2018-12-11 11:06:48 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
-ERROR - 2018-12-11 11:06:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
-ERROR - 2018-12-11 11:06:48 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
-ERROR - 2018-12-11 11:06:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
-ERROR - 2018-12-11 11:06:48 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
-ERROR - 2018-12-11 11:06:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
-ERROR - 2018-12-11 11:31:23 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-11 11:43:33 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-11 11:43:33 --> The upload path does not appear to be valid.
-ERROR - 2018-12-11 11:43:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:43:38 --> Severity: Notice --> Undefined variable: narration C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:43:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:43:38 --> Severity: Notice --> Undefined variable: narration C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:43:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:43:38 --> Severity: Notice --> Undefined variable: narration C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:43:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:43:38 --> Severity: Notice --> Undefined variable: narration C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:43:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:43:38 --> Severity: Notice --> Undefined variable: narration C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:43:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:43:39 --> Severity: Notice --> Undefined variable: narration C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:43:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:43:39 --> Severity: Notice --> Undefined variable: narration C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:43:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:43:39 --> Severity: Notice --> Undefined variable: narration C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:43:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:43:40 --> Severity: Notice --> Undefined variable: narration C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:43:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:43:40 --> Severity: Notice --> Undefined variable: narration C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:43:44 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1605
-ERROR - 2018-12-11 11:43:44 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1605
-ERROR - 2018-12-11 11:43:44 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1605
-ERROR - 2018-12-11 11:43:44 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1605
-ERROR - 2018-12-11 11:43:44 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 11:43:44 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 11:43:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 11:43:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 11:43:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 11:43:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 11:43:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 11:43:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 11:43:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 11:43:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 11:43:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 11:43:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 11:43:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 11:43:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 11:49:31 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1605
-ERROR - 2018-12-11 11:49:31 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1605
-ERROR - 2018-12-11 11:49:31 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1605
-ERROR - 2018-12-11 11:49:32 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1605
-ERROR - 2018-12-11 11:49:33 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 11:49:33 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 11:49:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 11:49:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 11:49:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 11:49:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 11:49:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 11:49:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 11:49:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 11:49:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 11:49:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 11:49:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 11:49:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 11:49:33 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 11:49:33 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
-ERROR - 2018-12-11 11:49:47 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-11 11:50:19 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-11 11:50:19 --> The upload path does not appear to be valid.
-ERROR - 2018-12-11 11:50:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:50:23 --> Severity: Notice --> Undefined variable: narration C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:50:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:50:23 --> Severity: Notice --> Undefined variable: narration C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:50:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:50:24 --> Severity: Notice --> Undefined variable: narration C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:50:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:50:24 --> Severity: Notice --> Undefined variable: narration C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:50:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:50:24 --> Severity: Notice --> Undefined variable: narration C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:50:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:50:24 --> Severity: Notice --> Undefined variable: narration C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:50:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:50:24 --> Severity: Notice --> Undefined variable: narration C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:50:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:50:24 --> Severity: Notice --> Undefined variable: narration C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:50:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:50:25 --> Severity: Notice --> Undefined variable: narration C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:50:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:50:25 --> Severity: Notice --> Undefined variable: narration C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 11:50:28 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1605
-ERROR - 2018-12-11 11:50:28 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1605
-ERROR - 2018-12-11 11:50:28 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1605
-ERROR - 2018-12-11 11:50:28 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1605
-ERROR - 2018-12-11 11:50:29 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 11:50:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 11:50:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 11:50:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 11:50:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 11:50:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 11:50:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 11:50:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 11:50:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 11:50:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 11:50:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 11:50:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 11:50:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 11:50:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 12:25:34 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-11 12:26:42 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-11 12:26:42 --> The upload path does not appear to be valid.
-ERROR - 2018-12-11 12:26:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 12:26:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 12:26:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 12:26:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 12:26:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 12:26:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 12:26:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 12:26:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 12:26:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 12:26:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 12:29:02 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1605
-ERROR - 2018-12-11 12:29:02 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1605
-ERROR - 2018-12-11 12:29:02 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1605
-ERROR - 2018-12-11 12:29:02 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1605
-ERROR - 2018-12-11 12:29:03 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 12:29:03 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 12:29:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 12:29:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 12:29:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 12:29:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 12:29:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 12:29:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 12:29:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 12:29:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 12:29:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 12:29:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 12:29:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 12:29:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 12:41:42 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-11 12:42:57 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-11 12:43:29 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-11 12:43:29 --> The upload path does not appear to be valid.
-ERROR - 2018-12-11 12:43:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 12:43:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 12:43:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 12:43:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 12:43:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 12:43:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 12:43:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 12:43:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 12:43:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 12:43:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 12:43:37 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1605
-ERROR - 2018-12-11 12:43:37 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1605
-ERROR - 2018-12-11 12:43:37 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1605
-ERROR - 2018-12-11 12:43:37 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1605
-ERROR - 2018-12-11 12:43:37 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 12:43:37 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 12:43:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 12:43:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 12:43:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 12:43:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 12:43:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 12:43:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 12:43:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 12:43:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 12:43:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 12:43:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 12:43:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 12:43:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 12:46:33 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-11 12:46:58 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-11 12:46:58 --> The upload path does not appear to be valid.
-ERROR - 2018-12-11 12:46:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 12:46:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 12:46:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 12:46:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 12:46:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 12:46:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 12:46:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 12:46:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 12:46:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 12:47:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 12:47:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 12:47:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 12:47:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 12:47:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 12:47:04 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1605
-ERROR - 2018-12-11 12:47:04 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1605
-ERROR - 2018-12-11 12:47:04 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1605
-ERROR - 2018-12-11 12:47:04 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1605
-ERROR - 2018-12-11 12:47:04 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 12:47:04 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 12:47:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 12:47:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 12:47:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 12:47:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 12:47:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 12:47:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 12:47:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 12:47:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 12:47:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 12:47:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 12:47:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 12:47:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 12:58:50 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-11 12:59:18 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-11 12:59:18 --> The upload path does not appear to be valid.
-ERROR - 2018-12-11 12:59: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 - 2018-12-11 12:59: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 - 2018-12-11 13:00:57 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-11 13:01:12 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-11 13:01:12 --> The upload path does not appear to be valid.
-ERROR - 2018-12-11 13:01:12 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-11 13:01:12 --> 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 - 2018-12-11 13:01:19 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-11 13:01:30 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-11 13:07:29 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-11 13:08:01 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-11 13:08:01 --> The upload path does not appear to be valid.
-ERROR - 2018-12-11 13:08:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:08:27 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1743
-ERROR - 2018-12-11 13:08:27 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1743
-ERROR - 2018-12-11 13:08:27 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1743
-ERROR - 2018-12-11 13:08:27 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1743
-ERROR - 2018-12-11 13:08:27 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 13:08:27 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 13:08:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 13:08:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 13:08:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 13:08:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 13:08:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 13:08:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 13:08:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 13:08:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 13:08:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 13:08:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 13:08:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 13:08:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 13:23:51 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-11 13:24:11 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-11 13:24:11 --> The upload path does not appear to be valid.
-ERROR - 2018-12-11 13:24:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 13:24:38 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1743
-ERROR - 2018-12-11 13:24:38 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1743
-ERROR - 2018-12-11 13:24:38 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1743
-ERROR - 2018-12-11 13:24:39 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1743
-ERROR - 2018-12-11 13:24:39 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 13:24:39 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 13:24:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 13:24:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 13:24:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 13:24:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 13:24:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 13:24:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 13:24:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 13:24:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 13:24:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 13:24:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 13:24:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 13:24:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 13:24:39 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
-ERROR - 2018-12-11 13:42:51 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-11 13:50:38 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-11 13:52:02 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-11 13:52:03 --> The upload path does not appear to be valid.
-ERROR - 2018-12-11 13:52:07 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-11 13:52:07 --> 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 - 2018-12-11 13:53:57 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-11 13:54:26 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-11 13:54:26 --> The upload path does not appear to be valid.
-ERROR - 2018-12-11 13:54:27 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-11 13:54:27 --> 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 - 2018-12-11 14:01:37 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-11 14:01:37 --> The upload path does not appear to be valid.
-ERROR - 2018-12-11 14:01:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:01:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:02:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:02:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:02:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:02:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:02:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:02:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:02:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:02:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-11 14:02:05 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1743
-ERROR - 2018-12-11 14:02:05 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1743
-ERROR - 2018-12-11 14:02:05 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1743
-ERROR - 2018-12-11 14:02:05 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1743
-ERROR - 2018-12-11 14:02:06 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 14:02:06 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 14:02:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 14:02:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 14:02:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 14:02:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 14:02:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 14:02:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 14:02:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 14:02:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 14:02:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 14:02:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 14:02:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 14:02:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 14:12:48 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1743
-ERROR - 2018-12-11 14:12:49 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1743
-ERROR - 2018-12-11 14:12:49 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1743
-ERROR - 2018-12-11 14:12:49 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1743
-ERROR - 2018-12-11 14:12:49 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 14:12:49 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 14:12:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 14:12:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 14:12:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 14:12:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 14:12:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 14:12:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 14:12:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 14:12:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 14:12:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 14:12:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 14:12:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 14:12:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 14:12:50 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
-ERROR - 2018-12-11 14:13:43 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-11 14:15:49 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-11 14:15:49 --> The upload path does not appear to be valid.
-ERROR - 2018-12-11 14:15:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 14:15:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 14:15:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 14:15:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 14:15:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 14:15:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 14:15:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 14:15:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 14:15:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 14:15:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 14:15:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 14:15:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 14:15:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 14:15:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 385
-ERROR - 2018-12-11 14:15:55 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1743
-ERROR - 2018-12-11 14:15:55 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1743
-ERROR - 2018-12-11 14:15:55 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1743
-ERROR - 2018-12-11 14:15:55 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1743
-ERROR - 2018-12-11 14:15:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 14:15:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-11 14:15:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 14:15:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-11 14:15:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 14:15:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-11 14:15:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 14:15:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-11 14:15:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 14:15:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-11 14:15:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 14:15:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-11 14:15:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 14:15:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-11 14:32:01 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
diff --git a/application/logs/log-2018-12-12.php b/application/logs/log-2018-12-12.php
deleted file mode 100644
index 79f71e62..00000000
--- a/application/logs/log-2018-12-12.php
+++ /dev/null
@@ -1,4005 +0,0 @@
-
-
-ERROR - 2018-12-12 05:51:28 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 05:52:16 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 05:52:16 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 05: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 - 2018-12-12 05:52:24 --> 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 - 2018-12-12 05:52:24 --> 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 - 2018-12-12 05:52:24 --> 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 - 2018-12-12 05:52:24 --> 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 - 2018-12-12 05:52:24 --> 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 - 2018-12-12 05:52:24 --> 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 - 2018-12-12 05:52:24 --> Severity: Warning --> DOMDocument::loadHTML(): htmlParseEntityRef: expecting ';' in Entity, line: 77 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-12 05:52:24 --> 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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05:52:25 --> 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 - 2018-12-12 05:52:25 --> 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 - 2018-12-12 05:52:25 --> 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 - 2018-12-12 05:52:25 --> 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 - 2018-12-12 05:52:25 --> 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 - 2018-12-12 05:52:25 --> 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 - 2018-12-12 05:52:25 --> 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 - 2018-12-12 05:52:25 --> 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 - 2018-12-12 05:52:25 --> Severity: Warning --> DOMDocument::loadHTML(): Tag icellcount invalid in Entity, line: 127 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05:52:26 --> 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 - 2018-12-12 05:52:26 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute inexttab redefined in Entity, line: 180 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-12 05:52:26 --> 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 - 2018-12-12 05:52:26 --> 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 - 2018-12-12 05:52:26 --> 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 - 2018-12-12 05:52:26 --> 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 - 2018-12-12 05:52:26 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute inexttab redefined in Entity, line: 185 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05: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 - 2018-12-12 05:52:30 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1743
-ERROR - 2018-12-12 05:52:30 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1743
-ERROR - 2018-12-12 05:52:30 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1743
-ERROR - 2018-12-12 05:52:30 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1743
-ERROR - 2018-12-12 05:52:31 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 05:52:31 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 05:52:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 05:52:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 05:52:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 05:52:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 05:52:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 05:52:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 05:52:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 05:52:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 05:52:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 05:52:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 05:52:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 05:52:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 05:52:31 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
-ERROR - 2018-12-12 08:53:51 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 08:54:22 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 08:54:23 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 08:54:27 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-12 08:54:27 --> 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 - 2018-12-12 08:57:59 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 08:58:30 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 08:58:30 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 08:58:31 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-12 08:58:31 --> 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 - 2018-12-12 10:08:39 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 10:09:08 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 10:09:09 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 10:09:10 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 10:09:10 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 10:09:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:09:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:09:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:09:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:10:16 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 10:10:16 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 10:10:50 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 10:10:50 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 10:11:44 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 10:11:44 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 10:12:28 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 10:12:28 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 10:12:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:12:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:13:02 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1744
-ERROR - 2018-12-12 10:13:02 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1744
-ERROR - 2018-12-12 10:13:02 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1744
-ERROR - 2018-12-12 10:13:02 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1744
-ERROR - 2018-12-12 10:13:03 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 10:13:03 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 10:13:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 10:13:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 10:13:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 10:13:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 10:13:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 10:13:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 10:13:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 10:13:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 10:13:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 10:13:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 10:13:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 10:13:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 10:13:49 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1744
-ERROR - 2018-12-12 10:13:49 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1744
-ERROR - 2018-12-12 10:13:49 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1744
-ERROR - 2018-12-12 10:13:49 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1744
-ERROR - 2018-12-12 10:13:49 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 10:13:49 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 10:13:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 10:13:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 10:13:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 10:13:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 10:13:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 10:13:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 10:13:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 10:13:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 10:13:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 10:13:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 10:13:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 10:13:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 10:13:50 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
-ERROR - 2018-12-12 10:14:14 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 10:14:59 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 10:14:59 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 10:15:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:15:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:15:35 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 10:15:36 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 10:15:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:15:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:18:45 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 10:18:45 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 10:18:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:18:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:19:20 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 10:19:20 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 10:19:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:19:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 10:27:39 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 10:27:39 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 10:27:43 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1744
-ERROR - 2018-12-12 10:27:43 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1744
-ERROR - 2018-12-12 10:27:43 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1744
-ERROR - 2018-12-12 10:27:43 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1744
-ERROR - 2018-12-12 10:27:43 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 10:27:43 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 10:27:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 10:27:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 10:27:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 10:27:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 10:27:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 10:27:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 10:27:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 10:27:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 10:27:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 10:27:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 10:27:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 10:27:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 10:27:44 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
-ERROR - 2018-12-12 10:31:12 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 10:31:50 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 10:31:50 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 10:31:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:31:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:32:15 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1743
-ERROR - 2018-12-12 10:32:15 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1743
-ERROR - 2018-12-12 10:32:15 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1743
-ERROR - 2018-12-12 10:32:15 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1743
-ERROR - 2018-12-12 10:32:15 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 10:32:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 10:32:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 10:32:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 10:32:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 10:32:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 10:32:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 10:32:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 10:32:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 10:32:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 10:32:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 10:32:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 10:32:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 10:32:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 10:32:16 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
-ERROR - 2018-12-12 10:34:06 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 10:34:26 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 10:34:26 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 10:34:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 520
-ERROR - 2018-12-12 10:34:51 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1743
-ERROR - 2018-12-12 10:34:51 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1743
-ERROR - 2018-12-12 10:34:51 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1743
-ERROR - 2018-12-12 10:34:51 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1743
-ERROR - 2018-12-12 10:34:52 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 10:34:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 10:34:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 10:34:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 10:34:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 10:34:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 10:34:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 10:34:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 10:34:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 10:34:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 10:34:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 10:34:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 10:34:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 10:34:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 10:34:52 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
-ERROR - 2018-12-12 10:37:40 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 10:38:05 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 10:38:05 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 10:40:28 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 10:41:03 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 10:41:03 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 10:50:24 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 10:50:24 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 10:52:31 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 10:52:31 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 10:52:31 --> Severity: Notice --> Undefined variable: birth C:\xampp\htdocs\ria\application\controllers\cashbook.php 479
-ERROR - 2018-12-12 10:53:05 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 10:53:05 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 10:55:45 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 10:56:05 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 10:56:05 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 10:56:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:56:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:15 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 10:57:27 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 10:57:27 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 10:57:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 10:57:55 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1747
-ERROR - 2018-12-12 10:57:55 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1747
-ERROR - 2018-12-12 10:57:55 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1747
-ERROR - 2018-12-12 10:57:55 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1747
-ERROR - 2018-12-12 10:57:56 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 10:57:56 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 10:57:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 10:57:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 10:57:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 10:57:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 10:57:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 10:57:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 10:57:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 10:57:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 10:57:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 10:57:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 10:57:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 10:57:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 11:19:15 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 11:19:32 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 11:19:32 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 11:19:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:19:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:20:01 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1747
-ERROR - 2018-12-12 11:20:01 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1747
-ERROR - 2018-12-12 11:20:01 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1747
-ERROR - 2018-12-12 11:20:01 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1747
-ERROR - 2018-12-12 11:20:01 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 11:20:01 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 11:20:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 11:20:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 11:20:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 11:20:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 11:20:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 11:20:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 11:20:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 11:20:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 11:20:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 11:20:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 11:20:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 11:20:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 11:20:02 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
-ERROR - 2018-12-12 11:23:28 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 11:23:44 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 11:23:44 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 11:23:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:23:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:26 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 11:26:35 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 11:26:48 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 11:26:48 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 11:26:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:26:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:27:21 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1748
-ERROR - 2018-12-12 11:27:21 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1748
-ERROR - 2018-12-12 11:27:21 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1748
-ERROR - 2018-12-12 11:27:21 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1748
-ERROR - 2018-12-12 11:27:21 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 11:27:21 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 11:27:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 11:27:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 11:27:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 11:27:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 11:27:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 11:27:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 11:27:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 11:27:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 11:27:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 11:27:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 11:27:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 11:27:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 11:28:17 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 11:28:41 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 11:28:41 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 11:28:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:28:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 524
-ERROR - 2018-12-12 11:29:08 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1748
-ERROR - 2018-12-12 11:29:08 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1748
-ERROR - 2018-12-12 11:29:08 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1748
-ERROR - 2018-12-12 11:29:08 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1748
-ERROR - 2018-12-12 11:29:08 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 11:29:08 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 11:29:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 11:29:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 11:29:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 11:29:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 11:29:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 11:29:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 11:29:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 11:29:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 11:29:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 11:29:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 11:29:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 11:29:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 11:40:39 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
-ERROR - 2018-12-12 11:40:39 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
-ERROR - 2018-12-12 11:41:08 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
-ERROR - 2018-12-12 11:41:08 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
-ERROR - 2018-12-12 11:41:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-12 11:41:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-12 11:41:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-12 11:41:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-12 11:41:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-12 11:41:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-12 11:41:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-12 11:41:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-12 11:41:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-12 11:41:08 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-12 11:41:08 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-12 11:41:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-12 11:41:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-12 11:41:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-12 11:41:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-12 11:41:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-12 11:41:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-12 11:41:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-12 11:41:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-12 11:41:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-12 11:41:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-12 11:41:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-12 11:41:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-12 11:41:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-12 11:41:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-12 11:41:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-12 11:41:09 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-12 11:41:09 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-12 11:41:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-12 11:41:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-12 11:41:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-12 11:41:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-12 11:41:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-12 11:41:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-12 11:41:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-12 11:41:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-12 11:41:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-12 11:41:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-12 11:41:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-12 11:41:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-12 11:41:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-12 11:41:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-12 11:41:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-12 11:41:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-12 11:41:10 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-12 11:41:10 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-12 11:41:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-12 11:41:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-12 11:41:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-12 11:41:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-12 11:41:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-12 11:41:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-12 11:41:11 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-12 11:41:11 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-12 11:42:22 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1939
-ERROR - 2018-12-12 11:42:22 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1939
-ERROR - 2018-12-12 11:42:22 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1939
-ERROR - 2018-12-12 11:42:22 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1939
-ERROR - 2018-12-12 11:42:22 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1948
-ERROR - 2018-12-12 11:42:22 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1948
-ERROR - 2018-12-12 11:42:22 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1948
-ERROR - 2018-12-12 11:42:22 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1948
-ERROR - 2018-12-12 11:42:22 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1948
-ERROR - 2018-12-12 11:42:22 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1948
-ERROR - 2018-12-12 11:42:22 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1948
-ERROR - 2018-12-12 11:42:22 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1948
-ERROR - 2018-12-12 11:42:22 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2014
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2014
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2014
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2014
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2014
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 11:42:23 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
-ERROR - 2018-12-12 11:42:23 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 11:42:23 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 11:42:23 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 11:42:23 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 11:42:23 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
-ERROR - 2018-12-12 11:42:23 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 11:42:23 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 11:42:23 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 11:42:23 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 11:42:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 11:42:24 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 11:42:24 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
-ERROR - 2018-12-12 11:42:24 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
-ERROR - 2018-12-12 11:42:24 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
-ERROR - 2018-12-12 11:42:24 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
-ERROR - 2018-12-12 11:42:24 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
-ERROR - 2018-12-12 11:42:25 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-12 11:42:25 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-12 11:42:25 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-12 11:42:25 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-12 11:42:25 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-12 11:42:25 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-12 11:42:26 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-12 11:42:26 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-12 11:42:26 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-12 11:42:26 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-12 11:42:26 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-12 11:42:26 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-12 11:42:26 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 11:42:26 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 11:42:26 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 11:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 11:42:26 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 11:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 11:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 11:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 11:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 11:42:26 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 11:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 11:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 11:42:26 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 11:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 11:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 11:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 11:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 11:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 11:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 11:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 11:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 11:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 11:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 11:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 11:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 11:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 11:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 11:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 11:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 11:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 11:42:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 11:42:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 11:42:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 11:42:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 11:42:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 11:42:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 11:42:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 11:42:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 11:42:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 11:42:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 11:42:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 11:42:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 12:34:56 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 12:35:36 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 12:35:36 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 12:35:40 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-12 12:35:40 --> 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 - 2018-12-12 12:35:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:35:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:35:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:35:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:35:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:35:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:35:45 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 12:35:45 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 12:35:45 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 12:35:45 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 12:35:45 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 12:35:45 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 12:35:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 12:35:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 12:35:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 12:35:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 12:35:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 12:35:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 12:35:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 12:35:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 12:35:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 12:35:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 12:35:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 12:35:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 12:41:01 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 12:41:02 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 12:41:02 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 12:41:02 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 12:41:02 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 12:41:02 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 12:41:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 12:41:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 12:41:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 12:41:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 12:41:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 12:41:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 12:41:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 12:41:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 12:41:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 12:41:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 12:41:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 12:41:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 12:41:03 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
-ERROR - 2018-12-12 12:41:10 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 12:41:34 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 12:41:34 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 12:41:34 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-12 12:41:35 --> 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 - 2018-12-12 12:41:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:41:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:41:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:41:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:41:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:41:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:41:46 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 12:41:46 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 12:41:47 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 12:41:47 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 12:41:47 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 12:41:47 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 12:41:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 12:41:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 12:41:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 12:41:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 12:41:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 12:41:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 12:41:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 12:41:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 12:41:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 12:41:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 12:41:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 12:41:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 12:45:48 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 12:46:21 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 12:46:21 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 12:46:22 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-12 12:46:22 --> 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 - 2018-12-12 12:46:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:46:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:46:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:46:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:46:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:46:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:46:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:46:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:46:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:46:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:46:26 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 12:46:26 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 12:46:26 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 12:46:26 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 12:46:27 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 12:46:27 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 12:46:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 12:46:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 12:46:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 12:46:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 12:46:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 12:46:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 12:46:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 12:46:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 12:46:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 12:46:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 12:46:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 12:46:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 12:52:09 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 12:52:38 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 12:52:38 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 12:52:38 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-12 12:52:39 --> 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 - 2018-12-12 12:52:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:52:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:52:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:52:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:52:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:52:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:52:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:52:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:52:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:52:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:52:43 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 12:52:43 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 12:52:43 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 12:52:43 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 12:52:43 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 12:52:43 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 12:52:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 12:52:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 12:52:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 12:52:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 12:52:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 12:52:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 12:52:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 12:52:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 12:52:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 12:52:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 12:52:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 12:52:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 12:54:51 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 12:55:22 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 12:55:22 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 12:55:22 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-12 12:55:22 --> 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 - 2018-12-12 12:55:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:55:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:55:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:55:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:55:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:55:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:55:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:55:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:55:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:55:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:55:26 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 12:55:27 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 12:55:27 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 12:55:27 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 12:55:27 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 12:55:27 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 12:55:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 12:55:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 12:55:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 12:55:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 12:55:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 12:55:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 12:55:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 12:55:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 12:55:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 12:55:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 12:55:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 12:55:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 12:58:50 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 12:59:14 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 12:59:14 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 12:59:14 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-12 12:59:14 --> 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 - 2018-12-12 12:59:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:59:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:59:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:59:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:59:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:59:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:59:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:59:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:59:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:59:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 12:59:20 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 12:59:20 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 12:59:20 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 12:59:20 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 12:59:21 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 12:59:21 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 12:59:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 12:59:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 12:59:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 12:59:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 12:59:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 12:59:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 12:59:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 12:59:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 12:59:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 12:59:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 12:59:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 12:59:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 13:02:50 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 13:03:39 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 13:03:39 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 13:03:39 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-12 13:03:39 --> 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 - 2018-12-12 13:03:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 13:03:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 13:03:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 13:03:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 13:03:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 13:03:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 13:03:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 13:03:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 13:03:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 13:03:44 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 13:03:44 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 13:03:45 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 13:03:45 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 13:03:45 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 13:03:45 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 13:03:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 13:03:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 13:03:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 13:03:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 13:03:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 13:03:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 13:03:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 13:03:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 13:03:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 13:03:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 13:03:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 13:03:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 13:09:55 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 13:09:55 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 13:09:55 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 13:09:55 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 13:09:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 13:09:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 13:09:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 13:09:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 13:09:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 13:09:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 13:09:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 13:09:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 13:09:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 13:09:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 13:09:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 13:09:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 13:09:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 13:09:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 13:09:56 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
-ERROR - 2018-12-12 13:10:49 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 13:11:57 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 13:11:57 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 13:11:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:11:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:11:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:11:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:11:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:11:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:11:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:11:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:11:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:11:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:11:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:11:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:11:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:11:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:11:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:11:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:11:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:11:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:12:29 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 13:12:29 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 13:12:29 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 13:12:29 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 13:12:30 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 13:12:30 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 13:12:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 13:12:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 13:12:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 13:12:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 13:12:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 13:12:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 13:12:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 13:12:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 13:12:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 13:12:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 13:12:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 13:12:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 13:13:33 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 13:13:33 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 13:13:33 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 13:13:33 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 13:13:34 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 13:13:34 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 13:13:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 13:13:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 13:13:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 13:13:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 13:13:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 13:13:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 13:13:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 13:13:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 13:13:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 13:13:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 13:13:34 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 13:13:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 13:13:35 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
-ERROR - 2018-12-12 13:13:40 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 13:13:42 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 13:14:00 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 13:14:00 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 13:14:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:14:55 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 13:14:55 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 13:14:55 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 13:14:55 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 13:14:56 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 13:14:56 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 13:14:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 13:14:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 13:14:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 13:14:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 13:14:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 13:14:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 13:14:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 13:14:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 13:14:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 13:14:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 13:14:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 13:14:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 13:16:47 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 13:16:47 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 13:16:47 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 13:16:47 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 13:16:48 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 13:16:48 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 13:16:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 13:16:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 13:16:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 13:16:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 13:16:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 13:16:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 13:16:48 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 13:16:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 13:16:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 13:16:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 13:16:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 13:16:49 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 13:16:49 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
-ERROR - 2018-12-12 13:16:54 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 13:16:55 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 13:16:56 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 13:16:57 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 13:17:19 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 13:17:19 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 13:17:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 521
-ERROR - 2018-12-12 13:17:52 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 13:17:52 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 13:17:52 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 13:17:52 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 13:17:52 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 13:17:53 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 13:17:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 13:17:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 13:17:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 13:17:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 13:17:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 13:17:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 13:17:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 13:17:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 13:17:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 13:17:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 13:17:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 13:17:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 13:19:45 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 13:20:06 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 13:20:06 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 13:20:06 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-12 13:20:06 --> 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 - 2018-12-12 13:20:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 13:20:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 13:20:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 13:20:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 13:20:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 13:20:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 13:20:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 13:20:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 13:20:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 13:20:11 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 13:20:11 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 13:20:12 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 13:20:12 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1745
-ERROR - 2018-12-12 13:20:12 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 13:20:12 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 13:20:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 13:20:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 13:20:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 13:20:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 13:20:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 13:20:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 13:20:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 13:20:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 13:20:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 13:20:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 13:20:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 13:20:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 13:29:33 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 13:29:57 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 13:29:58 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 13:29:58 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-12 13:29:58 --> 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 - 2018-12-12 13:29:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 13:37:26 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 13:37:26 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 13:37:26 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-12 13:37:26 --> 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 - 2018-12-12 13:37:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 451
-ERROR - 2018-12-12 13:40:47 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 13:40:47 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 13:40:47 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-12 13:40:47 --> 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 - 2018-12-12 13:40:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-12 13:41:36 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 13:41:36 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 13:41:36 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-12 13:41:36 --> 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 - 2018-12-12 13:41:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-12 13:41:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-12 13:41:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-12 13:41:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-12 13:41:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-12 13:41:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-12 13:41:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-12 13:41:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-12 13:41:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-12 13:41:44 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-12 13:41:44 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-12 13:41:44 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-12 13:41:44 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-12 13:41:44 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 13:41:45 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 13:41:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 13:41:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 13:41:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 13:41:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 13:41:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 13:41:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 13:41:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 13:41:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 13:41:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 13:41:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 13:41:45 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 13:41:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 13:43:03 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 13:43:07 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 13:43:32 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 13:43:32 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 13:43:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:43:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:44:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:44:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:44:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:44:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:44:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:44:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:44:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:44:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:44:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:44:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:44:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:44:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:44:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:44:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:44:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:44:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:44:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:44:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:44:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:44:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:44:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:44:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:44:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:44:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:44:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:44:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:44:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:44:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:44:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:44:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:44:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:44:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:44:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-12 13:44:07 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-12 13:44:07 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-12 13:44:07 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-12 13:44:07 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-12 13:44:07 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 13:44:07 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 13:44:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 13:44:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 13:44:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 13:44:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 13:44:07 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 13:44:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 13:44:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 13:44:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 13:44:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 13:44:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 13:44:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 13:44:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 13:47:06 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 13:47:30 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 13:47:30 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 13:47:31 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-12 13:47:31 --> 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 - 2018-12-12 13:47:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-12 13:47:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-12 13:47:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-12 13:47:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-12 13:47:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-12 13:47:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-12 13:47:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-12 13:47:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-12 13:47:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-12 13:47:35 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-12 13:47:35 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-12 13:47:35 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-12 13:47:35 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-12 13:47:36 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 13:47:36 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-12 13:47:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 13:47:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-12 13:47:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 13:47:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-12 13:47:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 13:47:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-12 13:47:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 13:47:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-12 13:47:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 13:47:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-12 13:47:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 13:47:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-12 14:15:43 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-12 14:16:35 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-12 14:16:35 --> The upload path does not appear to be valid.
-ERROR - 2018-12-12 14:16:40 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-12 14:16:40 --> 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 - 2018-12-12 14:16:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
diff --git a/application/logs/log-2018-12-13.php b/application/logs/log-2018-12-13.php
deleted file mode 100644
index 4bb1e131..00000000
--- a/application/logs/log-2018-12-13.php
+++ /dev/null
@@ -1,1605 +0,0 @@
-
-
-ERROR - 2018-12-13 07:03:19 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-13 07:03:45 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 07:03:45 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 07:03:52 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 07:03:52 --> 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 - 2018-12-13 07:03:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:03:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:03:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:03:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:03:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:03:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:03:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:03:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:03:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:03:56 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:03:56 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:03:56 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:03:56 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:03:56 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 07:03:56 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 07:03:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 07:03:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 07:03:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 07:03:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 07:03:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 07:03:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 07:03:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 07:03:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 07:03:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 07:03:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 07:03:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 07:03:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 07:05:12 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-13 07:05:47 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 07:05:47 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 07:05:48 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 07:05:48 --> 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 - 2018-12-13 07:05:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:05:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:05:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:05:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:05:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:05:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:05:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:05:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:05:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:05:51 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:05:51 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:05:51 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:05:51 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:05:52 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 07:05:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 07:05:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 07:05:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 07:05:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 07:05:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 07:05:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 07:05:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 07:05:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 07:05:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 07:05:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 07:05:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 07:05:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 07:05:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 07:06:30 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-13 07:06:47 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 07:06:47 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 07:06:48 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 07:06:48 --> 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 - 2018-12-13 07:06:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:06:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:06:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:06:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:06:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:06:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:06:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:06:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:06:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:06:51 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:06:51 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:06:51 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:06:51 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:06:51 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 07:06:51 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 07:06:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 07:06:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 07:06:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 07:06:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 07:06:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 07:06:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 07:06:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 07:06:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 07:06:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 07:06:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 07:06:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 07:06:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 07:07:24 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-13 07:07:35 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 07:07:35 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 07:07:36 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 07:07:36 --> 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 - 2018-12-13 07:07:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:07:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:07:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:07:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:07:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:07:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:07:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:07:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:07:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:08:25 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 07:08:25 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 07:08:25 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 07:08:25 --> 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 - 2018-12-13 07:08:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:08:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:08:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:08:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:08:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:08:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:08:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:08:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:08:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:09:22 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 07:09:22 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 07:09:22 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 07:09:22 --> 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 - 2018-12-13 07:09:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:09:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:09:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:09:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:09:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:09:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:09:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:09:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:09:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:11:50 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 07:11:50 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 07:11:51 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 07:11:51 --> 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 - 2018-12-13 07:11:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:11:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:11:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:11:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:11:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:11:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:11:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:11:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:11:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:16:49 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-13 07:18:45 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 07:18:45 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 07:18:45 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 07:18:45 --> 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 - 2018-12-13 07:18:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:18:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:18:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:18:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:18:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:18:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:18:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:18:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:18:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:37:18 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-13 07:37:51 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-13 07:38:09 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 07:38:09 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 07:38:09 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 07:38:09 --> 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 - 2018-12-13 07:38:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:38:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:38:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:38:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:38:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:38:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:38:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:38:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:38:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:38:14 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:38:14 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:38:14 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:38:14 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:38:14 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 07:38:14 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 07:38:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 07:38:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 07:38:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 07:38:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 07:38:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 07:38:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 07:38:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 07:38:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 07:38:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 07:38:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 07:38:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 07:38:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 07:38:42 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
-ERROR - 2018-12-13 07:38:42 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
-ERROR - 2018-12-13 07:38:52 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
-ERROR - 2018-12-13 07:38:52 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
-ERROR - 2018-12-13 07:38:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 07:38:52 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 07:38:52 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 07:38:53 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 07:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 07:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 07:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 07:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 07:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 07:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 07:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 07:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 07:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 07:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 07:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 07:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 07:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 07:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 07:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 07:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 07:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 07:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 07:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 07:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 07:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 07:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 07:38:54 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 07:38:54 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 07:39:29 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1939
-ERROR - 2018-12-13 07:39:29 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1939
-ERROR - 2018-12-13 07:39:29 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1948
-ERROR - 2018-12-13 07:39:29 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1948
-ERROR - 2018-12-13 07:39:29 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1948
-ERROR - 2018-12-13 07:39:29 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1948
-ERROR - 2018-12-13 07:39:29 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2014
-ERROR - 2018-12-13 07:39:29 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2014
-ERROR - 2018-12-13 07:39:29 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2014
-ERROR - 2018-12-13 07:39:29 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 07:39:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 07:39:29 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
-ERROR - 2018-12-13 07:39:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
-ERROR - 2018-12-13 07:39:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 07:39:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 07:39:29 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 07:39:29 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 07:39:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 07:39:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 07:39:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 07:39:29 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
-ERROR - 2018-12-13 07:39:29 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
-ERROR - 2018-12-13 07:39:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 07:39:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
-ERROR - 2018-12-13 07:39:29 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
-ERROR - 2018-12-13 07:39:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 07:39:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 07:39:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 07:39:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 07:39:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 07:39:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 07:39:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 07:39:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 07:39:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 07:39:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 07:39:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 07:39:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 07:39:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 07:39:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 07:39:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 07:39:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 07:39:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 07:39:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 07:39:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 07:39:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 07:39:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 07:39:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 07:39:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 07:39:30 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
-ERROR - 2018-12-13 07:39:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 07:39:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 07:39:30 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
-ERROR - 2018-12-13 07:39:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 07:39:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 07:39:30 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
-ERROR - 2018-12-13 07:39:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 07:39:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 07:39:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 07:39:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 07:39:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 07:39:30 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
-ERROR - 2018-12-13 07:39:30 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
-ERROR - 2018-12-13 07:39:30 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
-ERROR - 2018-12-13 07:39:30 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
-ERROR - 2018-12-13 07:39:30 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
-ERROR - 2018-12-13 07:39:30 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
-ERROR - 2018-12-13 07:39:31 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:39:31 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:39:31 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:39:31 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:39:31 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:39:31 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:39:31 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 07:39:31 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:39:31 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 07:39:31 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:39:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 07:39:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 07:39:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 07:39:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 07:39:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 07:39:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 07:39:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 07:39:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 07:39:31 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 07:39:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 07:39:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 07:39:31 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 07:39:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 07:39:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 07:39:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 07:39:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 07:39:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 07:39:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 07:39:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 07:39:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 07:39:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 07:39:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 07:39:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 07:39:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 07:39:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 07:39:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 07:39:40 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\banksettlement.php 4
-ERROR - 2018-12-13 07:39:40 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\banksettlement.php 4
-ERROR - 2018-12-13 07:39:40 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
-ERROR - 2018-12-13 07:39:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
-ERROR - 2018-12-13 07:39:40 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
-ERROR - 2018-12-13 07:39:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
-ERROR - 2018-12-13 07:39:40 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
-ERROR - 2018-12-13 07:39:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
-ERROR - 2018-12-13 07:39:40 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
-ERROR - 2018-12-13 07:39:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
-ERROR - 2018-12-13 07:39:40 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
-ERROR - 2018-12-13 07:39:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
-ERROR - 2018-12-13 07:39:40 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
-ERROR - 2018-12-13 07:39:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
-ERROR - 2018-12-13 07:39:40 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
-ERROR - 2018-12-13 07:39:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
-ERROR - 2018-12-13 07:39:40 --> Severity: Notice --> Undefined variable: t C:\xampp\htdocs\ria\application\views\banksettlement.php 278
-ERROR - 2018-12-13 07:39:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 278
-ERROR - 2018-12-13 07:39:40 --> Severity: Notice --> Undefined variable: rel C:\xampp\htdocs\ria\application\views\banksettlement.php 279
-ERROR - 2018-12-13 07:39:40 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\banksettlement.php 279
-ERROR - 2018-12-13 07:39:57 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:39:57 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:39:57 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:39:57 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:39:57 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 07:39:57 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 07:39:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 07:39:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 07:39:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 07:39:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 07:39:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 07:39:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 07:39:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 07:39:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 07:39:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 07:39:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 07:39:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 07:39:57 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 07:42:52 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-13 07:43:10 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 07:43:10 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 07:43:10 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 07:43:10 --> 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 - 2018-12-13 07:43:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:43:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:43:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:43:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:43:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:43:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:43:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:43:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:43:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:43:14 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:43:14 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:43:14 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:43:14 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:43:15 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 07:43:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 07:43:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 07:43:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 07:43:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 07:43:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 07:43:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 07:43:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 07:43:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 07:43:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 07:43:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 07:43:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 07:43:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 07:43:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 07:47:52 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-13 07:48:28 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 07:48:29 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 07:48:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 526
-ERROR - 2018-12-13 07:48:55 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:48:55 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:48:55 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:48:55 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:48:55 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 07:48:55 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 07:48:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 07:48:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 07:48:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 07:48:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 07:48:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 07:48:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 07:48:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 07:48:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 07:48:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 07:48:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 07:48:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 07:48:56 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 07:52:49 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-13 07:53:15 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 07:53:15 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 07:53:15 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 07:53:15 --> 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 - 2018-12-13 07:53:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:53:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:53:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:53:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:53:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:53:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:53:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:53:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:53:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:53:19 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:53:19 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:53:19 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:53:19 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:53:20 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 07:53:20 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 07:53:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 07:53:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 07:53:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 07:53:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 07:53:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 07:53:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 07:53:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 07:53:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 07:53:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 07:53:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 07:53:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 07:53:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 07:54:43 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-13 07:55:07 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 07:55:08 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 07:55:08 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 07:55:08 --> 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 - 2018-12-13 07:55:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:55:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:55:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:55:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:55:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:55:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:55:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:55:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:55:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:55:12 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:55:12 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:55:12 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:55:12 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 07:55:12 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 07:55:12 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 07:55:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 07:55:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 07:55:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 07:55:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 07:55:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 07:55:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 07:55:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 07:55:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 07:55:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 07:55:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 07:55:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 07:55:13 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 07:57:48 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-13 07:58:08 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 07:58:08 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 07:58:08 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 07:58:08 --> 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 - 2018-12-13 07:58:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:58:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:58:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:58:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:58:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:58:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:58:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:58:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 07:58:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 08:01:26 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 08:01:26 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 08:01:27 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 08:01:27 --> 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 - 2018-12-13 08:01:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 08:01:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 08:01:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 08:01:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 08:01:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 08:01:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 08:01:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 08:01:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 08:01:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 10:33:31 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-13 10:33:39 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-13 10:34:05 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 10:34:05 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 10:34:12 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 10:34:12 --> 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 - 2018-12-13 10:37:00 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 10:37:00 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 10:37:00 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 10:37:00 --> 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 - 2018-12-13 10:37:15 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-13 10:37:59 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 10:37:59 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 10:38:00 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 10:38:00 --> 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 - 2018-12-13 10:38:50 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-13 10:38:58 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 10:38:58 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 10:38:59 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 10:38:59 --> 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 - 2018-12-13 10:38:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 10:38:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 10:38:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 10:38:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 10:38:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 10:38:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 10:39:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 10:39:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 10:39:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 453
-ERROR - 2018-12-13 10:39:03 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 10:39:03 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 10:39:03 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 10:39:03 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1750
-ERROR - 2018-12-13 10:39:04 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 10:39:04 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 10:39:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 11:21:27 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-13 11:21:47 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 11:21:47 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 11:21:52 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 11:21:52 --> 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 - 2018-12-13 11:21:52 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 448
-ERROR - 2018-12-13 11:21:52 --> Severity: Warning --> number_format() expects parameter 1 to be float, string given C:\xampp\htdocs\ria\application\controllers\cashbook.php 450
-ERROR - 2018-12-13 11:21:52 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 452
-ERROR - 2018-12-13 11:21:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 11:21:52 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 448
-ERROR - 2018-12-13 11:21:52 --> Severity: Warning --> number_format() expects parameter 1 to be float, string given C:\xampp\htdocs\ria\application\controllers\cashbook.php 450
-ERROR - 2018-12-13 11:21:53 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 452
-ERROR - 2018-12-13 11:21:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 11:21:53 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 448
-ERROR - 2018-12-13 11:21:53 --> Severity: Warning --> number_format() expects parameter 1 to be float, string given C:\xampp\htdocs\ria\application\controllers\cashbook.php 450
-ERROR - 2018-12-13 11:21:53 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 452
-ERROR - 2018-12-13 11:21:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 11:21:53 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 448
-ERROR - 2018-12-13 11:21:53 --> Severity: Warning --> number_format() expects parameter 1 to be float, string given C:\xampp\htdocs\ria\application\controllers\cashbook.php 450
-ERROR - 2018-12-13 11:21:53 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 452
-ERROR - 2018-12-13 11:21:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 11:21:53 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 448
-ERROR - 2018-12-13 11:21:53 --> Severity: Warning --> number_format() expects parameter 1 to be float, string given C:\xampp\htdocs\ria\application\controllers\cashbook.php 450
-ERROR - 2018-12-13 11:21:53 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 452
-ERROR - 2018-12-13 11:21:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 11:21:54 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 448
-ERROR - 2018-12-13 11:21:54 --> Severity: Warning --> number_format() expects parameter 1 to be float, string given C:\xampp\htdocs\ria\application\controllers\cashbook.php 450
-ERROR - 2018-12-13 11:21:54 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 452
-ERROR - 2018-12-13 11:21:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 11:21:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 11:21:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 11:21:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 11:21:58 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1752
-ERROR - 2018-12-13 11:21:58 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1752
-ERROR - 2018-12-13 11:21:58 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1752
-ERROR - 2018-12-13 11:21:58 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1752
-ERROR - 2018-12-13 11:21:59 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 11:21:59 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 11:21:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 11:21:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 11:21:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 11:21:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 11:21:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 11:21:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 11:21:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 11:21:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 11:21:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 11:21:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 11:21:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 11:21:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 11:24:26 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-13 11:26:14 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 11:26:14 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 11:26:15 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 11:26:15 --> 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 - 2018-12-13 11:26:15 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 448
-ERROR - 2018-12-13 11:26:15 --> Severity: Warning --> number_format() expects parameter 1 to be float, string given C:\xampp\htdocs\ria\application\controllers\cashbook.php 450
-ERROR - 2018-12-13 11:26:15 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 452
-ERROR - 2018-12-13 11:26:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 11:26:15 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 448
-ERROR - 2018-12-13 11:26:15 --> Severity: Warning --> number_format() expects parameter 1 to be float, string given C:\xampp\htdocs\ria\application\controllers\cashbook.php 450
-ERROR - 2018-12-13 11:26:15 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 452
-ERROR - 2018-12-13 11:26:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 11:26:15 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 448
-ERROR - 2018-12-13 11:26:15 --> Severity: Warning --> number_format() expects parameter 1 to be float, string given C:\xampp\htdocs\ria\application\controllers\cashbook.php 450
-ERROR - 2018-12-13 11:26:16 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 452
-ERROR - 2018-12-13 11:26:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 11:26:16 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 448
-ERROR - 2018-12-13 11:26:16 --> Severity: Warning --> number_format() expects parameter 1 to be float, string given C:\xampp\htdocs\ria\application\controllers\cashbook.php 450
-ERROR - 2018-12-13 11:26:16 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 452
-ERROR - 2018-12-13 11:26:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 11:26:16 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 448
-ERROR - 2018-12-13 11:26:16 --> Severity: Warning --> number_format() expects parameter 1 to be float, string given C:\xampp\htdocs\ria\application\controllers\cashbook.php 450
-ERROR - 2018-12-13 11:26:16 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 452
-ERROR - 2018-12-13 11:26:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 11:26:16 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 448
-ERROR - 2018-12-13 11:26:16 --> Severity: Warning --> number_format() expects parameter 1 to be float, string given C:\xampp\htdocs\ria\application\controllers\cashbook.php 450
-ERROR - 2018-12-13 11:26:16 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 452
-ERROR - 2018-12-13 11:26:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 11:26:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 11:26:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 11:26:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 11:26:20 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1752
-ERROR - 2018-12-13 11:26:20 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1752
-ERROR - 2018-12-13 11:26:20 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1752
-ERROR - 2018-12-13 11:26:20 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1752
-ERROR - 2018-12-13 11:26:20 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 11:26:21 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 11:26:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 11:26:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 11:26:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 11:26:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 11:26:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 11:26:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 11:26:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 11:26:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 11:26:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 11:26:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 11:26:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 11:26:21 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 11:29:08 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-13 11:29:34 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 11:29:34 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 11:29:34 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 11:29:34 --> 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 - 2018-12-13 11:29:34 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 450
-ERROR - 2018-12-13 11:29:34 --> Severity: Warning --> number_format() expects parameter 1 to be float, string given C:\xampp\htdocs\ria\application\controllers\cashbook.php 452
-ERROR - 2018-12-13 11:29:34 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 454
-ERROR - 2018-12-13 11:29:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 457
-ERROR - 2018-12-13 11:29:34 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 450
-ERROR - 2018-12-13 11:29:35 --> Severity: Warning --> number_format() expects parameter 1 to be float, string given C:\xampp\htdocs\ria\application\controllers\cashbook.php 452
-ERROR - 2018-12-13 11:29:35 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 454
-ERROR - 2018-12-13 11:29:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 457
-ERROR - 2018-12-13 11:29:35 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 450
-ERROR - 2018-12-13 11:29:35 --> Severity: Warning --> number_format() expects parameter 1 to be float, string given C:\xampp\htdocs\ria\application\controllers\cashbook.php 452
-ERROR - 2018-12-13 11:29:35 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 454
-ERROR - 2018-12-13 11:29:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 457
-ERROR - 2018-12-13 11:29:35 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 450
-ERROR - 2018-12-13 11:29:35 --> Severity: Warning --> number_format() expects parameter 1 to be float, string given C:\xampp\htdocs\ria\application\controllers\cashbook.php 452
-ERROR - 2018-12-13 11:29:35 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 454
-ERROR - 2018-12-13 11:29:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 457
-ERROR - 2018-12-13 11:29:35 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 450
-ERROR - 2018-12-13 11:29:35 --> Severity: Warning --> number_format() expects parameter 1 to be float, string given C:\xampp\htdocs\ria\application\controllers\cashbook.php 452
-ERROR - 2018-12-13 11:29:35 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 454
-ERROR - 2018-12-13 11:29:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 457
-ERROR - 2018-12-13 11:29:36 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 450
-ERROR - 2018-12-13 11:29:36 --> Severity: Warning --> number_format() expects parameter 1 to be float, string given C:\xampp\htdocs\ria\application\controllers\cashbook.php 452
-ERROR - 2018-12-13 11:29:36 --> Severity: Notice --> A non well formed numeric value encountered C:\xampp\htdocs\ria\application\controllers\cashbook.php 454
-ERROR - 2018-12-13 11:29:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 457
-ERROR - 2018-12-13 11:29:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 457
-ERROR - 2018-12-13 11:29:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 457
-ERROR - 2018-12-13 11:29:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 457
-ERROR - 2018-12-13 12:07:54 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-13 12:08:03 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 12:08:04 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 12:08:08 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 12:08:08 --> 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 - 2018-12-13 12:08:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:08:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:08:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:08:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:08:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:08:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:08:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:08:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:08:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:09:34 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 12:09:34 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 12:09:35 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 12:09:35 --> 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 - 2018-12-13 12:09:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:09:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:09:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:09:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:09:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:09:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:09:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:09:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:09:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:09:55 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-13 12:10:14 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 12:10:15 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 12:10:15 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 12:10:15 --> 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 - 2018-12-13 12:10:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:10:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:10:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:10:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:10:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:10:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:10:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:10:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:10:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:10:25 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-13 12:10:26 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1755
-ERROR - 2018-12-13 12:10:26 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1755
-ERROR - 2018-12-13 12:10:26 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1755
-ERROR - 2018-12-13 12:10:26 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1755
-ERROR - 2018-12-13 12:10:27 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 12:10:27 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 12:10:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 12:10:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 12:10:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 12:10:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 12:10:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 12:10:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 12:10:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 12:10:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 12:10:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 12:10:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 12:10:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 12:10:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 12:10:37 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1755
-ERROR - 2018-12-13 12:10:37 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1755
-ERROR - 2018-12-13 12:10:37 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1755
-ERROR - 2018-12-13 12:10:37 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1755
-ERROR - 2018-12-13 12:10:37 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 12:10:37 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 12:10:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 12:10:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 12:10:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 12:10:37 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 12:10:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 12:10:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 12:10:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 12:10:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 12:10:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 12:10:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 12:10:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 12:10:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 12:10:38 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
-ERROR - 2018-12-13 12:10:47 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-13 12:11:08 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 12:11:08 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 12:11:09 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 12:11:09 --> 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 - 2018-12-13 12:11:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:11:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:11:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:11:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:11:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:11:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:11:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:11:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:11:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:12:00 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 12:12:01 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 12:12:01 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 12:12:01 --> 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 - 2018-12-13 12:12:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:12:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:12:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:12:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:12:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:12:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:12:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:12:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:12:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 458
-ERROR - 2018-12-13 12:12:04 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1755
-ERROR - 2018-12-13 12:12:04 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1755
-ERROR - 2018-12-13 12:12:04 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1755
-ERROR - 2018-12-13 12:12:05 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1755
-ERROR - 2018-12-13 12:12:05 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 12:12:05 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 12:12:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 12:12:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 12:12:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 12:12:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 12:12:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 12:12:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 12:12:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 12:12:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 12:12:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 12:12:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 12:12:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 12:12:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 12:25:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
-ERROR - 2018-12-13 12:25:16 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
-ERROR - 2018-12-13 12:25:33 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
-ERROR - 2018-12-13 12:25:33 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
-ERROR - 2018-12-13 12:25:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 12:25:33 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 12:25:33 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 12:25:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 12:25:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 12:25:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 12:25:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 12:25:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 12:25:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 12:25:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 12:25:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 12:25:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 12:25:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 12:25:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 12:25:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 12:25:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 12:25:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 12:25:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 12:25:34 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 12:25:34 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 12:25:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 12:25:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 12:25:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 12:25:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 12:25:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 12:25:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 12:25:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 12:25:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 12:25:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 12:25:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 12:25:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 12:25:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 12:25:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 12:25:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 12:25:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 12:25:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 12:25:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 12:25:35 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 12:25:35 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 12:25:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 12:25:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 12:25:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 12:25:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 12:25:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 12:25:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 12:25:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 12:25:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 12:25:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 12:25:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 12:25:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 12:25:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 12:25:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 12:25:36 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankdebit.php 167
-ERROR - 2018-12-13 12:25:36 --> Severity: Notice --> Undefined property: stdClass::$ReceivedQuantity C:\xampp\htdocs\ria\application\views\bankdebit.php 169
-ERROR - 2018-12-13 12:27:00 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1945
-ERROR - 2018-12-13 12:27:00 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1945
-ERROR - 2018-12-13 12:27:00 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1945
-ERROR - 2018-12-13 12:27:00 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1945
-ERROR - 2018-12-13 12:27:00 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1954
-ERROR - 2018-12-13 12:27:00 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1954
-ERROR - 2018-12-13 12:27:00 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1954
-ERROR - 2018-12-13 12:27:00 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1954
-ERROR - 2018-12-13 12:27:00 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 1954
-ERROR - 2018-12-13 12:27:00 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1954
-ERROR - 2018-12-13 12:27:00 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1954
-ERROR - 2018-12-13 12:27:00 --> Severity: Notice --> Undefined variable: balancetocleared C:\xampp\htdocs\ria\application\controllers\cashbook.php 1954
-ERROR - 2018-12-13 12:27:00 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2020
-ERROR - 2018-12-13 12:27:00 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2020
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2020
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2020
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\ria\application\controllers\cashbook.php 2020
-ERROR - 2018-12-13 12:27:01 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
-ERROR - 2018-12-13 12:27:01 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 12:27:01 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 12:27:01 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 12:27:01 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 12:27:01 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: bankreport C:\xampp\htdocs\ria\application\views\bankstatement.php 8
-ERROR - 2018-12-13 12:27:01 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 12:27:01 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
-ERROR - 2018-12-13 12:27:01 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
-ERROR - 2018-12-13 12:27:01 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 8
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 12:27:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 12:27:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 12:27:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 12:27:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 12:27:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 12:27:02 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
-ERROR - 2018-12-13 12:27:02 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
-ERROR - 2018-12-13 12:27:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 12:27:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 12:27:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 12:27:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 12:27:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 12:27:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 12:27:02 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
-ERROR - 2018-12-13 12:27:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 12:27:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 12:27:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 12:27:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 12:27:02 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
-ERROR - 2018-12-13 12:27:02 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
-ERROR - 2018-12-13 12:27:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 12:27:02 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
-ERROR - 2018-12-13 12:27:02 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
-ERROR - 2018-12-13 12:27:02 --> Severity: Notice --> Undefined variable: finyear C:\xampp\htdocs\ria\application\views\bankstatement.php 199
-ERROR - 2018-12-13 12:27:02 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
-ERROR - 2018-12-13 12:27:02 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
-ERROR - 2018-12-13 12:27:02 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
-ERROR - 2018-12-13 12:27:02 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
-ERROR - 2018-12-13 12:27:02 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 199
-ERROR - 2018-12-13 12:27:02 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
-ERROR - 2018-12-13 12:27:02 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
-ERROR - 2018-12-13 12:27:03 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-13 12:27:03 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-13 12:27:04 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-13 12:27:04 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-13 12:27:04 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-13 12:27:04 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-13 12:27:04 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-13 12:27:04 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-13 12:27:04 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-13 12:27:04 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-13 12:27:04 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-13 12:27:04 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-13 12:27:04 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 12:27:04 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-13 12:27:04 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-13 12:27:04 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 12:27:04 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-13 12:27:04 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-13 12:27:04 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-13 12:27:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 12:27:04 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-13 12:27:04 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-13 12:27:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 12:27:04 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-13 12:27:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 12:27:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 12:27:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 12:27:04 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 12:27:04 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 12:27:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 12:27:04 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 12:27:04 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 12:27:04 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 12:27:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 12:27:05 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 12:27:05 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 12:27:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 12:33:31 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-13 12:33:48 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 12:33:48 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 12:33:48 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 12:33:48 --> 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 - 2018-12-13 12:33:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 459
-ERROR - 2018-12-13 12:33:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 459
-ERROR - 2018-12-13 12:33:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 459
-ERROR - 2018-12-13 12:33:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 459
-ERROR - 2018-12-13 12:33:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 459
-ERROR - 2018-12-13 12:33:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 459
-ERROR - 2018-12-13 12:33:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 459
-ERROR - 2018-12-13 12:33:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 459
-ERROR - 2018-12-13 12:33:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 459
-ERROR - 2018-12-13 12:33:53 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-13 12:33:53 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-13 12:33:53 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-13 12:33:53 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-13 12:33:53 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 12:33:53 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 12:33:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 12:33:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 12:33:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 12:33:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 12:33:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 12:33:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 12:33:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 12:33:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 12:33:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 12:33:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 12:33:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 12:33:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 14:08:05 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-13 14:08:05 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-13 14:08:05 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-13 14:08:05 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-13 14:08:07 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 14:08:08 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 14:08:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 14:08:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 14:08:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 14:08:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 14:08:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 14:08:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 14:08:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 14:08:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 14:08:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 14:08:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 14:08:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 14:08:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 14:08:39 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-13 14:08:55 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 14:08:55 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 14:09:01 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 14:09:01 --> 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 - 2018-12-13 14:11:32 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 14:11:32 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 14:11:33 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 14:11:33 --> 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 - 2018-12-13 14:11:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 471
-ERROR - 2018-12-13 14:11:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 471
-ERROR - 2018-12-13 14:11:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 471
-ERROR - 2018-12-13 14:11:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 471
-ERROR - 2018-12-13 14:11:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 471
-ERROR - 2018-12-13 14:11:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 471
-ERROR - 2018-12-13 14:11:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 471
-ERROR - 2018-12-13 14:11:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 471
-ERROR - 2018-12-13 14:11:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 471
-ERROR - 2018-12-13 14:11:38 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1768
-ERROR - 2018-12-13 14:11:38 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1768
-ERROR - 2018-12-13 14:11:38 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1768
-ERROR - 2018-12-13 14:11:38 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1768
-ERROR - 2018-12-13 14:11:38 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 14:11:38 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 14:11:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 14:11:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 14:11:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 14:11:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 14:11:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 14:11:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 14:11:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 14:11:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 14:11:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 14:11:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 14:11:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 14:11:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 14:12:06 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-13 14:12:30 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 14:12:30 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 14:12:31 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 14:12:31 --> 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 - 2018-12-13 14:12:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 471
-ERROR - 2018-12-13 14:12:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 471
-ERROR - 2018-12-13 14:12:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 471
-ERROR - 2018-12-13 14:12:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 471
-ERROR - 2018-12-13 14:12:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 471
-ERROR - 2018-12-13 14:12:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 471
-ERROR - 2018-12-13 14:12:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 471
-ERROR - 2018-12-13 14:12:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 471
-ERROR - 2018-12-13 14:12:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 471
-ERROR - 2018-12-13 14:12:38 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1768
-ERROR - 2018-12-13 14:12:38 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1768
-ERROR - 2018-12-13 14:12:38 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1768
-ERROR - 2018-12-13 14:12:38 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1768
-ERROR - 2018-12-13 14:12:38 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 14:12:38 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 14:12:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 14:12:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 14:12:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 14:12:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 14:12:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 14:12:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 14:12:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 14:12:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 14:12:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 14:12:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 14:12:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 14:12:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 14:13:39 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-13 14:13:55 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 14:13:55 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 14:13:56 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 14:13:56 --> 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 - 2018-12-13 14:14:30 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 14:14:31 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 14:14:31 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 14:14:31 --> 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 - 2018-12-13 14:15:00 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 14:15:00 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 14:15:01 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 14:15:01 --> 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 - 2018-12-13 14:15:11 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 14:15:11 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 14:15:11 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 14:15:11 --> 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 - 2018-12-13 14:17:55 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 14:17:55 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 14:17:55 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 14:17:55 --> 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 - 2018-12-13 14:17:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 14:17:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 14:17:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 14:17:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 14:17:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 14:17:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 14:17:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 14:17:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 14:17:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 14:17:59 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1752
-ERROR - 2018-12-13 14:17:59 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1752
-ERROR - 2018-12-13 14:18:00 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1752
-ERROR - 2018-12-13 14:18:00 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1752
-ERROR - 2018-12-13 14:18:00 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 14:18:00 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 14:18:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 14:18:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 14:18:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 14:18:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 14:18:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 14:18:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 14:18:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 14:18:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 14:18:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 14:18:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 14:18:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 14:18:01 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 14:18:01 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
-ERROR - 2018-12-13 14:18:29 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-13 14:18:47 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 14:18:47 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 14:18:47 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 14:18:47 --> 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 - 2018-12-13 14:18:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 14:18:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 14:18:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 14:18:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 14:18:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 14:18:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 14:18:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 14:18:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 14:18:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 14:18:51 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1752
-ERROR - 2018-12-13 14:18:51 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1752
-ERROR - 2018-12-13 14:18:51 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1752
-ERROR - 2018-12-13 14:18:51 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1752
-ERROR - 2018-12-13 14:18:51 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 14:18:51 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 14:18:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 14:18:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 14:18:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 14:18:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 14:18:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 14:18:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 14:18:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 14:18:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 14:18:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 14:18:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 14:18:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 14:18:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 14:18:52 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
-ERROR - 2018-12-13 14:20:25 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-13 14:20:54 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-13 14:20:54 --> The upload path does not appear to be valid.
-ERROR - 2018-12-13 14:20:54 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-13 14:20:55 --> 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 - 2018-12-13 14:20:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 14:20:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 14:20:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 14:20:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 14:20:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 14:20:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 14:20:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 14:20:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 14:20:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-13 14:20:58 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1752
-ERROR - 2018-12-13 14:20:58 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1752
-ERROR - 2018-12-13 14:20:59 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1752
-ERROR - 2018-12-13 14:20:59 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1752
-ERROR - 2018-12-13 14:20:59 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 14:20:59 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-13 14:20:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 14:20:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-13 14:20:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 14:20:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-13 14:20:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 14:20:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-13 14:20:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 14:20:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-13 14:20:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 14:20:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-13 14:21:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-13 14:21:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
diff --git a/application/logs/log-2018-12-14.php b/application/logs/log-2018-12-14.php
deleted file mode 100644
index deef7a30..00000000
--- a/application/logs/log-2018-12-14.php
+++ /dev/null
@@ -1,1723 +0,0 @@
-
-
-ERROR - 2018-12-14 01:17:57 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-14 01:20:13 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-14 01:20:13 --> The upload path does not appear to be valid.
-ERROR - 2018-12-14 01:20:18 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-14 01:20:18 --> 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 - 2018-12-14 01:20:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-14 01:20:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-14 01:20:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-14 01:20:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-14 01:20:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-14 01:20:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-14 01:20:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-14 01:20:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-14 01:20:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 455
-ERROR - 2018-12-14 01:20:24 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1752
-ERROR - 2018-12-14 01:20:24 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1752
-ERROR - 2018-12-14 01:20:24 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1752
-ERROR - 2018-12-14 01:20:24 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1752
-ERROR - 2018-12-14 01:20:25 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 01:20:25 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 01:20:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 01:20:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 01:20:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 01:20:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 01:20:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 01:20:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 01:20:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 01:20:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 01:20:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 01:20:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 01:20:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 01:20:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 01:27:29 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-14 01:27:49 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-14 01:27:49 --> The upload path does not appear to be valid.
-ERROR - 2018-12-14 01:27:49 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-14 01:27:49 --> 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 - 2018-12-14 01:28:23 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-14 01:28:23 --> The upload path does not appear to be valid.
-ERROR - 2018-12-14 01:28:23 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-14 01:28:23 --> 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 - 2018-12-14 01:29:57 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-14 01:29:57 --> The upload path does not appear to be valid.
-ERROR - 2018-12-14 01:29:57 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-14 01:29:57 --> 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 - 2018-12-14 01:30:37 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-14 01:30:37 --> The upload path does not appear to be valid.
-ERROR - 2018-12-14 01:30:37 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-14 01:30:37 --> 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 - 2018-12-14 01:32:09 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-14 01:32:09 --> The upload path does not appear to be valid.
-ERROR - 2018-12-14 01:32:10 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-14 01:32:10 --> 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 - 2018-12-14 01:32:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 459
-ERROR - 2018-12-14 01:32:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 459
-ERROR - 2018-12-14 01:32:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 459
-ERROR - 2018-12-14 01:32:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 459
-ERROR - 2018-12-14 01:32:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 459
-ERROR - 2018-12-14 01:32:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 459
-ERROR - 2018-12-14 01:32:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 459
-ERROR - 2018-12-14 01:32:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 459
-ERROR - 2018-12-14 01:32:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 459
-ERROR - 2018-12-14 01:32:15 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-14 01:32:15 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-14 01:32:15 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-14 01:32:15 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-14 01:32:15 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 01:32:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 01:32:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 01:32:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 01:32:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 01:32:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 01:32:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 01:32:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 01:32:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 01:32:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 01:32:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 01:32:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 01:32:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 01:32:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 01:34:49 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-14 01:35:13 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-14 01:35:13 --> The upload path does not appear to be valid.
-ERROR - 2018-12-14 01:35:15 --> Severity: Notice --> Undefined variable: highestRow6 C:\xampp\htdocs\ria\application\controllers\cashbook.php 328
-ERROR - 2018-12-14 01:35:24 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-14 01:35:24 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-14 01:35:25 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-14 01:35:25 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1756
-ERROR - 2018-12-14 01:35:25 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 01:35:25 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 01:35:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 01:35:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 01:35:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 01:35:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 01:35:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 01:35:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 01:35:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 01:35:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 01:35:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 01:35:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 01:35:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 01:35:25 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 01:45:25 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-14 01:45:46 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-14 01:45:46 --> The upload path does not appear to be valid.
-ERROR - 2018-12-14 01:45:47 --> Severity: Notice --> Undefined variable: highestRow6 C:\xampp\htdocs\ria\application\controllers\cashbook.php 328
-ERROR - 2018-12-14 01:45:51 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1757
-ERROR - 2018-12-14 01:45:51 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1757
-ERROR - 2018-12-14 01:45:51 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1757
-ERROR - 2018-12-14 01:45:51 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1757
-ERROR - 2018-12-14 01:45:51 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 01:45:51 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 01:45:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 01:45:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 01:45:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 01:45:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 01:45:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 01:45:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 01:45:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 01:45:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 01:45:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 01:45:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 01:45:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 01:45:52 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 05:46:08 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-14 05:46:32 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-14 05:46:32 --> The upload path does not appear to be valid.
-ERROR - 2018-12-14 05:46:37 --> Severity: Notice --> Undefined variable: highestRow6 C:\xampp\htdocs\ria\application\controllers\cashbook.php 328
-ERROR - 2018-12-14 05:47:01 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-14 05:47:28 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-14 05:47:28 --> The upload path does not appear to be valid.
-ERROR - 2018-12-14 05:47:29 --> Severity: Notice --> Undefined variable: highestRow6 C:\xampp\htdocs\ria\application\controllers\cashbook.php 328
-ERROR - 2018-12-14 05:51:05 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-14 05:51:46 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-14 05:52:49 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-14 05:52:49 --> The upload path does not appear to be valid.
-ERROR - 2018-12-14 05:52:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:54 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:55 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:55 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:52:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 533
-ERROR - 2018-12-14 05:53:24 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1757
-ERROR - 2018-12-14 05:53:24 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1757
-ERROR - 2018-12-14 05:53:24 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1757
-ERROR - 2018-12-14 05:53:24 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1757
-ERROR - 2018-12-14 05:53:28 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 05:53:28 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 05:53:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 05:53:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 05:53:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 05:53:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 05:53:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 05:53:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 05:53:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 05:53:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 05:53:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 05:53:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 05:53:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 05:53:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 05:54:48 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-14 05:55:23 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-14 05:55:24 --> The upload path does not appear to be valid.
-ERROR - 2018-12-14 05:55:34 --> Severity: Notice --> Undefined variable: highestRow6 C:\xampp\htdocs\ria\application\controllers\cashbook.php 328
-ERROR - 2018-12-14 05:56:03 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1757
-ERROR - 2018-12-14 05:56:04 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1757
-ERROR - 2018-12-14 05:56:04 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1757
-ERROR - 2018-12-14 05:56:04 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1757
-ERROR - 2018-12-14 05:56:04 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 05:56:04 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 05:56:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 05:56:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 05:56:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 05:56:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 05:56:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 05:56:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 05:56:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 05:56:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 05:56:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 05:56:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 05:56:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 05:56:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 06:02:00 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-14 06:02:35 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-14 06:02:36 --> The upload path does not appear to be valid.
-ERROR - 2018-12-14 06:07:07 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-14 06:07:07 --> The upload path does not appear to be valid.
-ERROR - 2018-12-14 06:07:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 06:07:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 06:07:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 06:07:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 06:07:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 06:07:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 06:07:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 06:07:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 06:07:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 06:07:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 06:07:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 06:07:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 06:07:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 06:07:09 --> Severity: Notice --> Undefined variable: highestRow4sssssss C:\xampp\htdocs\ria\application\controllers\cashbook.php 338
-ERROR - 2018-12-14 06:12:52 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-14 06:12:52 --> The upload path does not appear to be valid.
-ERROR - 2018-12-14 06:12:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 06:12:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 06:12:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 06:12:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 06:12:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 06:12:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 06:12:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 06:12:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 06:12:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 06:12:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 06:12:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 06:12:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 06:12:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 06:12:54 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 06:12:59 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1761
-ERROR - 2018-12-14 06:12:59 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1761
-ERROR - 2018-12-14 06:12:59 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1761
-ERROR - 2018-12-14 06:12:59 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1761
-ERROR - 2018-12-14 06:12:59 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 06:12:59 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 06:13:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 06:13:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 06:13:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 06:13:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 06:13:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 06:13:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 06:13:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 06:13:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 06:13:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 06:13:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 06:13:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 06:13:00 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 06:55:36 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-14 07:00:34 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-14 07:02:55 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-14 07:02:55 --> The upload path does not appear to be valid.
-ERROR - 2018-12-14 07:03:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 07:03:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 07:03:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 07:03:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 07:03:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 07:03:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 07:03:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 07:03:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 07:03:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 07:03:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 07:03:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 07:03:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 07:03:02 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
-ERROR - 2018-12-14 07:03:02 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
-ERROR - 2018-12-14 07:03:02 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
-ERROR - 2018-12-14 07:03:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 07:03:02 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
-ERROR - 2018-12-14 07:03:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 389
-ERROR - 2018-12-14 07:03:03 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
-ERROR - 2018-12-14 07:03:03 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
-ERROR - 2018-12-14 07:03:03 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
-ERROR - 2018-12-14 07:03:08 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1759
-ERROR - 2018-12-14 07:03:08 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1759
-ERROR - 2018-12-14 07:03:08 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1759
-ERROR - 2018-12-14 07:03:08 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1759
-ERROR - 2018-12-14 07:03:08 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 07:03:08 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 07:03:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 07:03:08 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 07:03:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 07:03:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 07:03:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 07:03:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 07:03:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 07:03:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 07:03:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 07:03:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 07:03:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 07:03:09 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 07:47:18 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-14 07:47:48 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-14 07:47:48 --> The upload path does not appear to be valid.
-ERROR - 2018-12-14 07:47:54 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-14 07:47:54 --> 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 - 2018-12-14 07:49:26 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-14 07:49:26 --> The upload path does not appear to be valid.
-ERROR - 2018-12-14 07:49:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 390
-ERROR - 2018-12-14 07:49:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 390
-ERROR - 2018-12-14 07:49:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 390
-ERROR - 2018-12-14 07:49:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 390
-ERROR - 2018-12-14 07:49:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 390
-ERROR - 2018-12-14 07:49:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 390
-ERROR - 2018-12-14 07:49:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 390
-ERROR - 2018-12-14 07:49:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 390
-ERROR - 2018-12-14 07:49:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 390
-ERROR - 2018-12-14 07:49:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 390
-ERROR - 2018-12-14 07:49:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 390
-ERROR - 2018-12-14 07:49:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 390
-ERROR - 2018-12-14 07:49:28 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
-ERROR - 2018-12-14 07:49:28 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
-ERROR - 2018-12-14 07:49:28 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
-ERROR - 2018-12-14 07:49:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 390
-ERROR - 2018-12-14 07:49:28 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
-ERROR - 2018-12-14 07:49:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 390
-ERROR - 2018-12-14 07:49:28 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
-ERROR - 2018-12-14 07:49:28 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
-ERROR - 2018-12-14 07:49:28 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
-ERROR - 2018-12-14 07:59:38 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-14 07:59:39 --> The upload path does not appear to be valid.
-ERROR - 2018-12-14 08:02:12 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-14 08:02:28 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-14 08:02:28 --> The upload path does not appear to be valid.
-ERROR - 2018-12-14 08:02:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:02:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:02:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:02:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:02:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:02:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:02:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:02:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:02:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:02:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:02:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:04:22 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-14 08:04:22 --> The upload path does not appear to be valid.
-ERROR - 2018-12-14 08:04:22 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-14 08:04:22 --> The upload path does not appear to be valid.
-ERROR - 2018-12-14 08:04:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:04:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:04:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:04:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:04:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:04:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:04:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:04:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:04:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:04:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:04:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:04:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:04:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:04:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:04:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:04:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:04:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:04:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:04:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:04:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:04:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:04:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:04:52 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-14 08:05:12 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-14 08:05:12 --> The upload path does not appear to be valid.
-ERROR - 2018-12-14 08:05:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:05:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:05:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:05:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:05:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:05:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:05:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:05:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:05:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:05:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:05:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:05:52 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-14 08:05:52 --> The upload path does not appear to be valid.
-ERROR - 2018-12-14 08:05:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:05:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:05:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:05:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:05:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:05:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:05:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:05:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:05:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:05:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:05:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:05:56 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1765
-ERROR - 2018-12-14 08:05:57 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1765
-ERROR - 2018-12-14 08:05:57 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1765
-ERROR - 2018-12-14 08:05:57 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1765
-ERROR - 2018-12-14 08:05:57 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 08:05:57 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 08:05:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 08:05:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 08:05:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 08:05:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 08:05:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 08:05:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 08:05:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 08:05:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 08:05:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 08:05:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 08:05:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 08:05:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 08:06:52 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-14 08:07:09 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-14 08:07:09 --> The upload path does not appear to be valid.
-ERROR - 2018-12-14 08:07:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:07:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:07:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:07:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:07:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:07:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:07:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:07:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:07:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:07:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:07:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:07:14 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1765
-ERROR - 2018-12-14 08:07:14 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1765
-ERROR - 2018-12-14 08:07:14 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1765
-ERROR - 2018-12-14 08:07:14 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1765
-ERROR - 2018-12-14 08:07:14 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 08:07:14 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 08:07:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 08:07:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 08:07:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 08:07:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 08:07:14 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 08:07:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 08:07:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 08:07:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 08:07:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 08:07:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 08:07:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 08:07:15 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 08:07:39 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-14 08:07:56 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-14 08:07:56 --> The upload path does not appear to be valid.
-ERROR - 2018-12-14 08:07:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:07:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:07:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:07:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:07:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:07:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:07:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:07:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:07:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:07:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:07:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:08:01 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1765
-ERROR - 2018-12-14 08:08:01 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1765
-ERROR - 2018-12-14 08:08:01 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1765
-ERROR - 2018-12-14 08:08:01 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1765
-ERROR - 2018-12-14 08:08:02 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 08:08:02 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 08:08:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 08:08:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 08:08:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 08:08:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 08:08:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 08:08:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 08:08:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 08:08:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 08:08:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 08:08:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 08:08:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 08:08:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 08:11:10 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-14 08:11:29 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-14 08:11:29 --> The upload path does not appear to be valid.
-ERROR - 2018-12-14 08:11:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:11:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:11:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:11:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:11:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:11:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:11:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:11:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:11:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:11:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:11:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 395
-ERROR - 2018-12-14 08:11:35 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1765
-ERROR - 2018-12-14 08:11:35 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1765
-ERROR - 2018-12-14 08:11:35 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1765
-ERROR - 2018-12-14 08:11:35 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1765
-ERROR - 2018-12-14 08:11:35 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 08:11:35 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 08:11:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 08:11:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 08:11:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 08:11:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 08:11:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 08:11:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 08:11:35 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 08:11:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 08:11:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 08:11:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 08:11:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 08:11:36 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 08:22:02 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-14 08:22:28 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-14 08:22:28 --> The upload path does not appear to be valid.
-ERROR - 2018-12-14 08:22:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:50 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:50 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:51 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:51 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:52 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:53 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:22:58 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-14 08:22:58 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-14 08:22:58 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-14 08:22:58 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-14 08:22:58 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 08:22:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 08:22:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 08:22:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 08:22:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 08:22:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 08:22:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 08:22:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 08:22:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 08:22:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 08:22:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 08:22:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 08:22:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 08:22:59 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 08:25:03 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-14 08:25:24 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-14 08:25:24 --> The upload path does not appear to be valid.
-ERROR - 2018-12-14 08:25:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:46 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:46 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:47 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:47 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:48 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:48 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:49 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:49 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:25:54 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-14 08:25:54 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-14 08:25:54 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-14 08:25:54 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-14 08:25:54 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 08:25:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 08:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 08:25:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 08:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 08:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 08:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 08:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 08:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 08:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 08:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 08:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 08:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 08:25:55 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 08:29:44 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-14 08:30:08 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-14 08:30:08 --> The upload path does not appear to be valid.
-ERROR - 2018-12-14 08:30:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 535
-ERROR - 2018-12-14 08:30:35 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
-ERROR - 2018-12-14 08:30:35 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
-ERROR - 2018-12-14 08:30:35 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
-ERROR - 2018-12-14 08:30:40 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-14 08:30:40 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-14 08:30:40 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-14 08:30:40 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-14 08:30:40 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 08:30:41 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 08:30:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 08:30:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 08:30:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 08:30:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 08:30:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 08:30:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 08:30:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 08:30:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 08:30:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 08:30:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 08:30:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 08:30:41 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 08:41:56 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-14 08:42:19 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-14 08:42:20 --> The upload path does not appear to be valid.
-ERROR - 2018-12-14 08:42:20 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-14 08:42:20 --> 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 - 2018-12-14 08:42:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 460
-ERROR - 2018-12-14 08:42:20 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
-ERROR - 2018-12-14 08:42:20 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
-ERROR - 2018-12-14 08:42:20 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
-ERROR - 2018-12-14 08:42:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 460
-ERROR - 2018-12-14 08:42:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 460
-ERROR - 2018-12-14 08:42:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 460
-ERROR - 2018-12-14 08:42:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 460
-ERROR - 2018-12-14 08:42:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 460
-ERROR - 2018-12-14 08:42:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 460
-ERROR - 2018-12-14 08:42:25 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-14 08:42:25 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-14 08:42:25 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-14 08:42:25 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-14 08:42:25 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 08:42:25 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 08:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 08:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 08:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 08:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 08:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 08:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 08:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 08:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 08:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 08:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 08:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 08:42:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 09:48:46 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-14 09:49:17 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-14 09:49:18 --> The upload path does not appear to be valid.
-ERROR - 2018-12-14 09:49:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 392
-ERROR - 2018-12-14 09:49:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 392
-ERROR - 2018-12-14 09:49:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 392
-ERROR - 2018-12-14 09:49:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 392
-ERROR - 2018-12-14 09:49:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 392
-ERROR - 2018-12-14 09:49:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 392
-ERROR - 2018-12-14 09:49:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 392
-ERROR - 2018-12-14 09:49:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 392
-ERROR - 2018-12-14 09:49:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 392
-ERROR - 2018-12-14 09:49:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 392
-ERROR - 2018-12-14 09:49:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 392
-ERROR - 2018-12-14 09:49:29 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-14 09:49:29 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-14 09:49:29 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-14 09:49:29 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-14 09:49:30 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 09:49:30 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 09:49:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 09:49:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 09:49:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 09:49:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 09:49:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 09:49:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 09:49:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 09:49:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 09:49:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 09:49:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 09:49:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 09:49:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 09:53:57 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-14 09:54:02 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-14 09:54:17 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-14 09:54:17 --> The upload path does not appear to be valid.
-ERROR - 2018-12-14 09:54:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 392
-ERROR - 2018-12-14 09:54:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 392
-ERROR - 2018-12-14 09:54:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 392
-ERROR - 2018-12-14 09:54:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 392
-ERROR - 2018-12-14 09:54:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 392
-ERROR - 2018-12-14 09:54:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 392
-ERROR - 2018-12-14 09:54:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 392
-ERROR - 2018-12-14 09:54:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 392
-ERROR - 2018-12-14 09:54:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 392
-ERROR - 2018-12-14 09:54:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 392
-ERROR - 2018-12-14 09:54:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 392
-ERROR - 2018-12-14 09:54:22 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-14 09:54:22 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-14 09:54:22 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-14 09:54:22 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-14 09:54:23 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 09:54:23 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-14 09:54:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 09:54:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-14 09:54:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 09:54:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-14 09:54:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 09:54:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-14 09:54:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 09:54:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-14 09:54:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 09:54:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-14 09:54:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-14 09:54:23 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
diff --git a/application/logs/log-2018-12-15.php b/application/logs/log-2018-12-15.php
deleted file mode 100644
index 9d866b9f..00000000
--- a/application/logs/log-2018-12-15.php
+++ /dev/null
@@ -1,1517 +0,0 @@
-
-
-ERROR - 2018-12-15 07:57:30 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-15 07:58:13 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-15 07:58:13 --> The upload path does not appear to be valid.
-ERROR - 2018-12-15 07:58:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 392
-ERROR - 2018-12-15 07:58:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 392
-ERROR - 2018-12-15 07:58:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 392
-ERROR - 2018-12-15 07:58:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 392
-ERROR - 2018-12-15 07:58:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 392
-ERROR - 2018-12-15 07:58:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 392
-ERROR - 2018-12-15 07:58:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 392
-ERROR - 2018-12-15 07:58:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 392
-ERROR - 2018-12-15 07:58:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 392
-ERROR - 2018-12-15 07:58:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 392
-ERROR - 2018-12-15 07:58:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 392
-ERROR - 2018-12-15 07:58:26 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-15 07:58:26 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-15 07:58:26 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-15 07:58:26 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-15 07:58:27 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 07:58:27 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 07:58:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 07:58:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 07:58:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 07:58:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 07:58:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 07:58:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 07:58:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 07:58:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 07:58:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 07:58:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 07:58:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 07:58:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 08:05:02 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-15 08:05:02 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-15 08:05:02 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-15 08:05:02 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-15 08:05:03 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 08:05:03 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 08:05:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 08:05:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 08:05:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 08:05:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 08:05:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 08:05:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 08:05:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 08:05:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 08:05:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 08:05:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 08:05:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 08:05:03 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 08:16:01 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-15 08:16:01 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-15 08:16:01 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-15 08:16:01 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-15 08:16:02 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 08:16:02 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 08:16:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 08:16:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 08:16:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 08:16:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 08:16:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 08:16:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 08:16:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 08:16:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 08:16:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 08:16:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 08:16:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 08:16:02 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 08:16:02 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
-ERROR - 2018-12-15 08:16:13 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-15 08:16:31 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-15 08:16:31 --> The upload path does not appear to be valid.
-ERROR - 2018-12-15 08:16:33 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-15 08:16:33 --> 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 - 2018-12-15 08:16:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 460
-ERROR - 2018-12-15 08:16:33 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
-ERROR - 2018-12-15 08:16:33 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
-ERROR - 2018-12-15 08:16:33 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
-ERROR - 2018-12-15 08:16:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 460
-ERROR - 2018-12-15 08:16:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 460
-ERROR - 2018-12-15 08:16:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 460
-ERROR - 2018-12-15 08:16:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 460
-ERROR - 2018-12-15 08:16:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 460
-ERROR - 2018-12-15 08:16:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 460
-ERROR - 2018-12-15 08:16:38 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-15 08:16:38 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-15 08:16:38 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-15 08:16:38 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-15 08:16:39 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 08:16:39 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 08:16:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 08:16:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 08:16:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 08:16:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 08:16:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 08:16:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 08:16:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 08:16:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 08:16:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 08:16:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 08:16:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 08:16:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 08:58:26 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-15 08:59:53 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-15 08:59:53 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-15 08:59:53 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-15 08:59:53 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1830
-ERROR - 2018-12-15 08:59:54 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 08:59:54 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 08:59:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 08:59:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 08:59:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 08:59:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 08:59:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 08:59:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 08:59:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 08:59:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 08:59:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 08:59:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 08:59:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 08:59:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 10:13:51 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-15 10:14:18 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-15 10:14:18 --> The upload path does not appear to be valid.
-ERROR - 2018-12-15 10:14:25 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-15 10:14:25 --> 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 - 2018-12-15 10:14:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 459
-ERROR - 2018-12-15 10:14:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 459
-ERROR - 2018-12-15 10:14:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 459
-ERROR - 2018-12-15 10:14:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 459
-ERROR - 2018-12-15 10:14:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 459
-ERROR - 2018-12-15 10:14:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 459
-ERROR - 2018-12-15 10:14:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 459
-ERROR - 2018-12-15 10:14:31 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:14:31 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:14:31 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:14:31 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:14:32 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 10:14:32 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 10:14:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 10:14:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 10:14:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 10:14:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 10:14:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 10:14:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 10:14:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 10:14:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 10:14:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 10:14:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 10:14:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 10:14:32 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 10:16:56 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-15 10:17:19 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-15 10:17:19 --> The upload path does not appear to be valid.
-ERROR - 2018-12-15 10:17:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:38 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:39 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:40 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:41 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:42 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:42 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:43 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:43 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:44 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:44 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:45 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:45 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:17:45 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
-ERROR - 2018-12-15 10:17:45 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
-ERROR - 2018-12-15 10:17:45 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
-ERROR - 2018-12-15 10:17:50 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:17:50 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:17:50 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:17:50 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:17:50 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 10:17:51 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 10:17:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 10:17:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 10:17:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 10:17:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 10:17:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 10:17:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 10:17:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 10:17:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 10:17:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 10:17:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 10:17:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 10:17:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 10:22:06 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-15 10:22:24 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-15 10:22:24 --> The upload path does not appear to be valid.
-ERROR - 2018-12-15 10:22:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:22:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:22:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:22:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:22:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:22:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:22:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:22:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:22:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:22:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:22:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:22:30 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:22:30 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:22:30 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:22:30 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:22:31 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 10:22:31 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 10:22:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 10:22:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 10:22:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 10:22:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 10:22:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 10:22:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 10:22:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 10:22:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 10:22:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 10:22:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 10:22:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 10:22:31 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 10:24:15 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-15 10:24:32 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-15 10:24:32 --> The upload path does not appear to be valid.
-ERROR - 2018-12-15 10:24:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:24:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:24:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:24:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:24:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:24:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:24:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:24:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:24:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:24:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:24:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:24:38 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:24:38 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:24:38 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:24:38 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:24:38 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 10:24:38 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 10:24:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 10:24:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 10:24:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 10:24:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 10:24:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 10:24:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 10:24:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 10:24:38 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 10:24:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 10:24:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 10:24:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 10:24:39 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 10:31:29 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-15 10:31:55 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-15 10:31:55 --> The upload path does not appear to be valid.
-ERROR - 2018-12-15 10:31:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:31:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:31:56 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:31:56 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:31:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:31:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:31:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:31:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:31:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:31:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:31:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:31:57 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:31:57 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:31:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:31:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:31:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:31:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:31:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:31:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:31:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:31:58 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:31:58 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:31:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:31:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:31:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:31:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:31:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:31:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:31:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:31:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:31:59 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:31:59 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:00 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:01 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:02 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:02 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:03 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:03 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:04 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:04 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:05 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:05 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:06 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:06 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:07 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:08 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:08 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:09 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:09 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 10:32:22 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
-ERROR - 2018-12-15 10:32:22 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
-ERROR - 2018-12-15 10:32:22 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
-ERROR - 2018-12-15 10:32:28 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:32:28 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:32:28 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:32:28 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:32:28 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 10:32:28 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 10:32:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 10:32:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 10:32:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 10:32:28 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 10:32:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 10:32:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 10:32:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 10:32:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 10:32:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 10:32:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 10:32:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 10:32:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 10:32:55 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-15 10:33:38 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-15 10:33:38 --> The upload path does not appear to be valid.
-ERROR - 2018-12-15 10:33:38 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:33:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:33:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:33:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:33:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:33:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:33:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:33:39 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:33:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:33:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:33:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:33:43 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:33:43 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:33:43 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:33:43 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:33:44 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 10:33:44 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 10:33:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 10:33:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 10:33:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 10:33:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 10:33:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 10:33:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 10:33:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 10:33:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 10:33:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 10:33:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 10:33:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 10:33:44 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 10:35:58 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-15 10:36:21 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-15 10:36:21 --> The upload path does not appear to be valid.
-ERROR - 2018-12-15 10:36:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:36:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:36:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:36:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:36:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:36:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:36:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:36:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:36:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:36:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:36:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:36:26 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:36:26 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:36:26 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:36:26 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:36:26 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 10:36:26 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 10:36:26 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 10:36:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 10:36:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 10:36:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 10:36:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 10:36:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 10:36:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 10:36:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 10:36:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 10:36:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 10:36:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 10:36:27 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 10:37:50 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:37:50 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:37:50 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:37:50 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:37:50 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 10:37:50 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 10:37:50 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 10:37:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 10:37:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 10:37:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 10:37:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 10:37:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 10:37:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 10:37:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 10:37:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 10:37:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 10:37:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 10:37:51 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 10:37:51 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
-ERROR - 2018-12-15 10:37:52 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-15 10:37:54 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-15 10:37:54 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-15 10:37:55 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-15 10:38:11 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-15 10:38:11 --> The upload path does not appear to be valid.
-ERROR - 2018-12-15 10:38:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:38:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:38:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:38:16 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:38:16 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:38:16 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:38:16 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:38:16 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 10:38:16 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 10:38:16 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 10:38:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 10:38:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 10:38:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 10:38:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 10:38:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 10:38:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 10:38:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 10:38:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 10:38:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 10:38:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 10:38:17 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 10:39:48 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-15 10:40:06 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-15 10:40:06 --> The upload path does not appear to be valid.
-ERROR - 2018-12-15 10:40:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:40:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:40:07 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:40:10 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:40:10 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:40:11 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:40:11 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:40:11 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 10:40:11 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 10:40:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 10:40:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 10:40:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 10:40:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 10:40:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 10:40:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 10:40:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 10:40:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 10:40:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 10:40:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 10:40:11 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 10:40:12 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 10:41:53 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-15 10:42:12 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-15 10:42:13 --> The upload path does not appear to be valid.
-ERROR - 2018-12-15 10:42:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:42:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:42:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:42:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:42:13 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
-ERROR - 2018-12-15 10:42:14 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
-ERROR - 2018-12-15 10:42:14 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
-ERROR - 2018-12-15 10:42:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:42:14 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
-ERROR - 2018-12-15 10:42:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:42:14 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
-ERROR - 2018-12-15 10:42:14 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
-ERROR - 2018-12-15 10:42:14 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
-ERROR - 2018-12-15 10:42:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:42:14 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
-ERROR - 2018-12-15 10:42:14 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
-ERROR - 2018-12-15 10:42:14 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
-ERROR - 2018-12-15 10:42:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:42:14 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
-ERROR - 2018-12-15 10:42:15 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
-ERROR - 2018-12-15 10:42:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:42:15 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
-ERROR - 2018-12-15 10:42:15 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
-ERROR - 2018-12-15 10:42:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 10:42:15 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
-ERROR - 2018-12-15 10:42:15 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
-ERROR - 2018-12-15 10:42:18 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:42:19 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:42:19 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:42:19 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:42:19 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 10:42:19 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 10:42:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 10:42:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 10:42:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 10:42:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 10:42:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 10:42:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 10:42:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 10:42:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 10:42:19 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 10:42:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 10:42:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 10:42:20 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 10:48:00 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-15 10:48:22 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-15 10:48:22 --> The upload path does not appear to be valid.
-ERROR - 2018-12-15 10:48:23 --> Severity: Warning --> DOMDocument::loadHTML(): Attribute width redefined in Entity, line: 21 C:\xampp\htdocs\ria\application\third_party\PHPExcel\Reader\HTML.php 495
-ERROR - 2018-12-15 10:48:23 --> 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 - 2018-12-15 10:48:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 459
-ERROR - 2018-12-15 10:48:23 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
-ERROR - 2018-12-15 10:48:23 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
-ERROR - 2018-12-15 10:48:23 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
-ERROR - 2018-12-15 10:48:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 459
-ERROR - 2018-12-15 10:48:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 459
-ERROR - 2018-12-15 10:48:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 459
-ERROR - 2018-12-15 10:48:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 459
-ERROR - 2018-12-15 10:48:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 459
-ERROR - 2018-12-15 10:48:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 459
-ERROR - 2018-12-15 10:48:28 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:48:28 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:48:28 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:48:28 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 10:48:28 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 10:48:28 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 10:48:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 10:48:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 10:48:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 10:48:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 10:48:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 10:48:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 10:48:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 10:48:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 10:48:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 10:48:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 10:48:29 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 10:48:30 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 11:04:39 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-15 11:04:59 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-15 11:04:59 --> The upload path does not appear to be valid.
-ERROR - 2018-12-15 11:05:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:05:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:05:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:05:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:05:00 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:05:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:05:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:05:01 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:05:05 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 11:05:05 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 11:05:05 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 11:05:05 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 11:05:06 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 11:05:06 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 11:05:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 11:05:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 11:05:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 11:05:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 11:05:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 11:05:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 11:05:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 11:05:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 11:05:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 11:05:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 11:05:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 11:05:06 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 11:09:17 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-15 11:09:40 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-15 11:10:10 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-15 11:10:10 --> The upload path does not appear to be valid.
-ERROR - 2018-12-15 11:10:10 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:10 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:11 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:11 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:12 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:12 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:13 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:13 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:14 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:14 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:15 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:15 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:16 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:16 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:17 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:18 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:19 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:20 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:20 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:21 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:21 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:22 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:22 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:23 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:23 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:24 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:24 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:25 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:25 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:26 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:26 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:27 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:27 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:28 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:28 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:29 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:29 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:30 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:30 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:31 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:31 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:32 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:32 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:33 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:33 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:34 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:34 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:35 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:35 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:36 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:36 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:37 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:37 --> Severity: Notice --> Undefined variable: chqno C:\xampp\htdocs\ria\application\controllers\cashbook.php 534
-ERROR - 2018-12-15 11:10:37 --> Severity: Notice --> Undefined index: reportdate C:\xampp\htdocs\ria\application\models\cashbook_model.php 392
-ERROR - 2018-12-15 11:10:37 --> Severity: Notice --> Undefined index: Narration C:\xampp\htdocs\ria\application\models\cashbook_model.php 393
-ERROR - 2018-12-15 11:10:37 --> Severity: Notice --> Undefined index: Balance C:\xampp\htdocs\ria\application\models\cashbook_model.php 394
-ERROR - 2018-12-15 11:10:42 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 11:10:42 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 11:10:42 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 11:10:42 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 11:10:42 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 11:10:42 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 11:10:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 11:10:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 11:10:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 11:10:42 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 11:10:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 11:10:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 11:10:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 11:10:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 11:10:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 11:10:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 11:10:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 11:10:43 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 11:11:05 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
-ERROR - 2018-12-15 11:11:06 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
-ERROR - 2018-12-15 11:11:06 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
-ERROR - 2018-12-15 11:11:06 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
-ERROR - 2018-12-15 11:11:32 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
-ERROR - 2018-12-15 11:11:32 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoice.php 2
-ERROR - 2018-12-15 11:11:32 --> Severity: Notice --> Undefined variable: cash C:\xampp\htdocs\ria\application\views\bankinvoice.php 84
-ERROR - 2018-12-15 11:11:32 --> Severity: Notice --> Undefined variable: bankid C:\xampp\htdocs\ria\application\views\bankinvoice.php 86
-ERROR - 2018-12-15 11:11:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
-ERROR - 2018-12-15 11:11:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
-ERROR - 2018-12-15 11:11:32 --> Severity: Notice --> Undefined property: stdClass::$Paymentstatus C:\xampp\htdocs\ria\application\views\bankinvoice.php 180
-ERROR - 2018-12-15 11:11:32 --> Severity: Notice --> Undefined property: stdClass::$Balancetopay C:\xampp\htdocs\ria\application\views\bankinvoice.php 181
-ERROR - 2018-12-15 11:12:20 --> Severity: Notice --> Undefined variable: balancetoreceived C:\xampp\htdocs\ria\application\controllers\cashbook.php 2146
-ERROR - 2018-12-15 11:12:20 --> Severity: Notice --> Undefined variable: clearedblnce C:\xampp\htdocs\ria\application\controllers\cashbook.php 2157
-ERROR - 2018-12-15 11:12:20 --> Severity: Notice --> Undefined variable: balancetoreceived C:\xampp\htdocs\ria\application\controllers\cashbook.php 2157
-ERROR - 2018-12-15 11:12:21 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 11:12:21 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 11:12:21 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 11:12:21 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 11:12:21 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 11:12:21 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 11:12:21 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 11:12:21 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 11:12:22 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 11:12:22 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 11:12:22 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 11:12:22 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 11:12:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 11:12:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 11:12:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 11:12:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 11:12:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 11:12:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 11:12:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 11:12:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 11:12:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 11:12:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 11:12:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 11:12:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 11:12:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 11:12:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 11:12:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 11:12:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 11:12:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 11:12:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 11:12:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 11:12:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 11:12:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 11:12:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 11:12:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 11:12:22 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 11:12:46 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
-ERROR - 2018-12-15 11:12:46 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 7
-ERROR - 2018-12-15 11:12:46 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
-ERROR - 2018-12-15 11:12:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
-ERROR - 2018-12-15 11:12:46 --> Severity: Notice --> Undefined variable: record C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
-ERROR - 2018-12-15 11:12:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\ria\application\views\bankinvoicesettlement.php 178
-ERROR - 2018-12-15 11:16:17 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankdebit.php 2
-ERROR - 2018-12-15 11:16:17 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankdebit.php 2
-ERROR - 2018-12-15 11:28:32 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-15 11:28:51 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-15 11:28:51 --> The upload path does not appear to be valid.
-ERROR - 2018-12-15 11:28:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:28:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:28:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:28:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:28:52 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:28:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:28:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:28:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:28:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:28:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:28:53 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:28:57 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 11:28:57 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 11:28:57 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 11:28:57 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 11:28:58 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 11:28:58 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 11:28:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 11:28:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 11:28:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 11:28:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 11:28:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 11:28:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 11:28:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 11:28:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 11:28:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 11:28:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 11:28:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 11:28:58 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 11:31:46 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-15 11:32:16 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-15 11:32:16 --> The upload path does not appear to be valid.
-ERROR - 2018-12-15 11:32:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:32:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:32:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:32:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:32:17 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:32:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:32:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:32:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:32:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:32:18 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:32:19 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:32:53 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 11:32:53 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 11:32:53 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 11:32:53 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 11:32:53 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 11:32:53 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 11:32:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 11:32:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 11:32:53 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 11:32:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 11:32:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 11:32:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 11:32:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 11:32:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 11:32:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 11:32:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 11:32:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 11:32:54 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 11:55:04 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 11:55:04 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 11:55:04 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 11:55:04 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 11:55:04 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 11:55:04 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 11:55:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 11:55:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 11:55:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 11:55:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 11:55:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 11:55:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 11:55:04 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 11:55:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 11:55:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 11:55:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 11:55:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 11:55:05 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 11:55:05 --> Severity: Notice --> Undefined variable: Bankname C:\xampp\htdocs\ria\application\views\bankstatement.php 237
-ERROR - 2018-12-15 11:55:15 --> Severity: Notice --> Undefined variable: creditdebit C:\xampp\htdocs\ria\application\views\bankingfile.php 132
-ERROR - 2018-12-15 11:55:39 --> Severity: Notice --> Undefined variable: filename C:\xampp\htdocs\ria\application\controllers\cashbook.php 236
-ERROR - 2018-12-15 11:55:39 --> The upload path does not appear to be valid.
-ERROR - 2018-12-15 11:55:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:55:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:55:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:55:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:55:40 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:55:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:55:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:55:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:55:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:55:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:55:41 --> Severity: Notice --> Undefined variable: cod C:\xampp\htdocs\ria\application\controllers\cashbook.php 391
-ERROR - 2018-12-15 11:55:46 --> Severity: Notice --> Undefined variable: fdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 11:55:46 --> Severity: Notice --> Undefined variable: tdate C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 11:55:46 --> Severity: Notice --> Undefined variable: fa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 11:55:46 --> Severity: Notice --> Undefined variable: aa C:\xampp\htdocs\ria\application\controllers\cashbook.php 1829
-ERROR - 2018-12-15 11:55:46 --> Severity: Notice --> Undefined variable: financialyear C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 11:55:46 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\ria\application\views\bankstatement.php 2
-ERROR - 2018-12-15 11:55:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 11:55:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 87
-ERROR - 2018-12-15 11:55:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 11:55:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 88
-ERROR - 2018-12-15 11:55:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 11:55:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 89
-ERROR - 2018-12-15 11:55:46 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 11:55:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 139
-ERROR - 2018-12-15 11:55:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 11:55:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 140
-ERROR - 2018-12-15 11:55:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
-ERROR - 2018-12-15 11:55:47 --> Severity: Notice --> Undefined variable: i C:\xampp\htdocs\ria\application\views\bankstatement.php 141
diff --git a/application/logs/log-2019-01-04.php b/application/logs/log-2019-01-04.php
deleted file mode 100644
index b49b5cd2..00000000
--- a/application/logs/log-2019-01-04.php
+++ /dev/null
@@ -1,1555 +0,0 @@
-
-
-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
deleted file mode 100644
index b1463a88..00000000
--- a/application/logs/log-2019-01-05.php
+++ /dev/null
@@ -1,3904 +0,0 @@
-
-
-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
deleted file mode 100644
index c399c97d..00000000
--- a/application/logs/log-2019-01-07.php
+++ /dev/null
@@ -1,1550 +0,0 @@
-
-
-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
deleted file mode 100644
index 4bdb5abd..00000000
--- a/application/logs/log-2019-01-08.php
+++ /dev/null
@@ -1,1935 +0,0 @@
-
-
-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
deleted file mode 100644
index 54c0a03b..00000000
--- a/application/logs/log-2019-01-09.php
+++ /dev/null
@@ -1,16865 +0,0 @@
-
-
-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
deleted file mode 100644
index 735f3397..00000000
--- a/application/logs/log-2019-01-10.php
+++ /dev/null
@@ -1,27837 +0,0 @@
-
-
-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 -->