Merge pull request 'Feature#774_DeleteExpenseType : dded delete functionality for Expense Type using ID' (#296) from Feature#774_DeleteExpenseType into Feature_Expense

Reviewed-on: #296
merged
This commit is contained in:
pramod.mahajan 2025-07-25 18:38:42 +00:00
commit ede1b85c1c

View File

@ -43,6 +43,7 @@ export const MasterRespository = {
"Work Category": ( id ) => api.delete( `api/master/work-category/${ id }` ),
"Contact Category": ( id ) => api.delete( `/api/master/contact-category/${id}` ),
"Contact Tag" :(id)=>api.delete(`/api/master/contact-tag/${id}`),
"Expense Type":(id,IsActive)=>api.delete(`/api/Master/expenses-type/delete/${id}`,IsActive=false),
getWorkCategory:() => api.get(`/api/master/work-categories`),
createWorkCategory: (data) => api.post(`/api/master/work-category`,data),