stockreports/spendings: Support grouping by store (closes #2308)

This commit is contained in:
Bernd Bestel
2023-08-14 18:12:40 +02:00
parent 106f25cc6b
commit 3a2929c016
4 changed files with 60 additions and 33 deletions

View File

@@ -134,12 +134,12 @@ $("#clear-filter-button").on("click", function()
{
RemoveUriParam("start_date");
RemoveUriParam("end_date");
RemoveUriParam("product_group");
RemoveUriParam("product-group");
window.location.reload();
});
$("#product-group-filter").on("change", function()
{
UpdateUriParam("product_group", $(this).val());
UpdateUriParam("product-group", $(this).val());
window.location.reload();
});