FIX_ISSUE

This commit is contained in:
VENKATESHWARAN 2025-12-29 15:37:22 +05:30
parent c5eaeb1833
commit 5982bedb0d
2 changed files with 2 additions and 1 deletions

View File

@ -3921,6 +3921,7 @@ class EmployeeRestController extends AdminController
1 => 2,
6 => 3,
7 => 4,
72 => 72,
];
foreach ($policy_type_ids as $value) {

View File

@ -1157,7 +1157,7 @@
$.each(data, function(index, item) {
// console.log(item);
if (ticket_type == 1 && item.policy_type_id != 1) {
if ((ticket_type == 1 && item.policy_type_id != 1) || (ticket_type == 72 && item.policy_type_id == 72)) {
$('#emp_client_policy').append($('<option>', {
value: item.client_policy_value,
text: item.client_policy_name,