|
|
|
@ -42,7 +42,7 @@
|
|
|
|
|
<el-button icon="el-icon-view" type="primary" @click="hideSearch">显示/隐藏搜索栏</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-refresh" @click="onReset">重置</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-search" @click="onSubmitFind">查询</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-plus" @click="newDistributionForm()" :loading="loading">新增询价计划单</el-button>
|
|
|
|
|
<!-- <el-button type="primary" icon="el-icon-plus" @click="newDistributionForm()" :loading="loading">新增询价计划单</el-button>-->
|
|
|
|
|
<!-- <el-button type="primary" icon="el-icon-plus" @click="newDistributionFormPlan()" :loading="loading">导入申购</el-button>-->
|
|
|
|
|
</el-button-group>
|
|
|
|
|
</div>
|
|
|
|
@ -76,13 +76,14 @@
|
|
|
|
|
|
|
|
|
|
<el-table-column label="操作" width="120">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button type="text" size="small" @click.native="newDistributionForm(scope.$index, scope.row)" v-show="(scope.row.status=='' || scope.row.status == 1) ">编辑
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button type="text" size="small" @click.native.stop="deleteDialog(scope.row)" v-show="(scope.row.status=='' || scope.row.status==1) " >删除</el-button>
|
|
|
|
|
<!-- <el-button type="text" size="small" @click.native="newDistributionForm(scope.$index, scope.row)" v-show="(scope.row.status=='' || scope.row.status == 1) ">编辑-->
|
|
|
|
|
<!-- </el-button>-->
|
|
|
|
|
<!-- <el-button type="text" size="small" @click.native.stop="deleteDialog(scope.row)" v-show="(scope.row.status=='' || scope.row.status==1) " >删除</el-button>-->
|
|
|
|
|
|
|
|
|
|
<el-button type="text" size="small" @click.native.stop="showApprovalFlowDetail(scope.row)"
|
|
|
|
|
v-show=" scope.row.status != 1 && scope.row.status !='' && scope.row.approvalFlowId != null">审批详情
|
|
|
|
|
</el-button>
|
|
|
|
|
<!-- <el-button type="text" size="small" @click.native.stop="showApprovalFlowDetail(scope.row)"-->
|
|
|
|
|
<!-- v-show=" scope.row.status != 1 && scope.row.status !='' && scope.row.approvalFlowId != null">审批详情-->
|
|
|
|
|
<!-- </el-button>-->
|
|
|
|
|
<el-button type="text" size="small" @click.native.stop="submitApproval(scope.row)" >发起审批</el-button>
|
|
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
@ -235,7 +236,7 @@
|
|
|
|
|
import approvalFlowDetail from "@/components/ApprovalFlow";
|
|
|
|
|
import purInquiryEdit from "@/views/purchase/purInquiryOffer/purInquiryOfferEditDialog";
|
|
|
|
|
import purInquirySelectPlan from "@/views/purchase/purInquiryOffer/purInquiryOfferSelectPlan";
|
|
|
|
|
import {selectPurInquiryDetail as listItem, list, listItemDetail ,delInquiryItemAll,inserThrOrderWeb} from "@/api/purchase/purInquiryOffer";
|
|
|
|
|
import {selectPurInquiryDetail as listItem, list, listItemDetail ,delInquiryItemAll,inserThrOrderWeb,submitApproval} from "@/api/purchase/purInquiryOffer";
|
|
|
|
|
import {findInvByUser} from "@/api/system/invSubWarehouse";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
@ -274,7 +275,7 @@ export default {
|
|
|
|
|
selectPlan: "选择申购单",
|
|
|
|
|
},
|
|
|
|
|
statusMap: {
|
|
|
|
|
1: "草稿",
|
|
|
|
|
1: "待报价",
|
|
|
|
|
2: "审核中",
|
|
|
|
|
3: "通过",
|
|
|
|
|
4: "拒绝"
|
|
|
|
@ -285,7 +286,7 @@ export default {
|
|
|
|
|
{name: '短期' ,code: 3 }
|
|
|
|
|
],
|
|
|
|
|
statusList:[
|
|
|
|
|
{name: '草稿' ,code: 1 },
|
|
|
|
|
{name: '待报价' ,code: 1 },
|
|
|
|
|
{name: '未审核' ,code: 2 },
|
|
|
|
|
{name: '已审核' ,code: 3 }
|
|
|
|
|
],
|
|
|
|
@ -366,6 +367,31 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
|
submitApproval(row){
|
|
|
|
|
this.$confirm("是否确定发起审批?", "提示", {
|
|
|
|
|
confirmButtonText: "确定",
|
|
|
|
|
cancelButtonText: "取消",
|
|
|
|
|
type: "warning",
|
|
|
|
|
})
|
|
|
|
|
.then(() => {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
submitApproval(row)
|
|
|
|
|
.then(response => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.$message.success("提交成功!");
|
|
|
|
|
this.getList();
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
itemDetailDialog(row){
|
|
|
|
|
this.handleItemDetail(row)
|
|
|
|
|
this.itemDetailDialogVisible = true;
|
|
|
|
|