This commit is contained in:
ivancheahhh
2024-01-03 19:36:13 -07:00
parent 0b88ebad20
commit 21fc8f2c95
110 changed files with 36947 additions and 46 deletions

View File

@@ -145,4 +145,12 @@ function uploadVehicleFilesAsync(event) {
}
}
});
}
function getVehicleReport() {
$.get(`/Vehicle/GetReportPartialView`, function (data) {
if (data) {
$("#bulkImportModalContent").html(data);
$("#bulkImportModal").modal('show');
}
})
}