| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- <template>
- <el-col :span="16" :offset="6">
- <el-form label-width="100px" ref="formRef" :model="form">
- <el-form-item
- label="审批建议"
- style="margin-bottom: 20px"
- :rules="{
- required: true,
- message: '请输入',
- trigger: 'blur'
- }"
- >
- <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)"
- >通过
- </el-button>
- <el-button
- icon="el-icon-circle-close"
- type="danger"
- size="mini"
- @click="handleAudit(0)"
- >驳回
- </el-button>
- </div>
- </el-col>
- </template>
- <script>
- import {approveTaskWithVariables, rejectTask} from '@/api/bpm/task';
- import storageApi from '@/api/warehouseManagement';
- // 流程实例的详情页,可用于审批
- export default {
- name: '',
- props: {
- businessId: {
- default: ''
- },
- taskId: {
- default: ''
- },
- id: {
- default: ''
- },
- taskDefinitionKey: {
- default: ''
- }
- },
- data() {
- return {
- statusOption: [
- {
- label: '盘盈',
- value: '2',
- numKey: 'surplusQuantity'
- },
- {
- label: '丢失',
- value: '3',
- numKey: 'loseQuantity'
- },
- {
- label: '破损',
- value: '4',
- numKey: 'wornQuantity'
- }
- ],
- form: {
- reason: ''
- },
- userOptions: []
- };
- },
- methods: {
- async handleAudit(status) {
- await this._approveTaskWithVariables(status);
- },
- getTableValue() {
- return new Promise((resolve) => {
- this.$emit('getTableValue', async (data) => {
- resolve(await data);
- });
- });
- },
- async _approveTaskWithVariables(status) {
- if (this.taskDefinitionKey == 'Activity_1l4tn01') {
- // 驳回(主管审核)
- if (!status) {
- const data = await storageApi.notProfitLoss({
- id: this.businessId,
- reason: this.form.reason,
- taskId: this.taskId
- });
- if (data.data.code != '-1') {
- this.$emit('handleAudit', {
- status,
- title: '驳回'
- });
- }
- return;
- }
- } else if (this.taskDefinitionKey == 'Activity_1ftg2hu') {
- // 通过(仓管审核)
- if (!!status) {
- console.log('通过了!!!!');
- let infoData = await this.getTableValue();
- let params = infoData.info[0].planDetailVOList.map((item) => {
- let filterArr = this.statusOption.filter(
- (ite) => ite.value == item.status
- )[0];
- console.log(filterArr.numKey);
- return {
- id: this.businessId,
- isAdd: filterArr.numKey == 'surplusQuantity' ? true : false,
- packingNo: item.packageNo,
- quantity: item[filterArr.numKey]
- };
- });
- try {
- await storageApi.addSubtractStockPacking(params);
- } catch (error) {
- this.$message.error('保存失败');
- return;
- }
- }
- }
- let variables = {
- pass: !!status
- };
- let API = !!status ? approveTaskWithVariables : rejectTask;
- API({
- id: this.taskId,
- reason: this.form.reason,
- variables
- }).then((res) => {
- if (res.data.code != '-1') {
- this.$emit('handleAudit', {
- status,
- title: status === 0 ? '驳回' : ''
- });
- }
- });
- }
- }
- };
- </script>
- <style lang="scss"></style>
|