2018-11-22 23:12:12 +00:00
|
|
|
/** @format */
|
|
|
|
|
|
|
|
export default {
|
2018-11-29 14:03:04 +00:00
|
|
|
setReportItems( endpoint, query, data, totalCount ) {
|
2018-11-22 23:12:12 +00:00
|
|
|
return {
|
|
|
|
type: 'SET_REPORT_ITEMS',
|
|
|
|
endpoint,
|
|
|
|
query: query || {},
|
2018-11-29 14:03:04 +00:00
|
|
|
data,
|
|
|
|
totalCount,
|
2018-11-22 23:12:12 +00:00
|
|
|
};
|
|
|
|
},
|
|
|
|
setReportItemsError( endpoint, query ) {
|
|
|
|
return {
|
|
|
|
type: 'SET_REPORT_ITEMS_ERROR',
|
|
|
|
endpoint,
|
|
|
|
query: query || {},
|
|
|
|
};
|
|
|
|
},
|
|
|
|
};
|