1234567891011121314151617181920212223 |
- const actions = {
- notify({ commit }, payload) {
- openerp.web.notification.do_warn('Atención', payload)
- },
- fetchData({ dispatch }) {
- let promises = [
- dispatch('fetchCompany'),
- dispatch('fetchCurrencies'),
- dispatch('fetchProducts'),
- dispatch('fetchCustomers')
- ]
- Promise.all(promises).then(() => {
- console.log('loaded')
- }).catch(error => {
- console.log(error)
- })
- }
- }
- export default {
- actions
- }
|