2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-30 12:36:45 +00:00

Fix sales order table refresh (#3627) (#3628)

- Refreshing the SalesOrder table would actually reload the PurchaseOrder table

(cherry picked from commit 23edd794312b5eea2e00878d2216150048747a4e)
This commit is contained in:
Oliver 2022-09-01 15:04:26 +10:00 committed by GitHub
parent c7955c267c
commit 14143c1681
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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