diff --git a/src/const/ApiConst.js b/src/const/ApiConst.js index 5552366..f3cf52d 100644 --- a/src/const/ApiConst.js +++ b/src/const/ApiConst.js @@ -456,6 +456,42 @@ export const PROJECT_PHASE_DELETE = (id) => { }; export const PHASE_PROYEK = `${BASE_SIMPRO_LUMEN}/project-phase/list`; +export const PROJECT_EXPENDITURE_ADD = `${BASE_SIMPRO_LUMEN}/project-expenditure/add`; +export const PROJECT_EXPENDITURE_SEARCH = `${BASE_SIMPRO_LUMEN}/project-expenditure/search`; +export const PROJECT_EXPENDITURE_EDIT = (id) => { + return `${BASE_SIMPRO_LUMEN}/project-expenditure/update/${id}`; +}; +export const PROJECT_EXPENDITURE_DELETE = (id) => { + return `${BASE_SIMPRO_LUMEN}/project-expenditure/delete/${id}`; +}; + +export const PROJECT_FINANCIAL_HEALTH_ADD = `${BASE_SIMPRO_LUMEN}/project-financial-health/add`; +export const PROJECT_FINANCIAL_HEALTH_SEARCH = `${BASE_SIMPRO_LUMEN}/project-financial-health/search`; +export const PROJECT_FINANCIAL_HEALTH_EDIT = (id) => { + return `${BASE_SIMPRO_LUMEN}/project-financial-health/update/${id}`; +}; +export const PROJECT_FINANCIAL_HEALTH_DELETE = (id) => { + return `${BASE_SIMPRO_LUMEN}/project-financial-health/delete/${id}`; +}; + +export const PROJECT_SCHEDULE_HEALTH_ADD = `${BASE_SIMPRO_LUMEN}/project-schedule-health/add`; +export const PROJECT_SCHEDULE_HEALTH_SEARCH = `${BASE_SIMPRO_LUMEN}/project-schedule-health/search`; +export const PROJECT_SCHEDULE_HEALTH_EDIT = (id) => { + return `${BASE_SIMPRO_LUMEN}/project-schedule-health/update/${id}`; +}; +export const PROJECT_SCHEDULE_HEALTH_DELETE = (id) => { + return `${BASE_SIMPRO_LUMEN}/project-schedule-health/delete/${id}`; +}; + +export const PROJECT_INVOICE_ADD = `${BASE_SIMPRO_LUMEN}/project-invoice/add`; +export const PROJECT_INVOICE_SEARCH = `${BASE_SIMPRO_LUMEN}/project-invoice/search`; +export const PROJECT_INVOICE_EDIT = (id) => { + return `${BASE_SIMPRO_LUMEN}/project-invoice/update/${id}`; +}; +export const PROJECT_INVOICE_DELETE = (id) => { + return `${BASE_SIMPRO_LUMEN}/project-invoice/delete/${id}`; +}; + export const PROJECT_CHARTER_ADD = `${BASE_SIMPRO_LUMEN}/project-charter/add`; export const PROJECT_CHARTER_SEARCH = `${BASE_SIMPRO_LUMEN}/project-charter/search`; export const PROJECT_CHARTER_EDIT = (id) => {