opt:PDA手工入库优化、采购单状态优化

This commit is contained in:
zhaoyf
2026-06-15 14:08:51 +08:00
parent 5d59f5efa1
commit a75aed4dc1
2 changed files with 3 additions and 4 deletions

View File

@@ -370,6 +370,7 @@ public class InboundPdaServiceImpl implements InboundPdaService {
}
@Transactional
@Override
public void submitManualInbound(ManualInboundDto dto) {
// 查询组盘明细

View File

@@ -108,9 +108,7 @@ export default {
billStatusOptions: [
{ value: '0', label: '已创建' },
{ value: '1', label: '执行中' },
{ value: '2', label: '已完成' },
{ value: '3', label: '审核成功' },
{ value: '4', label: '审核失败' }
{ value: '2', label: '已完成' }
]
}
},
@@ -119,7 +117,7 @@ export default {
return row.bill_status !== '0'
},
billStatusFormat(row) {
const map = { '0': '已创建', '1': '执行中', '2': '已完成', '3': '审核成功', '4': '审核失败' }
const map = { '0': '已创建', '1': '执行中', '2': '已完成' }
return map[row.bill_status] || row.bill_status
},
auditStatusFormat(row) {