mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-30 21:21:09 -04:00 
			
		
		
		
	build version 400
This commit is contained in:
		| @ -1,70 +1,108 @@ | ||||
| import * as types from './mutation-types' | ||||
| import * as searchTypes from '../search/mutation-types' | ||||
|  | ||||
| export const fetchCustomers = ({ commit, dispatch, state }, params) => { | ||||
|   return new Promise((resolve, reject) => { | ||||
|     window.axios.get(`/api/customers`, {params}).then((response) => { | ||||
|       commit(types.BOOTSTRAP_CUSTOMERS, response.data.customers.data) | ||||
|       commit(types.SET_TOTAL_CUSTOMERS, response.data.customers.total) | ||||
|       resolve(response) | ||||
|     }).catch((err) => { | ||||
|       reject(err) | ||||
|     }) | ||||
|     window.axios | ||||
|       .get(`/api/v1/customers`, { params }) | ||||
|       .then((response) => { | ||||
|         commit(types.BOOTSTRAP_CUSTOMERS, response.data.customers.data) | ||||
|         commit(types.SET_TOTAL_CUSTOMERS, response.data.customerTotalCount) | ||||
|         commit( | ||||
|           'search/' + searchTypes.SET_CUSTOMER_LISTS, | ||||
|           response.data.customers.data, | ||||
|           { root: true } | ||||
|         ) | ||||
|         resolve(response) | ||||
|       }) | ||||
|       .catch((err) => { | ||||
|         reject(err) | ||||
|       }) | ||||
|   }) | ||||
| } | ||||
|  | ||||
| export const fetchCustomer = ({ commit, dispatch }, id) => { | ||||
| export const fetchCustomer = ({ commit, dispatch, state }, params) => { | ||||
|   return new Promise((resolve, reject) => { | ||||
|     window.axios.get(`/api/customers/${id}/edit`).then((response) => { | ||||
|       resolve(response) | ||||
|     }).catch((err) => { | ||||
|       reject(err) | ||||
|     }) | ||||
|     window.axios | ||||
|       .get(`/api/v1/customers/${params.id}`) | ||||
|       .then((response) => { | ||||
|         resolve(response) | ||||
|       }) | ||||
|       .catch((err) => { | ||||
|         reject(err) | ||||
|       }) | ||||
|   }) | ||||
| } | ||||
|  | ||||
| export const fetchViewCustomer = ({ commit, dispatch }, params) => { | ||||
|   return new Promise((resolve, reject) => { | ||||
|     window.axios | ||||
|       .get(`/api/v1/customers/${params.id}/stats`, { params }) | ||||
|       .then((response) => { | ||||
|         commit(types.SET_SELECTED_VIEW_CUSTOMER, response.data) | ||||
|         resolve(response) | ||||
|       }) | ||||
|       .catch((err) => { | ||||
|         reject(err) | ||||
|       }) | ||||
|   }) | ||||
| } | ||||
|  | ||||
| export const addCustomer = ({ commit, dispatch, state }, data) => { | ||||
|   return new Promise((resolve, reject) => { | ||||
|     window.axios.post('/api/customers', data).then((response) => { | ||||
|       commit(types.ADD_CUSTOMER, response.data) | ||||
|       resolve(response) | ||||
|     }).catch((err) => { | ||||
|       reject(err) | ||||
|     }) | ||||
|     window.axios | ||||
|       .post('/api/v1/customers', data) | ||||
|       .then((response) => { | ||||
|         commit(types.ADD_CUSTOMER, response.data) | ||||
|         resolve(response) | ||||
|       }) | ||||
|       .catch((err) => { | ||||
|         reject(err) | ||||
|       }) | ||||
|   }) | ||||
| } | ||||
|  | ||||
| export const updateCustomer = ({ commit, dispatch, state }, data) => { | ||||
|   return new Promise((resolve, reject) => { | ||||
|     window.axios.put(`/api/customers/${data.id}`, data).then((response) => { | ||||
|       if(response.data.success){ | ||||
|         commit(types.UPDATE_CUSTOMER, response.data) | ||||
|       } | ||||
|       resolve(response) | ||||
|     }).catch((err) => { | ||||
|       reject(err) | ||||
|     }) | ||||
|     window.axios | ||||
|       .put(`/api/v1/customers/${data.id}`, data) | ||||
|       .then((response) => { | ||||
|         if (response.data.success) { | ||||
|           commit(types.UPDATE_CUSTOMER, response.data) | ||||
|         } | ||||
|         resolve(response) | ||||
|       }) | ||||
|       .catch((err) => { | ||||
|         reject(err) | ||||
|       }) | ||||
|   }) | ||||
| } | ||||
|  | ||||
| export const deleteCustomer = ({ commit, dispatch, state }, id) => { | ||||
|   return new Promise((resolve, reject) => { | ||||
|     window.axios.delete(`/api/customers/${id}`).then((response) => { | ||||
|       commit(types.DELETE_CUSTOMER, id) | ||||
|       resolve(response) | ||||
|     }).catch((err) => { | ||||
|       reject(err) | ||||
|     }) | ||||
|     window.axios | ||||
|       .post(`/api/v1/customers/delete`, id) | ||||
|       .then((response) => { | ||||
|         commit(types.DELETE_CUSTOMER, id) | ||||
|         resolve(response) | ||||
|       }) | ||||
|       .catch((err) => { | ||||
|         reject(err) | ||||
|       }) | ||||
|   }) | ||||
| } | ||||
|  | ||||
| export const deleteMultipleCustomers = ({ commit, dispatch, state }, id) => { | ||||
|   return new Promise((resolve, reject) => { | ||||
|     window.axios.post(`/api/customers/delete`, {'id': state.selectedCustomers}).then((response) => { | ||||
|       commit(types.DELETE_MULTIPLE_CUSTOMERS, state.selectedCustomers) | ||||
|       resolve(response) | ||||
|     }).catch((err) => { | ||||
|       reject(err) | ||||
|     }) | ||||
|     window.axios | ||||
|       .post(`/api/v1/customers/delete`, { ids: state.selectedCustomers }) | ||||
|       .then((response) => { | ||||
|         commit(types.DELETE_MULTIPLE_CUSTOMERS, state.selectedCustomers) | ||||
|         resolve(response) | ||||
|       }) | ||||
|       .catch((err) => { | ||||
|         reject(err) | ||||
|       }) | ||||
|   }) | ||||
| } | ||||
|  | ||||
| @ -77,7 +115,7 @@ export const selectAllCustomers = ({ commit, dispatch, state }) => { | ||||
|     commit(types.SET_SELECTED_CUSTOMERS, []) | ||||
|     commit(types.SET_SELECT_ALL_STATE, false) | ||||
|   } else { | ||||
|     let allCustomerIds = state.customers.map(cust => cust.id) | ||||
|     let allCustomerIds = state.customers.map((cust) => cust.id) | ||||
|     commit(types.SET_SELECTED_CUSTOMERS, allCustomerIds) | ||||
|     commit(types.SET_SELECT_ALL_STATE, true) | ||||
|   } | ||||
|  | ||||
		Reference in New Issue
	
	Block a user