mirror of
https://github.com/rickbarrette/redmine_qbo.git
synced 2025-11-08 08:54:23 -05:00
24 lines
619 B
JavaScript
24 lines
619 B
JavaScript
$(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",
|
|
type: "GET",
|
|
data: { selected_customer: $("input#issue_customer_id").val() }
|
|
});
|
|
});
|
|
|
|
$("input#project_customer_id").on("change", function() {
|
|
$.ajax({
|
|
url: "/filter_vehicles_by_customer",
|
|
type: "GET",
|
|
data: { selected_customer: $("input#project_customer_id").val() }
|
|
});
|
|
});
|
|
});
|