| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- <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: '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"
- v-click-once
- @click="storeManagerApprove"
- >申请入库
- </el-button>
- <el-button
- icon="el-icon-circle-close"
- type="danger"
- size="mini"
- v-click-once
- @click="handleAudit(0)"
- >驳回
- </el-button>
- </div>
- </el-col>
- </template>
- <script>
- import { approveTaskWithVariablesOther } from '@/api/bpm/task';
- import outin from '@/api/warehouseManagement/outin';
- import storageApi from '@/api/warehouseManagement';
- export default {
- name: '',
- props: {
- businessId: {
- default: ''
- },
- taskId: {
- default: ''
- },
- id: {
- default: ''
- },
- taskDefinitionKey: {
- default: ''
- }
- },
- data() {
- return {
- isSaveLoading: false,
- form: {
- reason: '同意'
- },
- activeComp: ''
- };
- },
- mounted() {
- console.log('taskDefinitionKey-------------', this.taskDefinitionKey);
- },
- methods: {
- async storeManagerApprove() {
- let res = await this.getTableValue();
- let storageData = res.returnStorageData;
- if (!storageData) {
- return;
- }
- console.log('我需要的~~~~~~~~~~~~~~~~', res);
- // 入库来源isSkip 0-正常 1-外部(外部跳过内部审核流程)
- storageData.isSkip = 1;
- storageData.workOrderCode = res.form.workOrderCode;
- console.log('storageData~~~~~~~~~~~~~~~~', storageData);
- // return;
- // 验证outInDetailList中是否存在数量为空的情况
- // if (storageData.outInDetailList && storageData.outInDetailList.some(item => item.number ==undefined || item.number == '' || item.number == null)) {
- // this.$message.error('计量数量不为空');
- // return;
- // }
- try {
- this.isSaveLoading = true;
- let res = await storageApi.storage(storageData);
- approveTaskWithVariablesOther({
- id: this.taskId,
- reason: this.form.reason,
- outInId: res.data[0],
- businessId: this.businessId,
- variables: {
- pass: true
- }
- }).then((res) => {
- if (res.code != '-1') {
- this.$emit('handleAudit', {
- status: 1,
- title: '入库'
- });
- }
- this.isSaveLoading = false;
- });
- } catch (error) {
- this.isSaveLoading = false;
- this.$message.error('保存失败');
- }
- },
- async handleAudit(status) {
- let variables = {
- pass: !!status
- };
- storageApi
- .notPass({
- id: this.taskId,
- reason: this.form.reason,
- businessId: this.businessId,
- variables
- })
- .then((res) => {
- if (res.code != '-1') {
- this.$emit('handleAudit', {
- status,
- title: status === 0 ? '驳回' : ''
- });
- }
- });
- },
- /** 处理转办审批人 */
- handleUpdateAssignee() {
- this.$emit('handleUpdateAssignee');
- },
- /** 退回 */
- handleBackList() {
- this.$emit('handleBackList');
- },
- activeCompChange(activeComp) {
- this.activeComp = activeComp;
- },
- getTableValue() {
- return new Promise((resolve, reject) => {
- this.$emit('getTableValue', async (data) => {
- resolve(await data);
- });
- });
- }
- }
- };
- </script>
- <style lang="scss"></style>
|