fixed distributor loading

This commit is contained in:
2025-12-15 01:18:38 +01:00
parent 12a7598447
commit a8e4834463

View File

@@ -269,7 +269,7 @@ Vue.component('warehouse-article-distributor', {
methods: {
async fetchAllDistributors() {
const res = await axios.post(`${window['TT_CONFIG']['BASE_PATH']}/WarehouseDistributor/get`, {
pagination: false,
pagination: { per_page: 10000 },
order: { key: 'name', order: 'ASC' }
});
this.allDistributors = res.data.rows || [];