2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-17 12:35:46 +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

View File

@ -2571,7 +2571,7 @@ function loadSalesOrderTable(table, options) {
return `<div id='purchase-order-calendar'></div>`; return `<div id='purchase-order-calendar'></div>`;
}, },
onRefresh: function() { onRefresh: function() {
loadPurchaseOrderTable(table, options); loadSalesOrderTable(table, options);
}, },
onLoadSuccess: function() { onLoadSuccess: function() {