feat: Credit note.

This commit is contained in:
elforjani13
2021-11-29 16:14:22 +02:00
parent 346696f673
commit 0a9798e7a7
37 changed files with 1564 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
import t from 'store/types';
export const setCreditNotesTableState = (queries) => {
return {
type: t.CREDIT_NOTE_TABLE_STATE_SET,
payload: { queries },
};
};
export const resetCreditNotesTableState = () => {
return {
type: t.CREDIT_NOTE_TABLE_STATE_RESET,
};
};