Browse Source

合格数量 修改为 完工数量,不合格数量隐藏

hella_online_20240829
wangyufei 2 months ago
parent
commit
54089a7897
  1. 48
      src/views/wms/productionManage/productionplan/productionMainAssemble/productionMainAssemble.data.ts

48
src/views/wms/productionManage/productionplan/productionMainAssemble/productionMainAssemble.data.ts

@ -846,7 +846,7 @@ export const ProductionDetail = useCrudSchemas(reactive<CrudSchema[]>([
}
},
{
label: '合格数量',
label: '完工数量',
field: 'goodQty',
sort: 'custom',
table: {
@ -868,29 +868,29 @@ export const ProductionDetail = useCrudSchemas(reactive<CrudSchema[]>([
isTableForm: false,
isForm: false
},
{
label: '不合格数量',
field: 'notGoodQty',
sort: 'custom',
table: {
width: 150
},
hiddenInMain: true,
form: {
component: 'InputNumber',
componentProps: {
min: 1,
precision: 6
}
},
tableForm: {
type: 'InputNumber',
min: 1,
precision: 6
},
isTableForm: false,
isForm: false
},
// {
// label: '不合格数量',
// field: 'notGoodQty',
// sort: 'custom',
// table: {
// width: 150
// },
// hiddenInMain: true,
// form: {
// component: 'InputNumber',
// componentProps: {
// min: 1,
// precision: 6
// }
// },
// tableForm: {
// type: 'InputNumber',
// min: 1,
// precision: 6
// },
// isTableForm: false,
// isForm: false
// },
{
label: '创建者',
field: 'creator',

Loading…
Cancel
Save