[RAPID] 수주복사 기능 구현 - 버튼/Controller/Service/Mapper

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-26 15:53:26 +09:00
parent fefba10438
commit 03d8cb481e
4 changed files with 270 additions and 0 deletions

View File

@@ -2783,6 +2783,23 @@ public class ContractMgmtController {
return "/ajax/ajaxResult";
}
/**
* 수주 복사
*/
@ResponseBody
@RequestMapping(value="/contractMgmt/copyEstimateAndOrderInfo.do", method=RequestMethod.POST)
public Map<String, Object> copyEstimateAndOrderInfo(HttpServletRequest request, @RequestParam Map<String, Object> paramMap){
Map<String, Object> resultMap = new HashMap<String, Object>();
try {
resultMap = contractMgmtService.copyEstimateAndOrderInfo(request, paramMap);
} catch (Exception e) {
e.printStackTrace();
resultMap.put("result", "FAIL");
resultMap.put("message", e.getMessage());
}
return resultMap;
}
/**
* 수주정보 저장
* @param session