물건 수정화면 1차점 로그인시 1&2차점 자동완성 Select X 수정

This commit is contained in:
basssy 2024-10-25 11:37:39 +09:00
parent 451a3c8cce
commit a10d999cc8

View File

@ -484,8 +484,10 @@ export default function StuffDetail() {
} }
//1 //1
const onSelectionChange = (key) => { const onSelectionChange = (key) => {
if (key.saleStoreId === selOptions) { if (isObjectNotEmpty(key)) {
return if (key.saleStoreId === selOptions) {
return
}
} }
const planReqNo = form.watch('planReqNo') const planReqNo = form.watch('planReqNo')
@ -596,8 +598,10 @@ export default function StuffDetail() {
//2 //2
const onSelectionChange2 = (key) => { const onSelectionChange2 = (key) => {
if (key.saleStoreId === otherSelOptions) { if (isObjectNotEmpty(key)) {
return if (key.saleStoreId === otherSelOptions) {
return
}
} }
const planReqNo = form.watch('planReqNo') const planReqNo = form.watch('planReqNo')