feat: 0523开发询价模块

演示数据2.0
chenhc 11 months ago
parent 3456cf88b5
commit cf320a66c1

@ -77,3 +77,11 @@ export function delInquiryItem(id) {
})
}
//发起报价
export function submitOffer(data) {
return request({
url: "/purchase/purInquiry/submitOffer",
method: 'post',
data: data
})
}

@ -77,3 +77,11 @@ export function delInquiryItem(id) {
})
}
export function submitApproval(data) {
return request({
url: "/purchase/purInquiryOffer/submitApproval",
method: 'post',
data: data
})
}

@ -247,7 +247,7 @@
import approvalFlowDetail from "@/components/ApprovalFlow";
import purInquiryEdit from "@/views/purchase/purInquiry/purInquiryEditDialog";
import purInquirySelectPlan from "@/views/purchase/purInquiry/purInquirySelectPlan";
import {selectPurInquiryDetail as listItem, list, listItemDetail ,delInquiryItemAll,inserThrOrderWeb} from "@/api/purchase/purInquiry";
import {selectPurInquiryDetail as listItem, list, listItemDetail ,delInquiryItemAll,inserThrOrderWeb,submitOffer} from "@/api/purchase/purInquiry";
import {findInvByUser} from "@/api/system/invSubWarehouse";
export default {
@ -378,10 +378,34 @@ export default {
},
methods: {
submitOffer(row){
this.$confirm("是否确定发起报价?", "提示", {
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning",
})
.then(() => {
this.loading = true;
submitOffer(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;
},
showApprovalFlowDetail(row) {
this.idQuery.approvalFlowId = row.approvalFlowId

@ -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;

@ -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>

@ -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>

Loading…
Cancel
Save