Browse Source

Merge branch 'master_hella' of http://dev.ccwin-in.com:3000/sfms3.0/sfms3.0-ui into master_hella

hella_online_20240829
wangyufei 2 months ago
parent
commit
b395268a91
  1. 13
      src/views/qms/inspectionJob/inspectionJobMain.data.ts
  2. 2
      src/views/wms/issueManage/onlinesettlement/onlinesettlementRecordMain/index.vue

13
src/views/qms/inspectionJob/inspectionJobMain.data.ts

@ -560,6 +560,18 @@ export const InspectionJobMain = useCrudSchemas(
} }
} }
}, },
{
label: '状态',
field: 'status',
dictType: DICT_TYPE.JOB_STATUS,
dictClass: 'string',
isForm: false,
isTable: true,
sort: 'custom',
table: {
width: 150
}
},
{ {
label: '创建时间', label: '创建时间',
field: 'createTime', field: 'createTime',
@ -624,6 +636,7 @@ export const InspectionJobMain = useCrudSchemas(
width: 150 width: 150
} }
}, },
{ {
label: '操作', label: '操作',
field: 'action', field: 'action',

2
src/views/wms/issueManage/onlinesettlement/onlinesettlementRecordMain/index.vue

@ -139,7 +139,7 @@ const detailRef = ref()
const openDetail = (row: any, titleName: any, titleValue: any) => { const openDetail = (row: any, titleName: any, titleValue: any) => {
const departmentCode = wsCache.get(CACHE_KEY.DEPT).find((account) => account.id == row.departmentCode)?.name const departmentCode = wsCache.get(CACHE_KEY.DEPT).find((account) => account.id == row.departmentCode)?.name
if (departmentCode) row.departmentCode = JSON.parse(JSON.stringify(departmentCode)) if (departmentCode) row.departmentCode = JSON.parse(JSON.stringify(departmentCode))
detailRef.value.openDetail(row, titleName, titleValue) detailRef.value.openDetail(row, titleName, titleValue,"recordOnlinesettlementMain")
} }
/** 导出按钮操作 */ /** 导出按钮操作 */

Loading…
Cancel
Save