Commit c23d1ef9 by wusiyi

fix:质检bug修复

parent 61e783cf
...@@ -85,12 +85,13 @@ const updateConfig = async () => { ...@@ -85,12 +85,13 @@ const updateConfig = async () => {
if (res.data?.totalCount) { if (res.data?.totalCount) {
await ElMessageBox.confirm( await ElMessageBox.confirm(
`有操作单仍在待质检状态,跳过质检流程将不展示待质检页面,但不影响操作单配货,<br/> `有操作单仍在待质检状态,跳过质检流程将不展示待质检页面,但不影响操作单配货,<br/>
<span style="color: #f56c6c">是否确定跳过质检流程?</span>`, <span style="color: red; margin: 15px 0">是否确定跳过质检流程?</span>`,
'提示', '提示',
{ {
confirmButtonText: '确定', confirmButtonText: '确定',
cancelButtonText: '取消', cancelButtonText: '取消',
dangerouslyUseHTMLString: true, dangerouslyUseHTMLString: true,
type: 'warning',
}, },
) )
} }
......
...@@ -579,9 +579,9 @@ ...@@ -579,9 +579,9 @@
" "
class="item" class="item"
> >
<ElButton type="success" @click="handlePrintProductionOrder" <ElButton type="success" @click="handlePrintProductionOrder">
>打印操作单</ElButton 打印操作单
> </ElButton>
</span> </span>
<span v-if="status === 'PENDING_PICK'" class="item"> <span v-if="status === 'PENDING_PICK'" class="item">
<ElButton type="warning" @click="handlePrintPickOrder" <ElButton type="warning" @click="handlePrintPickOrder"
...@@ -790,7 +790,7 @@ ...@@ -790,7 +790,7 @@
</ElButton> </ElButton>
</span> </span>
<span v-if="status === 'PENDING_QUALITY'" class="item"> <span v-if="status === 'PENDING_QUALITY'" class="item">
<ElButton type="success" @click="handleGetOrderInventoryDetail"> <ElButton type="success" @click="handlePrintProductionOrder">
打印操作单 打印操作单
</ElButton> </ElButton>
</span> </span>
...@@ -3333,7 +3333,7 @@ const handlePickComplete = () => { ...@@ -3333,7 +3333,7 @@ const handlePickComplete = () => {
} }
const handleDeliveryComplete = () => { const handleDeliveryComplete = () => {
if (!ensureSelection()) return if (!ensureSelection()) return
ElMessageBox.confirm('确定完成发货吗?', '提示', { ElMessageBox.confirm('确定配货完成吗?', '提示', {
confirmButtonText: '确定', confirmButtonText: '确定',
cancelButtonText: '取消', cancelButtonText: '取消',
}) })
......
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