Commit 93b6f25e by qinjianhui

feat: 生产完成入库功能开发

parent 43b046d8
......@@ -552,7 +552,6 @@ const handleOrderStatusClick = (status: 'processed' | 'unprocessed') => {
currentStatus.value = status
search()
}
/**胚衣入库 */
const receiptDialogVisible = ref(false)
const receiptUserMark = ref(0)
const receiptSelectSku = ref('')
......@@ -770,9 +769,13 @@ const handleReceiptSave = async () => {
}
}
const handleProductionCompleteInStock = () => {
console.log('生产完成入库')
// 客户定制的单子不能操作生产完成入库,提示:客户定制商品,不能入库!
if (cardSelectList.value.length !== 0) {
handleEmbryoInStockByCard()
} else {
handleEmbryoInFastStock()
}
}
/**胚衣入库完成 */
onMounted(() => {
void loadAllDictionaries()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment