Initial Vehicle Delete

This commit is contained in:
2022-03-14 07:22:43 -04:00
parent d91e7892c3
commit b686110145
34 changed files with 13 additions and 643 deletions

View File

@@ -1,10 +1,5 @@
$(function() {
$("input#issue_customer_id").on("change", function() {
$.ajax({
url: "/filter_vehicles_by_customer",
type: "GET",
data: { selected_customer: $("input#issue_customer_id").val() }
});
$.ajax({
url: "/filter_estimates_by_customer",
@@ -13,11 +8,4 @@ $(function() {
});
});
$("input#project_customer_id").on("change", function() {
$.ajax({
url: "/filter_vehicles_by_customer",
type: "GET",
data: { selected_customer: $("input#project_customer_id").val() }
});
});
});