pcs 메이커,시리즈 조회 api 추가

This commit is contained in:
hyojun.choi 2025-01-10 13:35:42 +09:00
parent 8f7a847504
commit 7b2e7fd362

View File

@ -112,11 +112,27 @@ export function useMasterController() {
}) })
} }
/**
* PCS 메이커, 시리즈 목록 조회
* @param {PCS 메이커코드} pcsMkrCd
* @param {혼합모듈번호} mixMatlNo
* @returns
*/
const getPcsMakerList = async (params) => {
const paramString = getQueryString(params)
console.log('🚀🚀 ~ getPcsMakerList ~ paramString:', paramString)
return await get({ url: '/api/v1/master/pcsMakerList' + paramString }).then((res) => {
console.log('🚀🚀 ~ getPcsMakerList ~ res:', res)
return res
})
}
return { return {
getRoofMaterialList, getRoofMaterialList,
getModuleTypeItemList, getModuleTypeItemList,
getTrestleList, getTrestleList,
getConstructionList, getConstructionList,
getTrestleDetailList, getTrestleDetailList,
getPcsMakerList,
} }
} }