Remove trashed customers and suppliers from overview.

This commit is contained in:
2025-05-13 11:31:38 +02:00
parent 7ee0fd4ffb
commit e4238bfda6
2 changed files with 2 additions and 2 deletions

View File

@@ -113,7 +113,7 @@
init() { init() {
let vm = this; let vm = this;
axios.get('/customer-with-trashed') axios.get('/customer')
.then(function (response) { .then(function (response) {
vm.customers = response.data; vm.customers = response.data;
}) })

View File

@@ -119,7 +119,7 @@
init() { init() {
let vm = this; let vm = this;
axios.get('/supplier-with-trashed') axios.get('/supplier')
.then(function (response) { .then(function (response) {
vm.suppliers = response.data; vm.suppliers = response.data;
}) })