mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-21 07:10:33 +00:00
feat(warehouseTransfer): add crud warehouse transfer.
This commit is contained in:
14
src/store/WarehouseTransfer/warehouseTransfer.actions.js
Normal file
14
src/store/WarehouseTransfer/warehouseTransfer.actions.js
Normal file
@@ -0,0 +1,14 @@
|
||||
import t from 'store/types';
|
||||
|
||||
export const setWarehouseTransferTableState = (queries) => {
|
||||
return {
|
||||
type: t.WAREHOUSE_TRANSFERS_TABLE_STATE_SET,
|
||||
payload: { queries },
|
||||
};
|
||||
};
|
||||
|
||||
export const resetWarehouseTransferTableState = () => {
|
||||
return {
|
||||
type: t.WAREHOUSE_TRANSFERS_TABLE_STATE_RESET,
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user