fix: 지료관리 신규/변경 fix

main
Jonguk. Lim 2 years ago
parent cc887b842c
commit 78973e995a

@ -95,35 +95,35 @@ const JudgeDataModifyForm = ({ rowData, contDocs, ingbs, setOpen, handleModalSav
// } // }
// //
if (scCarnum.length < 1) { if (scCarnum.length < 4) {
alert.show('차량번호는 필수입니다.'); alert.show('차량번호는 필수입니다.');
return; return;
} }
if (scName.length < 1) { if (scName.length < 2) {
alert.show('성명은 필수입니다.'); alert.show('성명은 필수입니다.');
return; return;
} }
if (scDong.length < 1) { if (scDong.length < 2) {
alert.show('동명은(는) 필수입니다.'); alert.show('동명은(는) 필수입니다.');
return; return;
} }
if (scCdate.length < 1) { if (scCdate.length < 8) {
alert.show('접수일자는 필수입니다.'); alert.show('접수일자는 필수입니다.');
return; return;
} }
if (scWdate.length < 1) { if (scWdate.length < 8) {
alert.show('위반일자는 필수입니다.'); alert.show('위반일자는 필수입니다.');
return; return;
} }
if (scJbtime.length < 1) { if (scJbtime.length < 4) {
alert.show('위반시간은 필수입니다.'); alert.show('위반시간은 필수입니다.');
return; return;
} }
if (zipcode1.length < 1) { if (zipcode1.length < 5) {
alert.show('우편번호는 필수입니다.'); alert.show('우편번호는 필수입니다.');
return; return;
} }
if (scPos.length < 1) { if (scPos.length < 2) {
alert.show('위반장소는 필수입니다.'); alert.show('위반장소는 필수입니다.');
return; return;
} }

@ -68,39 +68,35 @@ const JudgeDataNewForm = ({ scDatagb, contDocs, ingbs, handleModalSave, setOpen,
}); });
// //
if (scCarnum.length < 1) { if (scCarnum.length < 4) {
// Toast.fire({
// icon: 'warning',
// title: ' .'
// });
alert.show('차량번호는 필수입니다.'); alert.show('차량번호는 필수입니다.');
return; return;
} }
if (scName.length < 1) { if (scName.length < 2) {
alert.show('성명은 필수입니다.'); alert.show('성명은 필수입니다.');
return; return;
} }
if (scDong.length < 1) { if (scDong.length < 2) {
alert.show('동명은(는) 필수입니다.'); alert.show('동명은(는) 필수입니다.');
return; return;
} }
if (scCdate.length < 1) { if (scCdate.length < 8) {
alert.show('접수일자는 필수입니다.'); alert.show('접수일자는 필수입니다.');
return; return;
} }
if (scWdate === null || scWdate === '') { if (scWdate.length < 8) {
alert.show('위반일자는 필수입니다.'); alert.show('위반일자는 필수입니다.');
return; return;
} }
if (scJbtime === null || scJbtime === '') { if (scJbtime.length < 4) {
alert.show('위반시간은 필수입니다.'); alert.show('위반시간은 필수입니다.');
return; return;
} }
if (scPos.length < 1) { if (scPos.length < 2) {
alert.show('위반장소는 필수입니다.'); alert.show('위반장소는 필수입니다.');
return; return;
} }
if (zipcode1 === null || zipcode1 === '') { if (zipcode1.length < 5) {
alert.show('우편번호는 필수입니다.'); alert.show('우편번호는 필수입니다.');
return; return;
} }

Loading…
Cancel
Save