2
0
mirror of https://github.com/inventree/InvenTree.git synced 2026-05-05 01:03:37 +00:00

Fix sales order table refresh (#3627)

- Refreshing the SalesOrder table would actually reload the PurchaseOrder table
This commit is contained in:
Oliver
2022-09-01 12:34:43 +10:00
committed by GitHub
parent 0150afd7a7
commit 23edd79431
+1 -1
View File
@@ -2571,7 +2571,7 @@ function loadSalesOrderTable(table, options) {
return `<div id='purchase-order-calendar'></div>`;
},
onRefresh: function() {
loadPurchaseOrderTable(table, options);
loadSalesOrderTable(table, options);
},
onLoadSuccess: function() {