|
@@ -4,22 +4,26 @@
|
|
|
class="bargainListDetail-main"
|
|
|
v-if="powers && powers.length > 0 && powers.some((item) => item == '007')"
|
|
|
>
|
|
|
- <el-tabs v-model="projectTabs">
|
|
|
+ <el-tabs v-model="projectTabs" v-loading="loading">
|
|
|
<el-tab-pane label="议价单详情" name="1">
|
|
|
<el-collapse v-model="activeNames" style="margin: -18px 0 0 0">
|
|
|
<el-collapse-item :title="'议价详情'" name="1">
|
|
|
<show-data-table
|
|
|
style="padding: -5px 0 10px 0"
|
|
|
:newTime="newTime"
|
|
|
- v-if="newTime !== '' && queryType === 'view'"
|
|
|
+ v-if="newTime !== ''"
|
|
|
:sitem="sitem"
|
|
|
:columns="editColumns"
|
|
|
>
|
|
|
<template slot="status">
|
|
|
<el-tag
|
|
|
:size="tablebtnSize"
|
|
|
+ :type="
|
|
|
+ (statusList.find((item) => item.id == sitem.status) || {})
|
|
|
+ .type || ''
|
|
|
+ "
|
|
|
v-text="
|
|
|
- (options.find((item) => item.id == sitem.status) || {})
|
|
|
+ (statusList.find((item) => item.id == sitem.status) || {})
|
|
|
.label || '--'
|
|
|
"
|
|
|
></el-tag>
|
|
@@ -136,7 +140,7 @@
|
|
|
<show-data-table
|
|
|
style="padding: -5px 0 10px 0"
|
|
|
:newTime="newTime"
|
|
|
- v-if="newTime !== '' && queryType === 'view'"
|
|
|
+ v-if="newTime !== ''"
|
|
|
:sitem="sitem"
|
|
|
:columns="costArr"
|
|
|
>
|
|
@@ -144,89 +148,54 @@
|
|
|
<show-data-table
|
|
|
style="padding: -5px 0 10px 0"
|
|
|
:newTime="newTime"
|
|
|
- v-if="newTime !== '' && queryType === 'view'"
|
|
|
+ v-if="newTime !== ''"
|
|
|
:sitem="sitem"
|
|
|
:columns="bargainingArr"
|
|
|
>
|
|
|
</show-data-table>
|
|
|
</el-collapse-item>
|
|
|
- <el-collapse-item
|
|
|
- title="业务部门审批"
|
|
|
- name="2"
|
|
|
- v-if="status == '0' && powers.some((item) => item == '043')"
|
|
|
- >
|
|
|
+ <el-collapse-item title="业务部门审批" name="2">
|
|
|
<exam-formss
|
|
|
- :statusList="[]"
|
|
|
:newTime="newTime"
|
|
|
- :disabled="false"
|
|
|
- :isMust="false"
|
|
|
-
|
|
|
- @searchChange="examForm($event, 1, '业务部门')"
|
|
|
+ v-if="newTime !== ''"
|
|
|
+ :disabled="
|
|
|
+ !(status == '0' && powers.some((item) => item == '043'))
|
|
|
+ "
|
|
|
+ :sitem="orderItem"
|
|
|
+ @searchChange="examFormSubmit($event, '业务部门')"
|
|
|
/>
|
|
|
</el-collapse-item>
|
|
|
- <el-collapse-item
|
|
|
- title="财务专员审批"
|
|
|
- name="3"
|
|
|
- v-if="status == '2' && powers.some((item) => item == '058')"
|
|
|
- >
|
|
|
+ <el-collapse-item title="财务专员审批" name="3">
|
|
|
<exam-formss
|
|
|
- :statusList="[]"
|
|
|
:newTime="newTime"
|
|
|
- :remarkTxt="sitem.remark"
|
|
|
- remarkTitle="业务主管"
|
|
|
- :disabled="false"
|
|
|
- :isMust="false"
|
|
|
- @searchChange="examForm($event, 2, '财务专员')"
|
|
|
+ v-if="newTime !== ''"
|
|
|
+ :disabled="
|
|
|
+ !(status == '2' && powers.some((item) => item == '058'))
|
|
|
+ "
|
|
|
+ :sitem="moneyDirItem"
|
|
|
+ @searchChange="examFormSubmit($event, '财务专员')"
|
|
|
/>
|
|
|
</el-collapse-item>
|
|
|
- <el-collapse-item
|
|
|
- title="财务主管审批"
|
|
|
- name="4"
|
|
|
- v-if="status == '4' && powers.some((item) => item == '059')"
|
|
|
- >
|
|
|
+ <el-collapse-item title="财务主管审批" name="4">
|
|
|
<exam-formss
|
|
|
- :statusList="[]"
|
|
|
:newTime="newTime"
|
|
|
- :remarkTxt="sitem.remark"
|
|
|
- remarkTitle="财务专员"
|
|
|
- :disabled="false"
|
|
|
- :isMust="false"
|
|
|
- @searchChange="examForm($event, 3, '财务主管')"
|
|
|
+ v-if="newTime !== ''"
|
|
|
+ :disabled="
|
|
|
+ !(status == '4' && powers.some((item) => item == '059'))
|
|
|
+ "
|
|
|
+ :sitem="moneyItem"
|
|
|
+ @searchChange="examFormSubmit($event, '财务主管')"
|
|
|
/>
|
|
|
</el-collapse-item>
|
|
|
-
|
|
|
- <el-collapse-item
|
|
|
- title="BOSS审批"
|
|
|
- name="5"
|
|
|
- v-if="status == '7' && powers.some((item) => item == '084')"
|
|
|
- >
|
|
|
- <exam-formss
|
|
|
- :statusList="[]"
|
|
|
- :newTime="newTime"
|
|
|
- :disabled="false"
|
|
|
- :remarkTxt="sitem.remark"
|
|
|
- remarkTitle="财务主管"
|
|
|
- :isMust="false"
|
|
|
- @searchChange="examForm($event, 7, 'BOSS')"
|
|
|
- />
|
|
|
- </el-collapse-item>
|
|
|
-
|
|
|
- <el-collapse-item
|
|
|
- title="驳回意见详情"
|
|
|
- name="6"
|
|
|
- v-if="
|
|
|
- status == '3' ||
|
|
|
- status == '5' ||
|
|
|
- status == '8' ||
|
|
|
- status == '11'
|
|
|
- "
|
|
|
- >
|
|
|
+ <el-collapse-item title="BOSS审批" name="5">
|
|
|
<exam-formss
|
|
|
- :statusList="[]"
|
|
|
:newTime="newTime"
|
|
|
- flag="0"
|
|
|
- :remarkTxt="sitem.remark"
|
|
|
- remarkTitle="驳回详情"
|
|
|
+ v-if="newTime !== ''"
|
|
|
+ :disabled="
|
|
|
+ !(status == '7' && powers.some((item) => item == '084'))
|
|
|
+ "
|
|
|
+ :sitem="BossItem"
|
|
|
+ @searchChange="examFormSubmit($event, 'BOSS')"
|
|
|
/>
|
|
|
</el-collapse-item>
|
|
|
</el-collapse>
|
|
@@ -247,7 +216,7 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
<script>
|
|
|
-import examFormss from "./exam-form/main.vue";
|
|
|
+import examFormss from "./exam-form.vue";
|
|
|
import asyncRequest from "@/apis/service/sellOut/bargainList";
|
|
|
import resToken from "@/mixins/resToken";
|
|
|
import { mapGetters } from "vuex";
|
|
@@ -268,6 +237,7 @@ import {
|
|
|
options10,
|
|
|
options11,
|
|
|
options12,
|
|
|
+ statusList
|
|
|
} from "./columns";
|
|
|
export default {
|
|
|
components: {
|
|
@@ -292,23 +262,23 @@ export default {
|
|
|
|
|
|
data() {
|
|
|
return {
|
|
|
- statusList: [],
|
|
|
size: "small",
|
|
|
- costArr: costArr,
|
|
|
- bargainingArr: bargainingArr,
|
|
|
- editColumns: editColumns,
|
|
|
- options1: options1,
|
|
|
- options2: options2,
|
|
|
- options3: options3,
|
|
|
- options4: options4,
|
|
|
- options5: options5,
|
|
|
- options6: options6,
|
|
|
- options7: options7,
|
|
|
- options8: options8,
|
|
|
- options9: options9,
|
|
|
- options10: options10,
|
|
|
- options11: options11,
|
|
|
- options12: options12,
|
|
|
+ costArr,
|
|
|
+ bargainingArr,
|
|
|
+ editColumns,
|
|
|
+ options1,
|
|
|
+ options2,
|
|
|
+ options3,
|
|
|
+ options4,
|
|
|
+ options5,
|
|
|
+ options6,
|
|
|
+ options7,
|
|
|
+ options8,
|
|
|
+ options9,
|
|
|
+ options10,
|
|
|
+ options11,
|
|
|
+ options12,
|
|
|
+ statusList,
|
|
|
projectTabs: "1",
|
|
|
activeNames: ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"],
|
|
|
newTime: "",
|
|
@@ -317,32 +287,11 @@ export default {
|
|
|
queryId: "",
|
|
|
status: "",
|
|
|
sitem: null,
|
|
|
- options: [
|
|
|
- // 0待业务主管审核
|
|
|
- { id: "0", label: "待业务主管审核", type: "" },
|
|
|
- { id: "1", label: "业务主管审核通过", type: "" },
|
|
|
- // 2 业务税率未通过直接财务专员审批
|
|
|
- // { id: "2", label: "业务税率未通过", type: "" },
|
|
|
- { id: "2", label: "待财务专员审批", type: "" },
|
|
|
- { id: "3", label: "业务驳回", type: "" },
|
|
|
- // { id: "4", label: "专员通过", type: "" },
|
|
|
- // 4 专员通过后直接财务主管审核
|
|
|
- { id: "4", label: "待财务主管审核", type: "" },
|
|
|
- { id: "5", label: "专员驳回", type: "" },
|
|
|
- { id: "6", label: "财务通过", type: "" },
|
|
|
- // { id: "7", label: "财务税率未通过", type: "" },
|
|
|
- // 7 财务税率未通过直接BOSS审批
|
|
|
- { id: "7", label: "待BOSS审批", type: "" },
|
|
|
- { id: "8", label: "财务驳回", type: "" },
|
|
|
- { id: "9", label: "boss通过", type: "" },
|
|
|
- { id: "10", label: "boss税率越线通过", type: "" },
|
|
|
- { id: "11", label: "boss驳回", type: "" },
|
|
|
|
|
|
- // 0待审核 1业务主管审核通过
|
|
|
- // 2 业务税率未通过 3 业务驳回 4 专员通过
|
|
|
- // 5 专员驳回 6 财务通过 7 财务税率未通过
|
|
|
- // 8财务驳回 9 boss通过 10 boss 税率越线通过 11 boss驳回
|
|
|
- ],
|
|
|
+ orderItem: {},
|
|
|
+ moneyDirItem: {},
|
|
|
+ moneyItem: {},
|
|
|
+ BossItem: {},
|
|
|
};
|
|
|
},
|
|
|
mounted() {
|
|
@@ -374,24 +323,35 @@ export default {
|
|
|
this.loading = false;
|
|
|
if (code === 0) {
|
|
|
this.sitem = JSON.parse(JSON.stringify(data));
|
|
|
- const { status, can } = this.sitem;
|
|
|
-
|
|
|
- // if (can && can.length > 0) {
|
|
|
- // let cat_id = [];
|
|
|
- // can.forEach((e) => {
|
|
|
- // cat_id.push(e.id);
|
|
|
- // });
|
|
|
- // this.sitem.cat_id = cat_id;
|
|
|
- // } else {
|
|
|
- // this.sitem.cat_id = [];
|
|
|
- // }
|
|
|
+ const { status, exam_info } = this.sitem;
|
|
|
+ this.orderItem = {};
|
|
|
+ this.moneyDirItem = {};
|
|
|
+ this.moneyItem = {};
|
|
|
+ this.BossItem = {};
|
|
|
+ if (exam_info && exam_info.length > 0) {
|
|
|
+ exam_info.forEach((e) => {
|
|
|
+ console.log(e.status);
|
|
|
+ switch (e.status + "") {
|
|
|
+ case "0":
|
|
|
+ this.orderItem = JSON.parse(JSON.stringify(e));
|
|
|
+ break;
|
|
|
+ case "2":
|
|
|
+ this.moneyDirItem = JSON.parse(JSON.stringify(e));
|
|
|
+ break;
|
|
|
+ case "4":
|
|
|
+ this.moneyItem = JSON.parse(JSON.stringify(e));
|
|
|
+ break;
|
|
|
+ case "7":
|
|
|
+ this.BossItem = JSON.parse(JSON.stringify(e));
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ this.orderItem = JSON.parse(JSON.stringify(e));
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
|
|
|
this.status = status;
|
|
|
- console.log("当前对应状态", this.status);
|
|
|
- console.log("当前数据",this.sitem)
|
|
|
- console.log(JSON.parse(JSON.stringify(this.sitem.exam_info)))
|
|
|
- console.log(JSON.parse(this.sitem.exam_info))
|
|
|
-
|
|
|
+
|
|
|
this.getNewTime();
|
|
|
} else if (code >= 100 && code <= 104) {
|
|
|
await this.logout();
|
|
@@ -405,96 +365,74 @@ export default {
|
|
|
|
|
|
// 点击业务审核的保存按钮
|
|
|
|
|
|
- async examForm(e, type, title) {
|
|
|
- console.log(e, type, title);
|
|
|
+ async examFormSubmit(e, title) {
|
|
|
if (!this.loading) {
|
|
|
let model = {
|
|
|
bargainNo: this.queryId,
|
|
|
status: e.state,
|
|
|
- // remark: e.state === "1" ? "" : e.remark,
|
|
|
remark: e.remark,
|
|
|
};
|
|
|
+ // await this.setBossStatus(model, title);
|
|
|
|
|
|
- // if (type === 1) {
|
|
|
- // model.status = e.state === "1" ? "2" : "5";
|
|
|
- // } else if (type === 2) {
|
|
|
- // model.status = "3";
|
|
|
- // }else if (type === 3) {
|
|
|
- // model.status = "8";
|
|
|
- // }else if (type === 8) {
|
|
|
- // model.status = e.state === "1" ? "4" : "9";
|
|
|
- // } else {
|
|
|
- // model.status = e.state === "1" ? "4" : "6";
|
|
|
- // }
|
|
|
-
|
|
|
- return;
|
|
|
- await this.setstatus(`提交${title}审核`, model);
|
|
|
+ // await this.setstatus(`提交${title}审核`, model);
|
|
|
+ await this.statusSubmit(model, title);
|
|
|
}
|
|
|
},
|
|
|
- async setstatus(detail, model) {
|
|
|
- //if(this.sitem.status == BOSS 并且 最低售价越过红线)
|
|
|
- //需要补充逻辑字段
|
|
|
- if (this.sitem.status == 7) {
|
|
|
- await this.$confirm(
|
|
|
- `当前最低售价为${this.sitem.lower_price}确定要继续吗?`,
|
|
|
- {
|
|
|
- confirmButtonText: "确定",
|
|
|
- cancelButtonText: "取消",
|
|
|
- type: "warning",
|
|
|
+ async setstatus(title, model) {
|
|
|
+ await this.$confirm(`确定要${title}?`, {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning",
|
|
|
+ })
|
|
|
+ .then(async () => {
|
|
|
+ const { after_price, lower_price } = this.sitem;
|
|
|
+ if (this.status === "7" && after_price * 1 < lower_price * 1) {
|
|
|
+ this.loading = false;
|
|
|
+ await this.setBossStatus(model, title);
|
|
|
+ } else {
|
|
|
+ await this.statusSubmit(model, title);
|
|
|
}
|
|
|
- )
|
|
|
- .then(async () => {
|
|
|
- await this.$confirm(`确定要${detail}?`, {
|
|
|
- confirmButtonText: "确定",
|
|
|
- cancelButtonText: "取消",
|
|
|
- type: "warning",
|
|
|
- })
|
|
|
- .then(async () => {
|
|
|
- let res = await asyncRequest.status(model);
|
|
|
- console.log("res", res);
|
|
|
- if (res && res.code === 0) {
|
|
|
- this.$notify.success({
|
|
|
- title: "提交成功!",
|
|
|
- message: "",
|
|
|
- });
|
|
|
- await this.initForm();
|
|
|
- } else if (res && res.code >= 100 && res.code <= 104) {
|
|
|
- await this.logout();
|
|
|
- } else {
|
|
|
- this.$message.warning(res.message);
|
|
|
- }
|
|
|
- })
|
|
|
- .catch(() => {
|
|
|
- console.log("取消");
|
|
|
- });
|
|
|
- })
|
|
|
- .catch(() => {
|
|
|
- console.log("取消");
|
|
|
- });
|
|
|
- } else {
|
|
|
- await this.$confirm(`确定要${detail}?`, {
|
|
|
+ })
|
|
|
+ .catch(() => {
|
|
|
+ this.loading = false;
|
|
|
+ console.log("取消");
|
|
|
+ });
|
|
|
+ },
|
|
|
+ async setBossStatus(title, model) {
|
|
|
+ // const
|
|
|
+ await this.$confirm(
|
|
|
+ `当前商品同意议价后,售价已低于系统最低售价${this.sitem.lower_price}元!`,
|
|
|
+ `最终售价已低于系统最低售价!是否继续?`,
|
|
|
+
|
|
|
+ {
|
|
|
confirmButtonText: "确定",
|
|
|
- cancelButtonText: "取消",
|
|
|
- type: "warning",
|
|
|
+ cancelButtonText: "取消2",
|
|
|
+ type: "error",
|
|
|
+ }
|
|
|
+ )
|
|
|
+ .then(async () => {
|
|
|
+ this.loading = true;
|
|
|
+ await this.statusSubmit(model, title);
|
|
|
})
|
|
|
- .then(async () => {
|
|
|
- let res = await asyncRequest.status(model);
|
|
|
- console.log("res", res);
|
|
|
- if (res && res.code === 0) {
|
|
|
- this.$notify.success({
|
|
|
- title: "提交成功!",
|
|
|
- message: "",
|
|
|
- });
|
|
|
- await this.initForm();
|
|
|
- } else if (res && res.code >= 100 && res.code <= 104) {
|
|
|
- await this.logout();
|
|
|
- } else {
|
|
|
- this.$message.warning(res.message);
|
|
|
- }
|
|
|
- })
|
|
|
- .catch(() => {
|
|
|
- console.log("取消");
|
|
|
- });
|
|
|
+ .catch(() => {
|
|
|
+ this.loading = false;
|
|
|
+ console.log("取消1");
|
|
|
+ });
|
|
|
+ },
|
|
|
+ async statusSubmit(model, title) {
|
|
|
+ const { code, data, message } = await asyncRequest.status(model);
|
|
|
+ this.loading = false;
|
|
|
+ // console.log("res", data);
|
|
|
+ if (code === 0) {
|
|
|
+ this.$notify.success({
|
|
|
+ title: title + "成功!",
|
|
|
+ message: "",
|
|
|
+ });
|
|
|
+ // await this.initForm();
|
|
|
+ } else if (code >= 100 && code <= 104) {
|
|
|
+ await this.logout();
|
|
|
+ } else {
|
|
|
+ this.$message.warning(message);
|
|
|
}
|
|
|
},
|
|
|
},
|