|
|
|
@ -138,6 +138,11 @@
|
|
|
|
|
<span>{{ workPlaceClasss[scope.row.workPlaceClass] }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="自动采集" prop="autoCollect" width="90">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ autoCollectMap[scope.row.autoCollect] }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<!--<el-table-column label="所属组别" prop="categoryName" width="90"></el-table-column>-->
|
|
|
|
|
<!--<el-table-column label="单据类型编号" prop="busTypeCode" width="100"></el-table-column>-->
|
|
|
|
|
<!--<el-table-column label="单据类型名称" prop="busTypeName" width="100"></el-table-column>-->
|
|
|
|
@ -514,6 +519,14 @@
|
|
|
|
|
<!-- </el-form-item>-->
|
|
|
|
|
<!--</el-col>-->
|
|
|
|
|
<el-row :gutter="24">
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-form-item label="自动采集:" prop="autoCollect" class="query-form-item">
|
|
|
|
|
<el-select v-model="formData.autoCollect" style="width: 80%" placeholder="请选择是否自动采集">
|
|
|
|
|
<el-option label="是" :value="1"></el-option>
|
|
|
|
|
<el-option label="否" :value="0"></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
<el-col :span="12" class="el-col">
|
|
|
|
|
<el-form-item label="备注:" prop="remake" class="query-form-item">
|
|
|
|
@ -767,6 +780,7 @@ export default {
|
|
|
|
|
chargeUser: null,
|
|
|
|
|
constituencies: null,
|
|
|
|
|
invRemindNumber: 0,
|
|
|
|
|
autoCollect:0,
|
|
|
|
|
remake: null
|
|
|
|
|
},
|
|
|
|
|
workplaceCode: '6001',
|
|
|
|
@ -864,6 +878,10 @@ export default {
|
|
|
|
|
1: '采集工位',
|
|
|
|
|
2: '上货工位'
|
|
|
|
|
},
|
|
|
|
|
autoCollectMap: {
|
|
|
|
|
0: '否',
|
|
|
|
|
1: '是'
|
|
|
|
|
},
|
|
|
|
|
orderFinishVerifys: {
|
|
|
|
|
0: '完全赋码',
|
|
|
|
|
1: '部分赋码',
|
|
|
|
@ -984,7 +1002,8 @@ export default {
|
|
|
|
|
chargeUser: null,
|
|
|
|
|
constituencies: "1001",
|
|
|
|
|
invRemindNumber: 0,
|
|
|
|
|
remake: null
|
|
|
|
|
remake: null,
|
|
|
|
|
autoCollect:0
|
|
|
|
|
}
|
|
|
|
|
if (this.groupData != null) {
|
|
|
|
|
this.formData.constituencies = this.groupData.code
|
|
|
|
|