CHANGE_UI_FIX - VADIVEL J 2025-10-10

This commit is contained in:
vadivelJ96 2025-10-10 09:48:06 +05:30
parent 11bef9921f
commit bbbd968431

View File

@ -1052,6 +1052,9 @@
$('#auto_fetch_branch').html(`<option value="">Select Branch</option>`);
$('.loader').fadeIn();
$('.loader-mask').fadeIn();
$.ajax({
url: "<?php echo base_url('client/branch/auto_fetch_branch'); ?>",
type: "POST",
@ -1076,6 +1079,8 @@
console.error("Error occurred:", status, error);
},
complete: function() {
$('.loader').fadeOut();
$('.loader-mask').delay(350).fadeOut('slow');
console.log("auto_fetch_client call is completed..!!");
}
});