행 잠금, 행 잠금해제로 변경하고 작동하게 했습니다. 오른쪽에 있던 저장버튼은 주석처리 완료했습니당

This commit is contained in:
leeheejin
2025-12-18 09:45:34 +09:00
parent fdda744364
commit 874910231f
5 changed files with 156 additions and 5 deletions

View File

@@ -696,6 +696,15 @@ public class QualityController {
return service.lockSemiProductInspection(paramMap);
}
/**
* 반제품검사 잠금 해제
*/
@ResponseBody
@RequestMapping("/quality/unlockSemiProductInspection.do")
public Map unlockSemiProductInspection(HttpServletRequest request, @RequestParam Map<String, Object> paramMap){
return service.unlockSemiProductInspection(paramMap);
}
/**
* 반제품검사 엑셀 다운로드 (JSP 방식)
*/