| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214 |
- <template>
- <el-col :span="16" :offset="6">
- <el-form label-width="100px" ref="formRef" :model="form">
- <el-form-item
- label="审批建议"
- prop="reason"
- style="margin-bottom: 20px"
- :rules="{
- required: true,
- message: '请选择',
- trigger: 'change'
- }"
- >
- <el-input
- type="textarea"
- v-model="form.reason"
- placeholder="请输入审批建议"
- />
- </el-form-item>
- </el-form>
- <div style="margin-left: 10%; margin-bottom: 20px; font-size: 14px">
- <el-button
- icon="el-icon-edit-outline"
- type="success"
- size="mini"
- @click="handleAudit(1)"
- v-if="!['storeManagerApprove'].includes(taskDefinitionKey)"
- >通过
- </el-button>
- <el-button
- icon="el-icon-edit-outline"
- type="success"
- size="mini"
- @click="open()"
- v-if="['storeManagerApprove'].includes(taskDefinitionKey)"
- >申请入库
- </el-button>
- <el-button
- icon="el-icon-circle-close"
- type="danger"
- size="mini"
- @click="handleAudit(0)"
- v-if="!['starter'].includes(taskDefinitionKey)"
- >驳回
- </el-button>
- <!-- <el-button
- icon="el-icon-circle-close"
- type="danger"
- size="mini"
- @click="handleBackList"
- >退回
- </el-button> -->
- <!-- <el-button
- icon="el-icon-circle-close"
- type="danger"
- size="mini"
- @click="handleAudit(0)"
- v-if="taskDefinitionKey != 'productionSupervisorApprove1'"
- >不通过
- </el-button>
- <el-button
- icon="el-icon-edit-outline"
- type="primary"
- size="mini"
- v-if="taskDefinitionKey != 'productionSupervisorApprove1'"
- @click="handleUpdateAssignee"
- >转办
- </el-button> -->
- <ele-modal
- custom-class="ele-dialog-form long-dialog-form"
- :centered="true"
- v-if="visible"
- :visible.sync="visible"
- :title="title"
- :close-on-click-modal="false"
- width="80%"
- :modal="false"
- @close="cancel"
- >
- <add ref="add" @cancel="cancel" @handleAudit=handleAudit></add>
- </ele-modal>
- </div>
- </el-col>
- </template>
- <script>
- import { UpdateReceiveInformation } from '@/api/bpm/components/purchasingManage/purchaseorderreceive';
- import { approveTaskWithVariables } from '@/api/bpm/task';
- // import { listAllUserBind } from '@/api/system/organization';
- import { getWarehouseListByIds } from '@/api/bpm/components/saleManage/saleorder';
- import add from '@/views/bpm/stockManagement/add.vue';
- // 流程实例的详情页,可用于审批
- export default {
- name: '',
- components: {
- // Parser
- add
- },
- props: {
- businessId: {
- default: ''
- },
- taskId: {
- default: ''
- },
- id: {
- default: ''
- },
- id: {
- default: ''
- },
- taskDefinitionKey: {
- default: ''
- }
- },
- data() {
- return {
- form: {
- technicianId: '',
- reason: ''
- },
- visible: false,
- userOptions: []
- };
- },
- created() {},
- methods: {
- cancel() {
- this.visible = false;
- },
- async open() {
- if (!this.form.reason) {
- this.$message.error('审批意见不能为空');
- return;
- }
- this.visible = true;
- let data = await this.getTableValue();
- // console.log( this.$refs.add.pickerSuccess())
- this.$refs.add.pickerSuccess(data);
- },
- /** 处理转办审批人 */
- handleUpdateAssignee() {
- this.$emit('handleUpdateAssignee');
- },
- /** 退回 */
- handleBackList() {
- this.$emit('handleBackList');
- },
- async handleAudit(status) {
- let storemanIds = '';
- //发起人补充
- if (this.taskDefinitionKey === 'starter') {
- let arr = await this.getTableValue();
- if (!arr) {
- return;
- }
- let data = await UpdateReceiveInformation(arr);
- if (data.code != '0') {
- return;
- }
- }
- if (this.taskDefinitionKey === 'deptLeaderApprove') {
- let arr = await this.getTableValue();
- let ids = arr.productList.map((item) => item.warehouseId);
- let data = await getWarehouseListByIds(ids || []);
- storemanIds = data.map((item) => item.ownerId);
- }
- this._approveTaskWithVariables(
- status,
- storemanIds.length > 0
- ? Array.from(new Set(storemanIds)).toString()
- : ''
- );
- },
- async _approveTaskWithVariables(status, storemanIds) {
- let variables = {
- pass: !!status
- };
- if (storemanIds) {
- variables['storemanIds'] = storemanIds;
- }
- approveTaskWithVariables({
- id: this.taskId,
- reason: this.form.reason,
- variables
- }).then((res) => {
- if (res.data.code != '-1') {
- this.$emit('handleAudit', {
- status,
- title: status === 0 ? '驳回' : ''
- });
- }
- });
- },
- getTableValue() {
- return new Promise((resolve, reject) => {
- this.$emit('getTableValue', async (data) => {
- resolve(await data);
- });
- });
- }
- }
- };
- </script>
- <style lang="scss"></style>
|