[RAPID] 수주복사 기능 구현 - 버튼/Controller/Service/Mapper
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user