Преглед изворни кода

//..settle

release_toaliyun_real
xhxu пре 2 година
родитељ
комит
6c87068491
1 измењених фајлова са 6 додато и 1 уклоњено
  1. +6
    -1
      mallinkService/src/main/java/com/iformall/domain/vo/WxProfitSharingOrderVo.java

+ 6
- 1
mallinkService/src/main/java/com/iformall/domain/vo/WxProfitSharingOrderVo.java Прегледај датотеку

@@ -103,7 +103,12 @@ public class WxProfitSharingOrderVo extends TenantEntity {
public String shareAmountStr;

public WxComposeChildOrderShare getComposeChildOrderShare(){
WxComposeChildOrderShare composeChildOrderShare = getComposeChildOrderShare();
WxComposeChildOrderShare composeChildOrderShare = null;
if(StringUtils.isNotBlank(this.pointDeduction)){
try{
composeChildOrderShare = JSON.parseObject(this.pointDeduction, WxComposeChildOrderShare.class);
}catch(Exception e){}
}
if(composeChildOrderShare != null){
Integer realRateAmount = composeChildOrderShare.getRealRateAmount();
this.realRateAmountStr = realRateAmount != null ? new BigDecimal(realRateAmount).divide(new BigDecimal(100)).toPlainString() : realRateAmountStr;


Loading…
Откажи
Сачувај