Added ajax to update estimates

This commit is contained in:
2017-04-03 21:57:56 -04:00
committed by GitHub
parent bd8706deee
commit 72bf10680f

View File

@@ -5,5 +5,11 @@ $(function() {
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() }
});
});
});