feat(warehouseTransfer): add crud warehouse transfer.

This commit is contained in:
elforjani13
2022-02-03 00:27:42 +02:00
committed by a.bouhuolia
parent 0db252c862
commit 731ecaeeb3
22 changed files with 407 additions and 77 deletions

View 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,
};
};