Merge branch 'WarehouseArticle/import' into 'master'

fixed distributor loading

See merge request fronk/thetool!1954
This commit is contained in:
Luca Haid
2025-12-15 00:18:49 +00:00

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 || [];