|
@@ -223,9 +223,9 @@ class GLJListModel extends BaseModel {
|
|
|
return result;
|
|
|
}
|
|
|
getGLJPrice(glj){
|
|
|
- let glj_basePrice = scMathUtil.roundTo(parseFloat(glj.unit_price.base_price), -2);
|
|
|
+ let glj_basePrice = parseFloat(glj.unit_price.base_price);
|
|
|
glj.unit_price.base_price = glj_basePrice;
|
|
|
- glj.unit_price.market_price = scMathUtil.roundTo(parseFloat(glj.unit_price.market_price), -2);
|
|
|
+ glj.unit_price.market_price = parseFloat(glj.unit_price.market_price);
|
|
|
}
|
|
|
|
|
|
/**
|