Browse Source

YT-1042:ss品导入报错提示问题

intex
ljlong_2630 5 days ago
parent
commit
06cd22d678
  1. 6
      src/views/wms/deliversettlementManage/unfinishedShipmentDetail/unfinishedShipmentDetail.data.ts
  2. 6
      src/views/wms/deliversettlementManage/unfinishedShipmentMain/index.vue
  3. 2
      src/views/wms/deliversettlementManage/unfinishedShipmentMain/unfinishedShipmentMain.data.ts

6
src/views/wms/deliversettlementManage/unfinishedShipmentDetail/unfinishedShipmentDetail.data.ts

@ -18,7 +18,7 @@ export const UnfinishedShipmentDetail = useCrudSchemas(reactive<CrudSchema[]>([
{ {
label: '物料代码', label: '物料代码',
field: 'materialCode', field: 'itemCode',
sort: 'custom', sort: 'custom',
table: { table: {
width: 150 width: 150
@ -27,7 +27,7 @@ export const UnfinishedShipmentDetail = useCrudSchemas(reactive<CrudSchema[]>([
}, },
{ {
label: '物料名称', label: '物料名称',
field: 'materialName', field: 'itemName',
sort: 'custom', sort: 'custom',
table: { table: {
width: 150 width: 150
@ -45,7 +45,7 @@ export const UnfinishedShipmentDetail = useCrudSchemas(reactive<CrudSchema[]>([
}, },
{ {
label: '物料描述', label: '物料描述',
field: 'materialDescription', field: 'itemDescription',
sort: 'custom', sort: 'custom',
table: { table: {
width: 150, width: 150,

6
src/views/wms/deliversettlementManage/unfinishedShipmentMain/index.vue

@ -28,9 +28,9 @@
v-model:currentPage="tableObject.currentPage" v-model:currentPage="tableObject.currentPage"
v-model:sort="tableObject.sort" v-model:sort="tableObject.sort"
> >
<template #code="{row}"> <template #number="{row}">
<el-button type="primary" link @click="openDetail(row, '代码', row.code)"> <el-button type="primary" link @click="openDetail(row, '代码', row.number)">
<span>{{ row.code }}</span> <span>{{ row.number }}</span>
</el-button> </el-button>
</template> </template>
<template #action="{ row }"> <template #action="{ row }">

2
src/views/wms/deliversettlementManage/unfinishedShipmentMain/unfinishedShipmentMain.data.ts

@ -15,7 +15,7 @@ export const UnfinishedShipmentMain = useCrudSchemas(reactive<CrudSchema[]>([
{ {
label: '单据号', label: '单据号',
field: 'code', field: 'number',
sort: 'custom', sort: 'custom',
table: { table: {
width: 150, width: 150,

Loading…
Cancel
Save