|
|
@ -137,6 +137,9 @@ export const ItemApplyMainRules = reactive({ |
|
|
|
available: [ |
|
|
|
{ required: true, message: '请选择是否可用', trigger: 'change' } |
|
|
|
], |
|
|
|
costCenter:[ |
|
|
|
{ required: true, message: '请填写描述', trigger: 'change' } |
|
|
|
], |
|
|
|
}) |
|
|
|
|
|
|
|
|
|
|
@ -355,8 +358,8 @@ export const ItemApplyDetail = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
isTable:false, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '已申请库存数量', |
|
|
|
field: 'requestQty', |
|
|
|
label: '可申请库存数量', |
|
|
|
field: 'availableQty', |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
@ -368,10 +371,11 @@ export const ItemApplyDetail = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
min: 0, |
|
|
|
precision: 2 |
|
|
|
}, |
|
|
|
isTable:false, |
|
|
|
}, |
|
|
|
{ |
|
|
|
label: '可申请库存数量', |
|
|
|
field: 'availableQty', |
|
|
|
label: '已出库数量', |
|
|
|
field: 'requestQty', |
|
|
|
sort: 'custom', |
|
|
|
table: { |
|
|
|
width: 150 |
|
|
@ -383,8 +387,8 @@ export const ItemApplyDetail = useCrudSchemas(reactive<CrudSchema[]>([ |
|
|
|
min: 0, |
|
|
|
precision: 2 |
|
|
|
}, |
|
|
|
isTable:false, |
|
|
|
}, |
|
|
|
|
|
|
|
// {
|
|
|
|
// label: '是否账内库',
|
|
|
|
// field: 'isInAccount',
|
|
|
|