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

Loading…
Cancel
Save