feat: add create & edit & delete in credit note.

This commit is contained in:
elforjani13
2021-11-30 21:04:36 +02:00
parent 15fa1729a2
commit eeb16f4362
29 changed files with 644 additions and 235 deletions

View File

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