|
@@ -14,28 +14,26 @@
|
|
|
:span="24"
|
|
|
style="padding: 12px 16px 12px 16px; text-align: right"
|
|
|
>
|
|
|
- <!-- 贵金属重量*供应商采购金价 + 工艺费*贵金属重量+加标费+包装费+证书费+成本裸价+运费+其他费用=成本合计 -->
|
|
|
- <!-- 贵金属重量*供应商采购金价 + 工艺费*贵金属重量+加标费+包装费+证书费+成本裸价+运费=成本合计 -->
|
|
|
- <!-- ps:没有其他费用-->
|
|
|
- <!-- (ruleForm.noble_weight*newGoldPrice)+ (ruleForm.cost_fee*ruleForm.noble_weight)
|
|
|
+ <!-- $total_fee(成本合计初始价格) =打样费/购买数量 + 开模费/购买数量 + 金属重量* 最新金价 + 工艺费* 金属重量+包装费+加标费+证书费+产品裸价0+运费; -->
|
|
|
+ <!-- ps:没有其他费用-->
|
|
|
+ <!-- (ruleForm.noble_weight*newGoldPrice)+ (ruleForm.cost_fee*ruleForm.noble_weight)
|
|
|
+ ruleForm.mark_fee + ruleForm.pakge_fee + ruleForm.cert_fee + ruleForm.nake_fee + ruleForm.delivery_fee-->
|
|
|
- <!-- 乘法精度函数调用在mounted(初始调用),number_change函数(改变调用),如果放在dom层初始值时undifind会报错 r1,r2-->
|
|
|
- <span
|
|
|
- > 成本合计:<span>
|
|
|
-
|
|
|
- {{
|
|
|
- accAdd(
|
|
|
- r1,
|
|
|
- r2,
|
|
|
- ruleForm.mark_fee,
|
|
|
- ruleForm.pakge_fee,
|
|
|
- ruleForm.cert_fee,
|
|
|
- ruleForm.nake_fee,
|
|
|
- ruleForm.delivery_fee,
|
|
|
- )
|
|
|
- }}
|
|
|
- <!-- {{ruleForm.delivery_fee}} -->
|
|
|
- </span></span
|
|
|
+ <!-- 乘法精度函数调用在mounted(初始调用),number_change函数(改变调用),如果放在dom层初始值时undifind会报错 r1,r2-->
|
|
|
+ <span>
|
|
|
+ <!-- {{
|
|
|
+ (ruleForm.demo_fee/askItem.num)+
|
|
|
+ (ruleForm.open_fee/askItem.num)+
|
|
|
+ (ruleForm.noble_weight*newGoldPrice)+
|
|
|
+ (ruleForm.cost_fee*ruleForm.noble_weight)+
|
|
|
+ ruleForm.pakge_fee+
|
|
|
+ ruleForm.mark_fee+
|
|
|
+ ruleForm.cert_fee+ruleForm.nake_fee+ruleForm.delivery_fee
|
|
|
+
|
|
|
+ }} -->
|
|
|
+ 预计成本合计:<span>
|
|
|
+
|
|
|
+ {{newPrice}}
|
|
|
+ </span></span
|
|
|
>
|
|
|
<span
|
|
|
class="fl"
|
|
@@ -479,7 +477,7 @@
|
|
|
<search-metal-kind
|
|
|
:value="ruleForm.metal_id"
|
|
|
:size="'mini'"
|
|
|
- :disabled="false"
|
|
|
+ :disabled="type === 'view'"
|
|
|
:isDetail="true"
|
|
|
:placeholder="'金属种类'"
|
|
|
@searchChange="metal_idsearchChange"
|
|
@@ -631,7 +629,7 @@ import {
|
|
|
export default {
|
|
|
name: "goodsCostAdd",
|
|
|
mixins: [resToken],
|
|
|
- props: ["showModel", "id", "type", "sitem", "askItem", "newTime", "editId",],
|
|
|
+ props: ["showModel", "id", "type", "sitem", "askItem", "newTime", "editId"],
|
|
|
components: {
|
|
|
baseFormAddEdit,
|
|
|
},
|
|
@@ -674,7 +672,7 @@ export default {
|
|
|
loading: true,
|
|
|
|
|
|
//新实时金价
|
|
|
- newGoldPrice:0,
|
|
|
+ newGoldPrice: 0,
|
|
|
|
|
|
options1: options1,
|
|
|
options2: options2,
|
|
@@ -689,91 +687,125 @@ export default {
|
|
|
options11: options11,
|
|
|
ruleForm: {},
|
|
|
rules: JSON.parse(JSON.stringify(rules)),
|
|
|
- r1:"",
|
|
|
- r2:"",
|
|
|
+ //乘法处理
|
|
|
+ r1: "",
|
|
|
+ r2: "",
|
|
|
+ //除法处理
|
|
|
+ r3: "",
|
|
|
+ r4: "",
|
|
|
+
|
|
|
+ //成本合算
|
|
|
+ newPrice:0,
|
|
|
};
|
|
|
},
|
|
|
mounted() {
|
|
|
+ this.$nextTick(() => {});
|
|
|
this.initForm();
|
|
|
-
|
|
|
- this.computedCost()
|
|
|
-
|
|
|
|
|
|
+
|
|
|
+ // this.computedCost();
|
|
|
},
|
|
|
methods: {
|
|
|
//加法精度问题
|
|
|
-// accAdd(arg1,arg2){
|
|
|
-// var r1,r2,m;
|
|
|
-// try{
|
|
|
-// r1=arg1.toString().split(".")[1].length;
|
|
|
-// }catch(e){
|
|
|
-// r1=0;
|
|
|
-// }
|
|
|
-// try{
|
|
|
-// r2=arg2.toString().split(".")[1].length;
|
|
|
-// }catch(e){
|
|
|
-// r2=0;
|
|
|
-// }
|
|
|
-// m=Math.pow(10,Math.max(r1,r2)) ;
|
|
|
-// return (arg1*m+arg2*m)/m ;
|
|
|
-// },
|
|
|
-accAdd(arg1,arg2,arg3,arg4,arg5,arg6,arg7){
|
|
|
- var r1,r2,r3,r4,r5,r6,r7,m;
|
|
|
- console.log(arg1,arg2,arg3,arg4,arg5,arg6,arg7)
|
|
|
- try{
|
|
|
- r1=arg1.toString().split(".")[1].length;
|
|
|
- }catch(e){
|
|
|
- r1=0;
|
|
|
- }
|
|
|
- try{
|
|
|
- r2=arg2.toString().split(".")[1].length;
|
|
|
- }catch(e){
|
|
|
- r2=0;
|
|
|
- }
|
|
|
- try{
|
|
|
- r3=arg3.toString().split(".")[1].length;
|
|
|
- }catch(e){
|
|
|
- r3=0;
|
|
|
- }
|
|
|
- try{
|
|
|
- r4=arg4.toString().split(".")[1].length;
|
|
|
- }catch(e){
|
|
|
- r4=0;
|
|
|
- }
|
|
|
- try{
|
|
|
- r5=arg5.toString().split(".")[1].length;
|
|
|
- }catch(e){
|
|
|
- r5=0;
|
|
|
- }
|
|
|
- try{
|
|
|
- r6=arg6.toString().split(".")[1].length;
|
|
|
- }catch(e){
|
|
|
- r6=0;
|
|
|
- }
|
|
|
- try{
|
|
|
- r7=arg7.toString().split(".")[1].length;
|
|
|
- }catch(e){
|
|
|
- r7=0;
|
|
|
- }
|
|
|
- m=Math.pow(10,Math.max(r1,r2,r3,r4,r5,r6,r7)) ;
|
|
|
- return (arg1*m+arg2*m+arg3*m+arg4*m+arg5*m+arg6*m+arg7*m)/m ;
|
|
|
-},
|
|
|
+ accAdd(arg1, arg2) {
|
|
|
+ var r1, r2, m;
|
|
|
+ try {
|
|
|
+ r1 = arg1.toString().split(".")[1].length;
|
|
|
+ } catch (e) {
|
|
|
+ r1 = 0;
|
|
|
+ }
|
|
|
+ try {
|
|
|
+ r2 = arg2.toString().split(".")[1].length;
|
|
|
+ } catch (e) {
|
|
|
+ r2 = 0;
|
|
|
+ }
|
|
|
+ m = Math.pow(10, Math.max(r1, r2));
|
|
|
+ return (arg1 * m + arg2 * m) / m;
|
|
|
+ },
|
|
|
+ // accAdd(arg1, arg2, arg3, arg4, arg5, arg6, arg7) {
|
|
|
+ // var r1, r2, r3, r4, r5, r6, r7, m;
|
|
|
+ // console.log(arg1, arg2, arg3, arg4, arg5, arg6, arg7);
|
|
|
+ // try {
|
|
|
+ // r1 = arg1.toString().split(".")[1].length;
|
|
|
+ // } catch (e) {
|
|
|
+ // r1 = 0;
|
|
|
+ // }
|
|
|
+ // try {
|
|
|
+ // r2 = arg2.toString().split(".")[1].length;
|
|
|
+ // } catch (e) {
|
|
|
+ // r2 = 0;
|
|
|
+ // }
|
|
|
+ // try {
|
|
|
+ // r3 = arg3.toString().split(".")[1].length;
|
|
|
+ // } catch (e) {
|
|
|
+ // r3 = 0;
|
|
|
+ // }
|
|
|
+ // try {
|
|
|
+ // r4 = arg4.toString().split(".")[1].length;
|
|
|
+ // } catch (e) {
|
|
|
+ // r4 = 0;
|
|
|
+ // }
|
|
|
+ // try {
|
|
|
+ // r5 = arg5.toString().split(".")[1].length;
|
|
|
+ // } catch (e) {
|
|
|
+ // r5 = 0;
|
|
|
+ // }
|
|
|
+ // try {
|
|
|
+ // r6 = arg6.toString().split(".")[1].length;
|
|
|
+ // } catch (e) {
|
|
|
+ // r6 = 0;
|
|
|
+ // }
|
|
|
+ // try {
|
|
|
+ // r7 = arg7.toString().split(".")[1].length;
|
|
|
+ // } catch (e) {
|
|
|
+ // r7 = 0;
|
|
|
+ // }
|
|
|
+ // m = Math.pow(10, Math.max(r1, r2, r3, r4, r5, r6, r7));
|
|
|
+ // return (
|
|
|
+ // (arg1 * m +
|
|
|
+ // arg2 * m +
|
|
|
+ // arg3 * m +
|
|
|
+ // arg4 * m +
|
|
|
+ // arg5 * m +
|
|
|
+ // arg6 * m +
|
|
|
+ // arg7 * m) /
|
|
|
+ // m
|
|
|
+ // );
|
|
|
+ // },
|
|
|
|
|
|
- //乘法精度问题
|
|
|
+ //乘法精度问题
|
|
|
accMul(arg1, arg2) {
|
|
|
- var m = 0, s1 = arg1.toString(), s2 = arg2.toString();
|
|
|
- try {
|
|
|
- m += s1.split(".")[1].length;
|
|
|
- }
|
|
|
- catch (e) {
|
|
|
- }
|
|
|
- try {
|
|
|
- m += s2.split(".")[1].length;
|
|
|
- }
|
|
|
- catch (e) {
|
|
|
- }
|
|
|
- let numStr = Number(s1.replace(".", "")) * Number(s2.replace(".", "")) / Math.pow(10, m);
|
|
|
- return numStr.toString()
|
|
|
+ var m = 0,
|
|
|
+ s1 = arg1.toString(),
|
|
|
+ s2 = arg2.toString();
|
|
|
+ try {
|
|
|
+ m += s1.split(".")[1].length;
|
|
|
+ } catch (e) {}
|
|
|
+ try {
|
|
|
+ m += s2.split(".")[1].length;
|
|
|
+ } catch (e) {}
|
|
|
+ let numStr =
|
|
|
+ (Number(s1.replace(".", "")) * Number(s2.replace(".", ""))) /
|
|
|
+ Math.pow(10, m);
|
|
|
+ return numStr.toString();
|
|
|
+ },
|
|
|
+ //除法精度问题
|
|
|
+ accDiv(arg1, arg2) {
|
|
|
+ var t1 = 0,
|
|
|
+ t2 = 0,
|
|
|
+ c1,
|
|
|
+ c2;
|
|
|
+ try {
|
|
|
+ t1 = arg1.toString().split(".")[1].length;
|
|
|
+ } catch (e) {}
|
|
|
+ try {
|
|
|
+ t2 = arg2.toString().split(".")[1].length;
|
|
|
+ } catch (e) {}
|
|
|
+ // with (Math) {
|
|
|
+ c1 = Number(arg1.toString().replace(".", ""));
|
|
|
+ c2 = Number(arg2.toString().replace(".", ""));
|
|
|
+ return (c1 / c2) * Math.pow(10, t2 - t1);
|
|
|
+ // }
|
|
|
},
|
|
|
async initForm() {
|
|
|
this.supplierNo = [];
|
|
@@ -794,23 +826,68 @@ accAdd(arg1,arg2,arg3,arg4,arg5,arg6,arg7){
|
|
|
if (this.type === "edit" || this.type === "view") {
|
|
|
await this.initData();
|
|
|
}
|
|
|
+ //调用实时金价获取接口
|
|
|
+
|
|
|
+ this.golpricelast(this.ruleForm.metal_id)
|
|
|
+ //调用成本合算计算函数
|
|
|
+ // this.computedCost()
|
|
|
this.setrules();
|
|
|
this.loading = false;
|
|
|
},
|
|
|
|
|
|
- computedCost(){
|
|
|
- let goldPrice = this.newGoldPrice || this.askItem.gold_price
|
|
|
- this.$nextTick(()=>{
|
|
|
- this.r1 = this.accMul(this.ruleForm.noble_weight,goldPrice)
|
|
|
- this.r2 = this.accMul(this.ruleForm.cost_fee,this.ruleForm.noble_weight)
|
|
|
- })
|
|
|
+ computedCost() {
|
|
|
+ // (this.ruleForm.demo_fee/this.askItem.num)+
|
|
|
+ // (this.ruleForm.open_fee/this.askItem.num)+
|
|
|
+ // (this.ruleForm.noble_weight*this.newGoldPrice)+
|
|
|
+ // (this.ruleForm.cost_fee*this.ruleForm.noble_weight)+
|
|
|
+ // this.ruleForm.pakge_fee+
|
|
|
+ // this.ruleForm.mark_fee+
|
|
|
+ // this.ruleForm.cert_fee+this.ruleForm.nake_fee+this.ruleForm.delivery_fee
|
|
|
+
|
|
|
+ // let price = this.accDiv(this.ruleForm.demo_fee,this.askItem.num)
|
|
|
+ // let price = this.accDiv(this.ruleForm.open_fee,this.askItem.num)
|
|
|
+
|
|
|
+ // console.log(this.askItem.num)
|
|
|
+
|
|
|
+ this.$nextTick(() => {
|
|
|
+ this.r1 = this.accMul(this.ruleForm.noble_weight, this.newGoldPrice);
|
|
|
+ this.r2 = this.accMul(
|
|
|
+ this.ruleForm.cost_fee,
|
|
|
+ this.ruleForm.noble_weight
|
|
|
+ );
|
|
|
+ this.r3 = this.accDiv(this.ruleForm.demo_fee, this.askItem.num);
|
|
|
+ this.r4 = this.accDiv(this.ruleForm.open_fee, this.askItem.num);
|
|
|
+
|
|
|
+ // this.accAdd(this.r1,this.r2)
|
|
|
+ // this.accAdd(this.r3,this.r4)
|
|
|
+ // this.accAdd(this.ruleForm.pakge_fee,this.ruleForm.mark_fee)
|
|
|
+ // this.accAdd(this.ruleForm.cert_fee,this.ruleForm.nake_fee)
|
|
|
+ // this.accAdd(this.ruleForm.delivery_fee,)
|
|
|
+
|
|
|
+ let price = this.accAdd(
|
|
|
+ this.ruleForm.delivery_fee,
|
|
|
+ this.accAdd(
|
|
|
+ this.accAdd(
|
|
|
+ this.accAdd(
|
|
|
+ this.accAdd(this.r1, this.r2),
|
|
|
+ this.accAdd(this.r3, this.r4)
|
|
|
+ ),
|
|
|
+ this.accAdd(this.ruleForm.pakge_fee, this.ruleForm.mark_fee)
|
|
|
+ ),
|
|
|
+ this.accAdd(this.ruleForm.cert_fee, this.ruleForm.nake_fee)
|
|
|
+ )
|
|
|
+ );
|
|
|
+ price = price.toFixed(2)
|
|
|
+
|
|
|
+ this.newPrice = price;
|
|
|
+ console.log("aaaaaaaaaaaaaaaaaaa",price)
|
|
|
+ });
|
|
|
},
|
|
|
|
|
|
number_change(e, key) {
|
|
|
this.ruleForm[key] = e + "" || "0";
|
|
|
this.$refs.ruleForm.validateField(key);
|
|
|
- this.computedCost()
|
|
|
-
|
|
|
+ this.computedCost();
|
|
|
},
|
|
|
async initData() {
|
|
|
this.loading = true;
|
|
@@ -916,7 +993,8 @@ accAdd(arg1,arg2,arg3,arg4,arg5,arg6,arg7){
|
|
|
if (this.is_noble) {
|
|
|
this.ruleForm.nake_fee = "0";
|
|
|
}
|
|
|
- // console.log(this.ruleForm.origin_place);
|
|
|
+
|
|
|
+
|
|
|
} else if (code >= 100 && code <= 104) {
|
|
|
await this.logout();
|
|
|
} else {
|
|
@@ -992,9 +1070,9 @@ accAdd(arg1,arg2,arg3,arg4,arg5,arg6,arg7){
|
|
|
this.is_noble = this.askItem.is_metal;
|
|
|
this.cat_id_name = this.type === "add" ? this.askItem.can_name : "";
|
|
|
|
|
|
- this.brand_name =""
|
|
|
+ this.brand_name = "";
|
|
|
// this.type === "add" ? this.askItem.brand : "";
|
|
|
- this.unit_name = ""
|
|
|
+ this.unit_name = "";
|
|
|
//this.type === "add" ? this.askItem.unit_name : "";
|
|
|
this.ruleForm = {
|
|
|
infoNo: this.id || "",
|
|
@@ -1004,10 +1082,10 @@ accAdd(arg1,arg2,arg3,arg4,arg5,arg6,arg7){
|
|
|
expire_day: "0", //有效期
|
|
|
delivery_day: "0", //物流时间
|
|
|
work_day: "0", //生产工期
|
|
|
- brandid:[],
|
|
|
- // this.type === "add" && this.askItem.brand_id
|
|
|
- // ? [this.askItem.brand_id]
|
|
|
- // : [],
|
|
|
+ brandid: [],
|
|
|
+ // this.type === "add" && this.askItem.brand_id
|
|
|
+ // ? [this.askItem.brand_id]
|
|
|
+ // : [],
|
|
|
unit_id: [],
|
|
|
//this.type === "add" ? [this.askItem.unit] : [],
|
|
|
weight: this.type === "add" ? this.askItem.total_weight : "0.000",
|
|
@@ -1134,16 +1212,8 @@ accAdd(arg1,arg2,arg3,arg4,arg5,arg6,arg7){
|
|
|
},
|
|
|
//金属种类选择
|
|
|
//需修改,未改完
|
|
|
- async metal_idsearchChange(e) {
|
|
|
-
|
|
|
- // console.log(e.id,"1111111111111111111111")
|
|
|
- if(!e.id){
|
|
|
- // this.ruleForm.metal_id = this.askItem.gold_price;
|
|
|
- // console.log(this.ruleForm.metal_id ,"1111111111111111111111")
|
|
|
-
|
|
|
- this.newGoldPrice = 0;
|
|
|
- return;
|
|
|
- }
|
|
|
+ async metal_idsearchChange(e) {
|
|
|
+
|
|
|
this.loading = true;
|
|
|
const { id, code, label } = e;
|
|
|
if (id) {
|
|
@@ -1152,19 +1222,39 @@ accAdd(arg1,arg2,arg3,arg4,arg5,arg6,arg7){
|
|
|
this.ruleForm.metal_id = "";
|
|
|
}
|
|
|
this.$refs.ruleForm.validateField("metal_id");
|
|
|
+
|
|
|
|
|
|
+ //获取实时金价
|
|
|
+ this.golpricelast(e.id)
|
|
|
+
|
|
|
+ this.loading = false;
|
|
|
+ },
|
|
|
+ //获取实时金价
|
|
|
+ async golpricelast(id){
|
|
|
|
|
|
- const res = await asyncRequest.golpricelast({type:e.id});
|
|
|
- if (res && res.code === 0) {
|
|
|
- this.newGoldPrice = res.data[0].price;
|
|
|
- this.computedCost()
|
|
|
- console.log(res.data[0].price)
|
|
|
+ if (!id) {
|
|
|
+ // this.ruleForm.metal_id = this.askItem.gold_price;
|
|
|
+ // console.log(this.ruleForm.metal_id ,"1111111111111111111111")
|
|
|
+
|
|
|
+ this.newGoldPrice = 0;
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ const res = await asyncRequest.golpricelast({ type: id });
|
|
|
+ console.log(res)
|
|
|
+ if (res && res.code === 0) {
|
|
|
+ if(res.data.length<=0){
|
|
|
+ this.newGoldPrice = 0;
|
|
|
+ }else{
|
|
|
+ this.newGoldPrice = res.data[0].price;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ this.computedCost();
|
|
|
+
|
|
|
} else if (res && res.code >= 100 && res.code <= 104) {
|
|
|
await this.logout();
|
|
|
} else {
|
|
|
-
|
|
|
}
|
|
|
- this.loading = false;
|
|
|
},
|
|
|
|
|
|
//仓库省市区
|