135 lines
4.9 KiB
JavaScript
135 lines
4.9 KiB
JavaScript
function showAddSupplyRecordModal() {
|
|
$.get('/Vehicle/GetAddSupplyRecordPartialView', function (data) {
|
|
if (data) {
|
|
$("#supplyRecordModalContent").html(data);
|
|
//initiate datepicker
|
|
initDatePicker($('#supplyRecordDate'));
|
|
initTagSelector($("#supplyRecordTag"));
|
|
$('#supplyRecordModal').modal('show');
|
|
}
|
|
});
|
|
}
|
|
function showEditSupplyRecordModal(supplyRecordId) {
|
|
$.get(`/Vehicle/GetSupplyRecordForEditById?supplyRecordId=${supplyRecordId}`, function (data) {
|
|
if (data) {
|
|
$("#supplyRecordModalContent").html(data);
|
|
//initiate datepicker
|
|
initDatePicker($('#supplyRecordDate'));
|
|
initTagSelector($("#supplyRecordTag"));
|
|
$('#supplyRecordModal').modal('show');
|
|
$('#supplyRecordModal').off('shown.bs.modal').on('shown.bs.modal', function () {
|
|
if (getGlobalConfig().useMarkDown) {
|
|
toggleMarkDownOverlay("supplyRecordNotes");
|
|
}
|
|
});
|
|
}
|
|
});
|
|
}
|
|
function hideAddSupplyRecordModal() {
|
|
$('#supplyRecordModal').modal('hide');
|
|
}
|
|
function deleteSupplyRecord(supplyRecordId) {
|
|
$("#workAroundInput").show();
|
|
Swal.fire({
|
|
title: "Confirm Deletion?",
|
|
text: "Deleted Supply Records cannot be restored.",
|
|
showCancelButton: true,
|
|
confirmButtonText: "Delete",
|
|
confirmButtonColor: "#dc3545"
|
|
}).then((result) => {
|
|
if (result.isConfirmed) {
|
|
$.post(`/Vehicle/DeleteSupplyRecordById?supplyRecordId=${supplyRecordId}`, function (data) {
|
|
if (data) {
|
|
hideAddSupplyRecordModal();
|
|
successToast("Supply Record Deleted");
|
|
var vehicleId = GetVehicleId().vehicleId;
|
|
getVehicleSupplyRecords(vehicleId);
|
|
} else {
|
|
errorToast(genericErrorMessage());
|
|
}
|
|
});
|
|
} else {
|
|
$("#workAroundInput").hide();
|
|
}
|
|
});
|
|
}
|
|
function saveSupplyRecordToVehicle(isEdit) {
|
|
//get values
|
|
var formValues = getAndValidateSupplyRecordValues();
|
|
//validate
|
|
if (formValues.hasError) {
|
|
errorToast("Please check the form data");
|
|
return;
|
|
}
|
|
//save to db.
|
|
$.post('/Vehicle/SaveSupplyRecordToVehicleId', { supplyRecord: formValues }, function (data) {
|
|
if (data) {
|
|
successToast(isEdit ? "Supply Record Updated" : "Supply Record Added.");
|
|
hideAddSupplyRecordModal();
|
|
saveScrollPosition();
|
|
getVehicleSupplyRecords(formValues.vehicleId);
|
|
if (formValues.addReminderRecord) {
|
|
setTimeout(function () { showAddReminderModal(formValues); }, 500);
|
|
}
|
|
} else {
|
|
errorToast(genericErrorMessage());
|
|
}
|
|
})
|
|
}
|
|
function getAndValidateSupplyRecordValues() {
|
|
var supplyDate = $("#supplyRecordDate").val();
|
|
var supplyPartNumber = $("#supplyRecordPartNumber").val();
|
|
var supplyDescription = $("#supplyRecordDescription").val();
|
|
var supplySupplier = $("#supplyRecordSupplier").val();
|
|
var supplyQuantity = $("#supplyRecordQuantity").val();
|
|
var supplyCost = $("#supplyRecordCost").val();
|
|
var supplyNotes = $("#supplyRecordNotes").val();
|
|
var supplyTags = $("#supplyRecordTag").val();
|
|
var vehicleId = GetVehicleId().vehicleId;
|
|
var supplyRecordId = getSupplyRecordModelData().id;
|
|
//validation
|
|
var hasError = false;
|
|
var extraFields = getAndValidateExtraFields();
|
|
if (extraFields.hasError) {
|
|
hasError = true;
|
|
}
|
|
if (supplyDate.trim() == '') { //eliminates whitespace.
|
|
hasError = true;
|
|
$("#supplyRecordDate").addClass("is-invalid");
|
|
} else {
|
|
$("#supplyRecordDate").removeClass("is-invalid");
|
|
}
|
|
if (supplyDescription.trim() == '') {
|
|
hasError = true;
|
|
$("#supplyRecordDescription").addClass("is-invalid");
|
|
} else {
|
|
$("#supplyRecordDescription").removeClass("is-invalid");
|
|
}
|
|
if (supplyQuantity.trim() == '' || !isValidMoney(supplyQuantity) || globalParseFloat(supplyQuantity) < 0) {
|
|
hasError = true;
|
|
$("#supplyRecordQuantity").addClass("is-invalid");
|
|
} else {
|
|
$("#supplyRecordQuantity").removeClass("is-invalid");
|
|
}
|
|
if (supplyCost.trim() == '' || !isValidMoney(supplyCost)) {
|
|
hasError = true;
|
|
$("#supplyRecordCost").addClass("is-invalid");
|
|
} else {
|
|
$("#supplyRecordCost").removeClass("is-invalid");
|
|
}
|
|
return {
|
|
id: supplyRecordId,
|
|
hasError: hasError,
|
|
vehicleId: vehicleId,
|
|
date: supplyDate,
|
|
partNumber: supplyPartNumber,
|
|
partSupplier: supplySupplier,
|
|
description: supplyDescription,
|
|
cost: supplyCost,
|
|
notes: supplyNotes,
|
|
quantity: supplyQuantity,
|
|
files: uploadedFiles,
|
|
tags: supplyTags,
|
|
extraFields: extraFields.extraFields
|
|
}
|
|
} |