浏览代码

no message

production
kelvin.yau 1周前
父节点
当前提交
f6e8dc8b45
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. +3
    -1
      src/components/DoSearch/DoReplenishmentTab.tsx

+ 3
- 1
src/components/DoSearch/DoReplenishmentTab.tsx 查看文件

@@ -431,7 +431,9 @@ function groupDraftRowsByLaneShopAndDo(rows: ReplenishmentDraftRow[]): DraftLane
const DoReplenishmentTab: React.FC = () => {
const { t } = useTranslation("do");
const inFlightRef = useRef(false);
const itemCodeInputRef = useRef<HTMLInputElement>(null);
const itemCodeInputRef = useRef<HTMLInputElement | null>(
null,
) as React.MutableRefObject<HTMLInputElement | null>;
const [isSubmitting, setIsSubmitting] = useState(false);
const [isLookingUp, setIsLookingUp] = useState(false);



正在加载...
取消
保存