I resolved the error to removed the reportTable SOLVED
I added to validation in reportTable Old
This commit is contained in:
@@ -362,8 +362,13 @@ class pmTablesProxy extends HttpProxyController
|
|||||||
$table = $at->load( $row->id );
|
$table = $at->load( $row->id );
|
||||||
|
|
||||||
if (! isset( $table )) {
|
if (! isset( $table )) {
|
||||||
|
require_once 'classes/model/ReportTable.php';
|
||||||
|
$rtOld = new ReportTable();
|
||||||
|
$existReportTableOld = $rtOld->load( $row->id );
|
||||||
|
if (count($existReportTableOld) == 0) {
|
||||||
throw new Exception( "Table does not exist... skipped!\n" );
|
throw new Exception( "Table does not exist... skipped!\n" );
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if ($row->type == 'CLASSIC') {
|
if ($row->type == 'CLASSIC') {
|
||||||
G::LoadClass( 'reportTables' );
|
G::LoadClass( 'reportTables' );
|
||||||
|
|||||||
Reference in New Issue
Block a user