|
@@ -665,10 +665,10 @@ export default {
|
|
|
const temp = {...item}
|
|
|
for(let i = 1; i<=8; i++) {
|
|
|
if (item[`website_qty${i}`] && !this.POA_Config.includes(item[`website_qty${i}`])) {
|
|
|
- temp[`website_qty${i}`] = this.multiplyWithMargin(parseFloat(item[`website_qty${i}`]), margin).toString()
|
|
|
+ temp[`website_qty${i}`] = this.multiplyWithMargin(parseFloat(item[`website_qty${i}`]) || 0, margin).toString()
|
|
|
}
|
|
|
}
|
|
|
- temp.website_setup = this.multiplyWithMargin(parseFloat(item.website_setup), setupMargin).toString()
|
|
|
+ temp.website_setup = this.multiplyWithMargin(parseFloat(item.website_setup) || 0, setupMargin).toString()
|
|
|
return temp
|
|
|
})
|
|
|
o.data = remaining[k]
|