增加一个新的库存状态:已出库
This commit is contained in:
parent
902964a2cf
commit
c4b8f5eeb4
|
|
@ -328,6 +328,10 @@ export default {
|
||||||
value: 5,
|
value: 5,
|
||||||
label: '回库中'
|
label: '回库中'
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
value: 6,
|
||||||
|
label: '已出库'
|
||||||
|
},
|
||||||
{
|
{
|
||||||
value: 9,
|
value: 9,
|
||||||
label: '库存锁定'
|
label: '库存锁定'
|
||||||
|
|
@ -431,6 +435,8 @@ export default {
|
||||||
return '拣选中'
|
return '拣选中'
|
||||||
case 5:
|
case 5:
|
||||||
return '回库中'
|
return '回库中'
|
||||||
|
case 6:
|
||||||
|
return '已出库'
|
||||||
case 9:
|
case 9:
|
||||||
return '库存锁定'
|
return '库存锁定'
|
||||||
default:
|
default:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user