Merge branch 'dev' of bitbucket.org:jubilian/nhance into dev

This commit is contained in:
VENKATESHWARAN 2025-11-01 12:43:36 +05:30
commit 42b42d92d5
2 changed files with 7 additions and 4 deletions

View File

@ -3283,6 +3283,8 @@
$where ?? '' $where ?? ''
); );
$data['list_new'] = true;
// 🧩 Load View // 🧩 Load View
$this->loadLayout('report_bds_filter', $data); $this->loadLayout('report_bds_filter', $data);
} }

View File

@ -148,10 +148,11 @@
<!-- end page title --> <!-- end page title -->
<div id="file_list"> <div id="file_list">
<?php <?php
include('report_bds.php'); if( isset($list_new) && $list_new ){
?> include('report_bds_new.php');
<?php }else{
// include('report_bds_new.php'); include('report_bds.php');
}
?> ?>
</div> </div>
</div> </div>