diff --git a/app/Views/file_list.php b/app/Views/file_list.php
index 2086aeef..5e2f79dc 100755
--- a/app/Views/file_list.php
+++ b/app/Views/file_list.php
@@ -10,6 +10,8 @@
.dataTables_length label {height: 21px !important;}
+.column-header { margin-right: 10px; /* Adjust this value as needed */ }
+
@@ -22,18 +24,19 @@
+
- | S.No |
- File name |
- Client |
- Client Branch |
- Policy |
- Event |
- User/Time |
- Status |
- Action |
+ S.No |
+ File name |
+ Client |
+ Client Branch |
+ Policy |
+ Event |
+ User/Time |
+ Status |
+ Action |
@@ -115,6 +118,7 @@
+
diff --git a/app/Views/notification.php b/app/Views/notification.php
index ed1c2364..b346857a 100755
--- a/app/Views/notification.php
+++ b/app/Views/notification.php
@@ -428,7 +428,7 @@
Action |
-
+
@@ -1445,7 +1445,10 @@
if (template_name == 'member_welcome_mail') {
container = document.getElementById('attachment_tbody');
}
- else {
+ else if (template_name == 'member_common_mail') {
+ container = document.getElementById('attachment_tbody_common');
+ }
+ else {
container = document.getElementById('attachment_tbody_ecard');
}
@@ -1512,7 +1515,11 @@
function removeHTMLInput(element) {
if (template_name == 'member_welcome_mail') {
const container = document.getElementById('attachment_tbody');
- } else {
+ }
+ else if (template_name == 'member_common_mail') {
+ container = document.getElementById('attachment_tbody_common');
+ }
+ else {
const container = document.getElementById('attachment_tbody_ecard');
}
const rows = container.querySelectorAll('.dynamic-form-row');
diff --git a/app/Views/ticket_form_gmc.php b/app/Views/ticket_form_gmc.php
index 7428ab32..dc28a793 100644
--- a/app/Views/ticket_form_gmc.php
+++ b/app/Views/ticket_form_gmc.php
@@ -566,11 +566,11 @@
allowInput: false
});
+ updateClaimStatusDisplay("= isset($ticket_data['claim_status_id']) ? $ticket_data['claim_status_id'] : 0 ?>")
var extraFields = = json_encode(isset($extra_fields) ? $extra_fields : []); ?>;
GlobelExtraFields = extraFields;
console.log("extraFields", extraFields);
claimStatusFieldChanges(extraFields);
- updateClaimStatusDisplay("= isset($ticket_data['claim_status_id']) ? $ticket_data['claim_status_id'] : 0 ?>")
})
diff --git a/app/Views/vehicle_type_master_list.php b/app/Views/vehicle_type_master_list.php
index 3f4faa46..a2001b8c 100755
--- a/app/Views/vehicle_type_master_list.php
+++ b/app/Views/vehicle_type_master_list.php
@@ -97,7 +97,7 @@
// dom: "<'row'<'col-sm-7'f><'col-sm-5 text-right'B>>" + // Filter left, buttons right
// "<'row'<'col-sm-12'tr>>" +
// "<'row'<'col-sm-5'i><'col-sm-7'p>>", // Pagination at the bottom, without page length selector
- dom: "<'row'<'col-12 d-flex justify-content-between align-items-center'<'datatable-search dataTables_filter'f><'datatable-buttons dt-buttons'B>>>" +
+ dom: "<'row'<'col-sm-7'f><'col-sm-5 text-right'B>>" +
"<'row'<'col-sm-12'tr>>" +
"<'row align-items-center'<'col-5 text-start'i><'col-7 d-flex justify-content-end align-items-center'<'me-2'l>p>>",
lengthMenu: [[10, 20, 50, 100], [10, 20, 50, 100]],