Skip to content
Snippets Groups Projects
Commit 52ed7e3e authored by Damien's avatar Damien
Browse files

[FEAT] #5233 Fix allSigned + remove welcome header

parent 463cfe42
No related branches found
No related tags found
No related merge requests found
...@@ -43,7 +43,7 @@ $_SESSION['location_bar']['level4']['label'] = ""; ...@@ -43,7 +43,7 @@ $_SESSION['location_bar']['level4']['label'] = "";
$_SESSION['location_bar']['level4']['id'] = ""; $_SESSION['location_bar']['level4']['id'] = "";
$core_tools->manage_location_bar(); $core_tools->manage_location_bar();
?> ?>
<h1><i class="fa fa-ellipsis-v fa-2x" style="opacity: 0"></i><?php echo _WELCOME;?></h1> <h1 id="homePageWelcomeTitle"><i class="fa fa-ellipsis-v fa-2x" style="opacity: 0"></i><?php echo _WELCOME;?></h1>
<div id="inner_content" class="clearfix"> <div id="inner_content" class="clearfix">
<?php <?php
$core_tools->execute_app_services($_SESSION['app_services'], "welcome.php"); $core_tools->execute_app_services($_SESSION['app_services'], "welcome.php");
......
...@@ -174,7 +174,7 @@ class VisaController ...@@ -174,7 +174,7 @@ class VisaController
} }
$attachmentsInResList = \ResModel::getAvailableLinkedAttachmentsNotIn([ $attachmentsInResList = \ResModel::getAvailableLinkedAttachmentsNotIn([
'resIdMaster' => $value['res_id'], 'resIdMaster' => $value['res_id'],
'notIn' => ['incoming_mail_attachment', 'print_folder'], 'notIn' => ['incoming_mail_attachment', 'print_folder', 'converted_pdf', 'signed_response'],
'select' => ['status'] 'select' => ['status']
]); ]);
$allSigned = !empty($attachmentsInResList); $allSigned = !empty($attachmentsInResList);
......
...@@ -13,6 +13,7 @@ mainApp.controller("visaCtrl", ["$scope", "$http", "$routeParams", "$interval", ...@@ -13,6 +13,7 @@ mainApp.controller("visaCtrl", ["$scope", "$http", "$routeParams", "$interval",
$j('#inner_content').remove(); $j('#inner_content').remove();
$j('#header').remove(); $j('#header').remove();
$j('#viewBasketsTitle').remove(); $j('#viewBasketsTitle').remove();
$j('#homePageWelcomeTitle').remove();
$j('#container').width("98%"); $j('#container').width("98%");
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment