Browse Source

修改外采的流程图增加财务环节

master
yxt_djz 3 years ago
parent
commit
fe403f615b
  1. 1
      anrui-base/anrui-base-biz/src/main/java/com/yxt/anrui/base/biz/basevehicle/BaseVehicleService.java
  2. 2
      anrui-flowable/anrui-flowable-api/src/main/java/com/yxt/anrui/flowable/api/utils/ProcDefEnum.java
  3. 35
      anrui-scm/anrui-scm-ui/src/views/baseoutsourcingapplication/relation/modellibrary.vue
  4. 1
      anrui-scm/anrui-scm-ui/src/views/workFlow/caigoutuikuFlow/caigoutuiku.vue

1
anrui-base/anrui-base-biz/src/main/java/com/yxt/anrui/base/biz/basevehicle/BaseVehicleService.java

@ -768,7 +768,6 @@ public class BaseVehicleService extends MybatisBaseService<BaseVehicleMapper, Ba
} }
} }
record.setMoreList(moreConfigVos); record.setMoreList(moreConfigVos);
} }
return iPage; return iPage;
} }

2
anrui-flowable/anrui-flowable-api/src/main/java/com/yxt/anrui/flowable/api/utils/ProcDefEnum.java

@ -20,7 +20,7 @@ public enum ProcDefEnum {
SEALAPPLY("盖章申请", "process_7h0z66tp:1:240064" ), SEALAPPLY("盖章申请", "process_7h0z66tp:1:240064" ),
BASEVEHICLEACTUALSALES("未售买断", "process_6qx07b75:5:292504"),//ToDo BASEVEHICLEACTUALSALES("未售买断", "process_6qx07b75:5:292504"),//ToDo
SALESORDER("销售订单审批流程", "process_p5ils2rn:2:245112"), SALESORDER("销售订单审批流程", "process_p5ils2rn:2:245112"),
BASEOUTSOURCINGAPPLICATION("外采申请", "process_5tqysnjc:2:285004"),//TODO BASEOUTSOURCINGAPPLICATION("外采申请", "process_5tqysnjc:3:365004"),//TODO
BASEMODELMODPRICE("车型调价申请", "process_kydcif7k:5:280004"), BASEMODELMODPRICE("车型调价申请", "process_kydcif7k:5:280004"),
BASEINTERNALPURCHASE("调车申请", "process_i6luw5xq:2:315150"), BASEINTERNALPURCHASE("调车申请", "process_i6luw5xq:2:315150"),
SCMCARTRANSFER("库存地点变更申请", "process_3bc4p2em:4:300008"), //TODO SCMCARTRANSFER("库存地点变更申请", "process_3bc4p2em:4:300008"), //TODO

35
anrui-scm/anrui-scm-ui/src/views/baseoutsourcingapplication/relation/modellibrary.vue

@ -91,42 +91,47 @@
<div class=""> <div class="">
<el-table :key="tableKey" v-loading="listLoading" :data="list" border style="width: 100%;font-size: 10px;" > <el-table :key="tableKey" v-loading="listLoading" :data="list" border style="width: 100%;font-size: 10px;" >
<el-table-column width="60px" label="序号" type="index" :index="indexMethod" align="center"/> <el-table-column width="60px" label="序号" type="index" :index="indexMethod" align="center"/>
<el-table-column width="100px" label="操作" align="center">
<template slot-scope="scope">
<span class="bluezi" @click="handlink(scope.row)">选择常用配置</span>
</template>
</el-table-column>
<el-table-column label="车型" align="center"> <el-table-column label="车型" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<span class="bluezi" @click="handlink(scope.row)">{{ scope.row.modelName }}</span> <span >{{ scope.row.modelName }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="版本" align="center"> <el-table-column width="100px" label="版本" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ scope.row.versionValue }}</span> <span>{{ scope.row.versionValue }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="燃料" align="center"> <el-table-column width="100px" label="燃料" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ scope.row.fuelTypeValue }}</span> <span>{{ scope.row.fuelTypeValue }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="变速箱" align="center"> <el-table-column width="100px" label="变速箱" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ scope.row.gearboxTypeValue }}</span> <span>{{ scope.row.gearboxTypeValue }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="销售指导价(万元)" align="center"> <el-table-column width="100px" label="销售指导价(万元)" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ scope.row.guidedPrice }}</span> <span>{{ scope.row.guidedPrice }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="现车" align="center"> <el-table-column width="50px" label="现车" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ scope.row.nowCarNum }}</span> <span>{{ scope.row.nowCarNum }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="排产" align="center"> <el-table-column width="50px" label="排产" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ scope.row.produceCarNum }}</span> <span>{{ scope.row.produceCarNum }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="操作" align="center"> <el-table-column width="100px" label="操作" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<el-button type="primary" size="small" @click="handlook(scope.row)">查看</el-button> <el-button type="primary" size="small" @click="handlook(scope.row)">查看</el-button>
</template> </template>
@ -144,7 +149,7 @@
<el-table-column width="80px" label="序号" type="index" :index="indexMethod" align="center"/> <el-table-column width="80px" label="序号" type="index" :index="indexMethod" align="center"/>
<el-table-column label="分公司名称" align="center"> <el-table-column label="分公司名称" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ scope.row.company }}</span> <span>{{ scope.row.companyName }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="现车" align="center"> <el-table-column label="现车" align="center">
@ -154,7 +159,7 @@
</el-table-column> </el-table-column>
<el-table-column label="排产车" align="center"> <el-table-column label="排产车" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ scope.row.productionCarNum }}</span> <span>{{ scope.row.produceCarNum }}</span>
</template> </template>
</el-table-column> </el-table-column>
</el-table> </el-table>
@ -375,11 +380,11 @@ export default {
handlook(row) { handlook(row) {
this.dialogVisible = true this.dialogVisible = true
this.dialogQuery.params.modelSid = row.sid this.dialogQuery.params.modelSid = row.sid
notTheCompanyModelPageList(this.dialogQuery).then((res) => { /*notTheCompanyModelPageList(this.dialogQuery).then((res) => {
if (res.code === '200') { if (res.code === '200') {*/
this.datalist = res.data.records this.datalist = row.moreList
} /*}
}) })*/
}, },
handlink(row) { handlink(row) {
this.viewState = 2 this.viewState = 2

1
anrui-scm/anrui-scm-ui/src/views/workFlow/caigoutuikuFlow/caigoutuiku.vue

@ -209,7 +209,6 @@
this.agreeList.taskId = obj.taskId this.agreeList.taskId = obj.taskId
this.agreeList.taskDefKey = obj.taskDefKey this.agreeList.taskDefKey = obj.taskDefKey
this.agreeList.taskName = obj.taskName this.agreeList.taskName = obj.taskName
// //
this.regectList.businessSid = obj.businessSid this.regectList.businessSid = obj.businessSid
this.regectList.instanceId = obj.instanceId this.regectList.instanceId = obj.instanceId

Loading…
Cancel
Save