This commit is contained in:
Peter Maquiran
2024-07-19 17:50:25 +01:00
parent f80e49d533
commit ef7edb3978
12 changed files with 332 additions and 67 deletions
+8 -4
View File
@@ -228,10 +228,14 @@ export class TaskService {
async loadDespachos() {
this.showLoaderNum++
let despachos = await this.despachoRule.getList({ updateStore: true })
if (despachos) {
this.despachoStore.reset(despachos)
}
try {
let despachos = await this.despachoRule.getList({ updateStore: true })
if (despachos) {
this.despachoStore.reset(despachos)
}
} catch(error) {}
this.showLoaderNum--
}