|
|
@ -511,11 +511,20 @@
|
|
|
|
**************************************************************************/
|
|
|
|
**************************************************************************/
|
|
|
|
// 저장
|
|
|
|
// 저장
|
|
|
|
$P.fnSave = () => {
|
|
|
|
$P.fnSave = () => {
|
|
|
|
let checkData = $("input[name='maapingCheck']:checked").parent().parent().data().key;
|
|
|
|
debugger
|
|
|
|
|
|
|
|
let checkData = $("input[name='maapingCheck']:checked").parent().parent().data()?.key;
|
|
|
|
|
|
|
|
if(!checkData){
|
|
|
|
|
|
|
|
dialog.alert({
|
|
|
|
|
|
|
|
content: "선택한 NIMS 폐기보고 데이타가 없습니다."
|
|
|
|
|
|
|
|
, init: () => { setDialogZindex(); }
|
|
|
|
|
|
|
|
, onOK: () => {}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
$P.mappingControl.setCurrent(checkData);
|
|
|
|
$P.mappingControl.setCurrent(checkData);
|
|
|
|
|
|
|
|
|
|
|
|
dialog.alert({
|
|
|
|
dialog.alert({
|
|
|
|
content: "현재 선택에 체크 된 폐기 보고 확인 정보를 저장하시겠습니까?"
|
|
|
|
content: "확인 선택한 NIMS 폐기보고 정보를 저장 하시겠습니까?"
|
|
|
|
, init: () => { setDialogZindex(); }
|
|
|
|
, init: () => { setDialogZindex(); }
|
|
|
|
, onOK: () => {
|
|
|
|
, onOK: () => {
|
|
|
|
$P.control.save(); // formFields
|
|
|
|
$P.control.save(); // formFields
|
|
|
|