|
@@ -115,12 +115,28 @@
|
|
|
</el-select>
|
|
|
</el-input>
|
|
|
</el-col>
|
|
|
+ <!-- <el-col :span="3" style="margin-left:10px">
|
|
|
+ <el-select placeholder="来源" clearable size="mini" style="width:100%" v-model="parmValue.create_source" @change=" pageInfo.curr = 1;
|
|
|
+ parmValue.page = 1;
|
|
|
+ searchList();">
|
|
|
+ <el-option value="0" label="手动创建商品" />
|
|
|
+ <el-option value="1" label="咨询成交商品" />
|
|
|
+ </el-select>
|
|
|
+ </el-col> -->
|
|
|
+
|
|
|
<el-col :span="3" class="fr" style="width: 66px; padding: 0 0 0 10px">
|
|
|
<el-button type="success" :size="searchSize" @click="resultList(selection)">保存</el-button>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
</div>
|
|
|
</template>
|
|
|
+
|
|
|
+ <template #create_source="{ scope }">
|
|
|
+ <el-tag size="mini" :type="scope.row.create_source === '1' ? 'warning' : ''">
|
|
|
+ {{ scope.row.create_source === "1" ? "咨询成交商品" : "手动创建商品" }}
|
|
|
+ </el-tag>
|
|
|
+ </template>
|
|
|
+
|
|
|
<template #good_thumb_img="{ scope }">
|
|
|
<div
|
|
|
v-if="scope.row.good_thumb_img"
|
|
@@ -167,6 +183,7 @@ export default {
|
|
|
"isonline",
|
|
|
"is_stock",
|
|
|
"isNoble",
|
|
|
+ "isConsult",
|
|
|
"checkType",
|
|
|
"is_combind"
|
|
|
],
|
|
@@ -195,6 +212,7 @@ export default {
|
|
|
loading: true,
|
|
|
showModelThis: false,
|
|
|
parmValue: {
|
|
|
+ create_source:"",
|
|
|
type_code: "", // 是否定制
|
|
|
supplierNo: "", // 供应商code
|
|
|
cat_id: [],
|
|
@@ -261,6 +279,7 @@ export default {
|
|
|
this.select = "1";
|
|
|
// this.supplierCode = [];
|
|
|
this.parmValue = {
|
|
|
+ create_source:"",
|
|
|
type_code: "", // 是否定制
|
|
|
supplierNo: "", // 供应商code
|
|
|
spucode: "", // 商品编码
|
|
@@ -361,93 +380,109 @@ export default {
|
|
|
}
|
|
|
this.selectLoading = false;
|
|
|
},
|
|
|
- async resultList(selection) {
|
|
|
- if (selection && selection.length > 1 && this.once) {
|
|
|
- this.$message.warning("只能选择一条商品信息!");
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- if (this.checkType) {
|
|
|
- const h = this.$createElement;
|
|
|
- const categoryIds = selection.map(({ cat_info, is_gold_price }) => ({
|
|
|
- id: String(cat_info[0].id),
|
|
|
- isGoldPrice: String(is_gold_price)
|
|
|
- }));
|
|
|
-
|
|
|
- console.log(categoryIds);
|
|
|
- const nobleMetalIds = categoryIds.filter(
|
|
|
- ({ id, isGoldPrice }) => id === "6" && isGoldPrice === "1"
|
|
|
- );
|
|
|
-
|
|
|
- if (
|
|
|
- nobleMetalIds.length > 0 &&
|
|
|
- categoryIds.length !== nobleMetalIds.length
|
|
|
- ) {
|
|
|
- // this.$message.warning('勾选商品的分类必须全部为"贵金属"或全部为"非贵金属"')
|
|
|
-
|
|
|
- this.$message({
|
|
|
+ createWarningMessage$1(_f,_s){
|
|
|
+ const h = this.$createElement;
|
|
|
+ this.$message({
|
|
|
+ message: h("p", null, [
|
|
|
+ h("span", null, "勾选商品必须全部为"),
|
|
|
+ h("i", { style: "color: red" }, _f),
|
|
|
+ h("span", null, "或者全部为"),
|
|
|
+ h( "i", { style: "color: red" }, _s)
|
|
|
+ ]),
|
|
|
+ type: "warning",
|
|
|
+ dangerouslyUseHTMLString: true
|
|
|
+ });
|
|
|
+ },
|
|
|
+ createWarningMessage$2(_f, _s){
|
|
|
+ const h = this.$createElement;
|
|
|
+ this.$message({
|
|
|
message: h("p", null, [
|
|
|
- h("span", null, "勾选商品必须全部为"),
|
|
|
- h("i", { style: "color: red" }, "开启实时金价的贵金属商品"),
|
|
|
- h("span", null, "或者全部为"),
|
|
|
- h(
|
|
|
- "i",
|
|
|
- { style: "color: red" },
|
|
|
- "未开启实时金价的贵金属商品和非贵金属商品"
|
|
|
- )
|
|
|
+ h("span", null, "如需添加"),
|
|
|
+ h("i", { style: "color: red" }, _f),
|
|
|
+ h("span", null, "请将已添加的所有"),
|
|
|
+ h( "i",{ style: "color: red" }, _s),
|
|
|
+ h("span", null, "删除!")
|
|
|
]),
|
|
|
type: "warning",
|
|
|
dangerouslyUseHTMLString: true
|
|
|
});
|
|
|
+ },
|
|
|
+ getAllGoods(selection){
|
|
|
+ return selection.map(({ cat_info, is_gold_price ,create_source}) => ({
|
|
|
+ create_source,
|
|
|
+ id: String(cat_info[0].id),
|
|
|
+ isGoldPrice: String(is_gold_price)
|
|
|
+ })
|
|
|
+ );
|
|
|
+ },
|
|
|
+ async resultList(selection) {
|
|
|
+ if (selection && selection.length > 1 && this.once) {
|
|
|
+ this.$message.warning("只能选择一条商品信息!");
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- const isNoble =
|
|
|
- nobleMetalIds.length > 0 &&
|
|
|
- categoryIds.length === nobleMetalIds.length;
|
|
|
- if (isNoble && !this.isNoble && this.isNoble !== null) {
|
|
|
- // this.$message.warning('如需添加 "贵金属商品",请将已添加的所有 "非贵金属商品" 删除!')
|
|
|
+ let isNoble = null;
|
|
|
+ let isConsult = null;
|
|
|
+ if (this.checkType) {
|
|
|
+ const allGoods = this.getAllGoods(selection);
|
|
|
+ if (allGoods.length === 0) {
|
|
|
+ this.$message.warning("至少选择一个商品!");
|
|
|
+ return;
|
|
|
+ }
|
|
|
|
|
|
- this.$message({
|
|
|
- message: h("p", null, [
|
|
|
- h("span", null, "如需添加"),
|
|
|
- h("i", { style: "color: red" }, "开启实时金价的贵金属商品"),
|
|
|
- h("span", null, "请将已添加的所有"),
|
|
|
- h(
|
|
|
- "i",
|
|
|
- { style: "color: red" },
|
|
|
- "未开启实时金价的贵金属商品和非贵金属商品"
|
|
|
- ),
|
|
|
- h("span", null, "删除!")
|
|
|
- ]),
|
|
|
- type: "warning",
|
|
|
- dangerouslyUseHTMLString: true
|
|
|
- });
|
|
|
+ if (allGoods.length > 100) {
|
|
|
+ this.$message.warning("商品数量不能超过100!");
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- if (!isNoble && this.isNoble && this.isNoble !== null) {
|
|
|
- this.$message({
|
|
|
- message: h("p", null, [
|
|
|
- h("span", null, "如需添加"),
|
|
|
- h(
|
|
|
- "i",
|
|
|
- { style: "color: red" },
|
|
|
- "未开启实时金价的贵金属商品和非贵金属商品"
|
|
|
- ),
|
|
|
- h("span", null, "请将已添加的所有"),
|
|
|
- h("i", { style: "color: red" }, "开启实时金价的贵金属商品"),
|
|
|
- h("span", null, "删除!")
|
|
|
- ]),
|
|
|
- type: "warning",
|
|
|
- dangerouslyUseHTMLString: true
|
|
|
- });
|
|
|
+ // 咨询成交id集合
|
|
|
+ const consultList = allGoods.filter(({create_source}) => create_source === "1")
|
|
|
+ // 不是全部为咨询成交商品或手动创建商品
|
|
|
+ if(consultList.length > 0 && allGoods.length !== consultList.length){
|
|
|
+ this.createWarningMessage$1("咨询成交商品", "手动创建商品")
|
|
|
+ return
|
|
|
+ }
|
|
|
+ // 本次添加是否全部为咨询商品..
|
|
|
+ isConsult = consultList.length > 0 && allGoods.length === consultList.length
|
|
|
+
|
|
|
+ //本次添加全部为咨询商品,上次添加为手动创建商品
|
|
|
+ if(isConsult && !this.isConsult && this.isConsult !== null){
|
|
|
+ this.createWarningMessage$2("咨询成交商品", "手动创建商品")
|
|
|
return;
|
|
|
}
|
|
|
+
|
|
|
+ //本次添加全部为手动创建商品,上次添加咨询商品
|
|
|
+ if(!isConsult && this.isConsult && this.isConsult !== null){
|
|
|
+ this.createWarningMessage$2("手动创建商品","咨询成交商品")
|
|
|
+ return
|
|
|
+ }
|
|
|
+ // 到这里不是初始化就是全部为咨询商品或者全部为手动创建的商品,区分出来,手动创建商品需要判断贵金属
|
|
|
+ if(!this.isConsult && !isConsult){
|
|
|
+ // 手动创建商品,走是否贵金属校验...
|
|
|
+ const nobleMetalIds = allGoods.filter(({ id, isGoldPrice }) => id === "6" && isGoldPrice === "1");
|
|
|
+ // 当前勾选商品中有贵金属和非贵金属
|
|
|
+ if (nobleMetalIds.length > 0 && allGoods.length !== nobleMetalIds.length ) {
|
|
|
+ this. createWarningMessage$1("开启实时金价贵金属商品", "未开启实时金价的贵金属商品和非贵金属商品");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ // 本次添加的是否全部为贵金属....
|
|
|
+ isNoble = nobleMetalIds.length > 0 && allGoods.length === nobleMetalIds.length;
|
|
|
+ //上次添加的不是贵金属商品,且本次添加的是贵金属商品
|
|
|
+ if (isNoble && !this.isNoble && this.isNoble !== null) {
|
|
|
+ this.createWarningMessage$2("开启实时金价贵金属商品", "未开启实时金价的贵金属商品和非贵金属商品")
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ //上次添加的是贵金属商品,且本次添加不是贵金属商品
|
|
|
+ if (!isNoble && this.isNoble && this.isNoble !== null) {
|
|
|
+ this.createWarningMessage$2("未开启实时金价的贵金属商品和非贵金属商品","开启实时金价贵金属商品")
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
this.showModelThis = false;
|
|
|
- this.$emit("resultList", selection);
|
|
|
+ //本次添加是否贵金属和是否咨询商品传递出去,下次传入作为上次添加的结果判断条件
|
|
|
+ this.$emit("resultList", selection, {isNoble, isConsult });
|
|
|
}
|
|
|
}
|
|
|
};
|