Commit 79a73428 authored by dragondean@qq.com's avatar dragondean@qq.com

订单呢报价单体积重量默认给0

parent bcd4c7f4
...@@ -1103,11 +1103,11 @@ export default { ...@@ -1103,11 +1103,11 @@ export default {
this.form.prodCreateReqVOList.forEach(item => { this.form.prodCreateReqVOList.forEach(item => {
let tmp = {...item} let tmp = {...item}
tmp.prodAttrIds = tmp.prodAttrArr.join(',') tmp.prodAttrIds = tmp.prodAttrArr.join(',')
if(!tmp.volume)tmp.volume = 1 if(!tmp.volume)tmp.volume = 0
if(!tmp.weight)tmp.weight = 1 if(!tmp.weight)tmp.weight = 0
if(!tmp.quantity)tmp.quantity = 1 if(!tmp.quantity)tmp.quantity = 0
if(!tmp.num)tmp.num = 1 if(!tmp.num)tmp.num = 0
if(!tmp.worth)tmp.worth = 1 if(!tmp.worth)tmp.worth = 0
arr.push(tmp) arr.push(tmp)
}) })
return arr return arr
......
...@@ -1464,10 +1464,10 @@ export default { ...@@ -1464,10 +1464,10 @@ export default {
let arr = [] let arr = []
this.form.orderItemVOList.forEach(item => { this.form.orderItemVOList.forEach(item => {
let tmp = {...item} let tmp = {...item}
if(!tmp.volume)tmp.volume = 1 if(!tmp.volume)tmp.volume = 0
if(!tmp.weight)tmp.weight = 1 if(!tmp.weight)tmp.weight = 0
if(!tmp.quantity)tmp.quantity = 1 if(!tmp.quantity)tmp.quantity = 0
if(!tmp.num)tmp.num = 1 if(!tmp.num)tmp.num = 0
tmp.orderType = item.orderItemType tmp.orderType = item.orderItemType
arr.push(tmp) arr.push(tmp)
}) })
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment