mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 21:30:31 +00:00
feat: Vendor Credit note.
This commit is contained in:
14
src/store/vendorsCreditNotes/vendorsCreditNotes.actions.js
Normal file
14
src/store/vendorsCreditNotes/vendorsCreditNotes.actions.js
Normal file
@@ -0,0 +1,14 @@
|
||||
import t from 'store/types';
|
||||
|
||||
export const setVendorsCreditNoteTableState = (queries) => {
|
||||
return {
|
||||
type: t.VENDORS_CREDIT_NOTE_TABLE_STATE_SET,
|
||||
payload: { queries },
|
||||
};
|
||||
};
|
||||
|
||||
export const resetVendorsCreditNoteTableState = () => {
|
||||
return {
|
||||
type: t.VENDORS_CREDIT_NOTE_TABLE_STATE_RESET,
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user