2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-18 21:15:41 +00:00

Add page for displaying all sales orders

This commit is contained in:
Oliver Walters
2020-04-20 20:40:45 +10:00
parent 627c50e465
commit 1ebf26ab7c
6 changed files with 60 additions and 5 deletions

View File

@ -27,7 +27,10 @@
{{ block.super }}
loadPurchaseOrderTable("#purchase-order-table", {
url: "{% url 'api-po-list' %}?supplier={{ company.id }}",
url: "{% url 'api-po-list' %}",
params: {
supplier: company.id,
}
});

View File

@ -27,7 +27,10 @@
{{ block.super }}
loadSalesOrderTable("#sales-order-table", {
url: "{% url 'api-so-list' %}?customer={{ company.id }}",
url: "{% url 'api-so-list' %}",
params: {
customer: {{ company.id }},
}
});