|
|
|
@ -254,10 +254,10 @@
|
|
|
|
|
highlight-current-row
|
|
|
|
|
>
|
|
|
|
|
<el-table-column type="index" label="序号"></el-table-column>
|
|
|
|
|
<el-table-column label="业务类型编码 " prop="documentTypeCode"></el-table-column>
|
|
|
|
|
<el-table-column label="业务类型编码 " prop="documentTypeCode" width="100"></el-table-column>
|
|
|
|
|
<el-table-column label="业务名称 " prop="busName"></el-table-column>
|
|
|
|
|
<el-table-column label="仓库名称 " prop="invName"></el-table-column>
|
|
|
|
|
<el-table-column label="是否配套系统" prop="isMatching">
|
|
|
|
|
<el-table-column label="是否配套系统" prop="isMatching" width="100">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ isMatchings[scope.row.isMatching] }}</span>
|
|
|
|
|
</template>
|
|
|
|
@ -272,17 +272,22 @@
|
|
|
|
|
<span>{{ checkInserts[scope.row.checkInsert] }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="异常方式提醒" prop="warnType">
|
|
|
|
|
<el-table-column label="单据流通方式 " prop="orderCirType" width="100">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ orderCirTypes[scope.row.orderCirType] }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="异常方式提醒" prop="warnType" width="100">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ warnTypeMap[scope.row.warnType] }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="往来单位类型" prop="corpType">
|
|
|
|
|
<el-table-column label="往来单位类型" prop="corpType" width="100">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ corpTypeMap[scope.row.corpType] }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="往来类型标题" prop="unitTittle"></el-table-column>
|
|
|
|
|
<el-table-column label="往来类型标题" prop="unitTittle" width="100"></el-table-column>
|
|
|
|
|
<el-table-column label="操作" fixed="right" width="120">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button
|
|
|
|
@ -770,6 +775,10 @@ export default {
|
|
|
|
|
2: '自动不添加',
|
|
|
|
|
3: '根据提醒决定'
|
|
|
|
|
},
|
|
|
|
|
orderCirTypes: {
|
|
|
|
|
1: '配送流通',
|
|
|
|
|
2: '出库使用',
|
|
|
|
|
},
|
|
|
|
|
workplaceStatusMap: {
|
|
|
|
|
0: '暂停',
|
|
|
|
|
1: '启用'
|
|
|
|
|