| @@ -30,7 +30,7 @@ const BackgroundHead = { | |||||
| // ==============================|| DASHBOARD - DEFAULT ||============================== // | // ==============================|| DASHBOARD - DEFAULT ||============================== // | ||||
| const UserSearchPage_Individual = () => { | |||||
| const SearchPage_DemandNote = () => { | |||||
| const [record, setRecord] = React.useState([]); | const [record, setRecord] = React.useState([]); | ||||
| const [orgCombo, setOrgCombo] = React.useState([]); | const [orgCombo, setOrgCombo] = React.useState([]); | ||||
| @@ -59,7 +59,7 @@ const UserSearchPage_Individual = () => { | |||||
| function getUserList() { | function getUserList() { | ||||
| HttpUtils.get({ | HttpUtils.get({ | ||||
| url: UrlUtils.DEMAND_NOTE_LIST, | |||||
| url: UrlUtils.DEMAND_NOTE_LIST_ALL, | |||||
| params: searchCriteria, | params: searchCriteria, | ||||
| onSuccess: function (responseData) { | onSuccess: function (responseData) { | ||||
| setRecord(responseData); | setRecord(responseData); | ||||
| @@ -138,4 +138,4 @@ const UserSearchPage_Individual = () => { | |||||
| </Grid> | </Grid> | ||||
| ); | ); | ||||
| } | } | ||||
| export default UserSearchPage_Individual; | |||||
| export default SearchPage_DemandNote; | |||||
| @@ -30,7 +30,7 @@ const BackgroundHead = { | |||||
| // ==============================|| DASHBOARD - DEFAULT ||============================== // | // ==============================|| DASHBOARD - DEFAULT ||============================== // | ||||
| const UserSearchPage_Individual = () => { | |||||
| const SearchPage_DemandNote_Pub = () => { | |||||
| const [record, setRecord] = React.useState([]); | const [record, setRecord] = React.useState([]); | ||||
| const [orgCombo, setOrgCombo] = React.useState([]); | const [orgCombo, setOrgCombo] = React.useState([]); | ||||
| @@ -133,4 +133,4 @@ const UserSearchPage_Individual = () => { | |||||
| </Grid> | </Grid> | ||||
| ); | ); | ||||
| } | } | ||||
| export default UserSearchPage_Individual; | |||||
| export default SearchPage_DemandNote_Pub; | |||||
| @@ -154,7 +154,8 @@ export const PAYMENT_STATUS_API = paymentPath+'/api/payment/status/';//GET | |||||
| export const DEMAND_NOTE_PREVIEW = apiPath+'/demandNote/preview';//GET | export const DEMAND_NOTE_PREVIEW = apiPath+'/demandNote/preview';//GET | ||||
| export const DEMAND_NOTE_CREATE = apiPath+'/demandNote/create';//POST | export const DEMAND_NOTE_CREATE = apiPath+'/demandNote/create';//POST | ||||
| export const DEMAND_NOTE_LIST = apiPath+'/demandNote/list';//GET | |||||
| export const DEMAND_NOTE_LIST = apiPath+'/demandNote/list';//GET pub | |||||
| export const DEMAND_NOTE_LIST_ALL = apiPath+'/demandNote/listAll';//GET gld | |||||
| export const DEMAND_NOTE_LOAD = apiPath+'/demandNote/load';//GET | export const DEMAND_NOTE_LOAD = apiPath+'/demandNote/load';//GET | ||||
| export const DEMAND_NOTE_SEND = apiPath+'/demandNote/send-dn';//POST | export const DEMAND_NOTE_SEND = apiPath+'/demandNote/send-dn';//POST | ||||
| export const DEMAND_NOTE_MARK_PAID = apiPath+'/demandNote/mark-as-paid';//POST | export const DEMAND_NOTE_MARK_PAID = apiPath+'/demandNote/mark-as-paid';//POST | ||||