11/28 单据类型显示优化

20240912_adapter
wangwei 4 months ago
parent ddca9cdeba
commit 2bfe35a2b4

@ -83,6 +83,11 @@
<span>{{ isPopulars[scope.row.isPopular] }}</span>
</template>
</el-table-column>
<el-table-column label="是否自动处理 " prop="autoHandle" width="120">
<template slot-scope="scope">
<span>{{ autoHandles[scope.row.autoHandle] }}</span>
</template>
</el-table-column>
<el-table-column label="业务顺号" prop="number" width="100"></el-table-column>
<el-table-column label="备注" prop="remark" width="100"></el-table-column>
@ -161,6 +166,10 @@ export default {
2: '自动不添加',
3: '根据提醒决定'
},
autoHandles: {
'false': '否',
'true' : '是',
},
orderCirTypes: {
1: '流通计量单位',
2: '使用计量单位'

@ -280,6 +280,11 @@
<span>{{ isPopulars[scope.row.isPopular] }}</span>
</template>
</el-table-column>
<el-table-column label="是否自动处理 " prop="autoHandle" width="120">
<template slot-scope="scope">
<span>{{ autoHandles[scope.row.autoHandle] }}</span>
</template>
</el-table-column>
<el-table-column label="发货方" prop="shipper" width="100">
<template slot-scope="scope">
<span>{{ shippers[scope.row.shipper] }}</span>
@ -902,6 +907,10 @@ export default {
2: '原始单据的收货方',
3: '用户所属仓库',
},
autoHandles: {
'false': '否',
'true' : '是',
},
consignees: {
1: '原始单据的收货方',
2: '原始单据的发货方',

Loading…
Cancel
Save