mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-21 09:12:14 +00:00
- Invoice listing in frontend
This commit is contained in:
@@ -15,7 +15,7 @@ const actions = {
|
||||
})
|
||||
|
||||
axios
|
||||
.get(`${getters.api}/invoices/invoice`)
|
||||
.get('/api/oasis/invoices/regular')
|
||||
.then(response => {
|
||||
commit('LOADING_STATE', {loading: false, data: response.data})
|
||||
})
|
||||
@@ -36,7 +36,7 @@ const actions = {
|
||||
})
|
||||
|
||||
axios
|
||||
.get(`${getters.api}/invoices/advance-invoice`)
|
||||
.get('/api/oasis/invoices/advance')
|
||||
.then(response => {
|
||||
commit('LOADING_STATE', {loading: false, data: response.data})
|
||||
})
|
||||
@@ -57,7 +57,7 @@ const actions = {
|
||||
})
|
||||
|
||||
axios
|
||||
.get(`${getters.api}/invoices/clients`)
|
||||
.get('/api/oasis/invoices/clients')
|
||||
.then(response => {
|
||||
commit('LOADING_STATE', {loading: false, data: response.data})
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user