Browse Source

feat(order): 添加检验完成数量列到PO订单表格

- 在PO订单主表中添加inspectionCompletedQty列配置
- 在PO订单搜索表中添加inspectionCompletedQty列配置
- 设置列宽度为140像素并居中对齐
- 启用溢出提示功能
- 配置列标签为"Inspection Completed Qty"
- 设置为不可编辑状态并禁用排序功能
master
qiankanghui 3 weeks ago
parent
commit
32b8b583a1
  1. 23
      src/views/modules/order/poOrder.vue
  2. 8
      src/views/modules/order/poOrder_search.vue

23
src/views/modules/order/poOrder.vue

@ -1226,6 +1226,29 @@ export default {
editType: 'text', editType: 'text',
selectOptionsKey: '', selectOptionsKey: '',
selectOptions: null selectOptions: null
},
{
userId: this.$store.state.user.name,
functionId: 812003,
serialNumber: '812003Table1InspectionCompletedQty',
tableId: '812003Table1',
tableName: 'PO Order',
columnProp: 'inspectionCompletedQty',
headerAlign: 'center',
align: 'center',
columnLabel: 'Inspection Completed Qty',
columnHidden: false,
columnImage: false,
columnSortable: false,
sortLv: 0,
status: true,
fixed: '',
columnWidth: 140,
showOverflowTooltip: true,
editAble: false,
editType: 'text',
selectOptionsKey: '',
selectOptions: null
} }
] ]
} }

8
src/views/modules/order/poOrder_search.vue

@ -437,6 +437,14 @@ export default {
columnWidth: 180, columnWidth: 180,
showOverflowTooltip: true, showOverflowTooltip: true,
headerAlign: 'center' headerAlign: 'center'
},
{
columnProp: 'inspectionCompletedQty',
columnLabel: 'Inspection Completed Qty',
align: 'center',
columnWidth: 140,
showOverflowTooltip: true,
headerAlign: 'center'
} }
] ]
} }

Loading…
Cancel
Save