|
|
|
@@ -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; |
|
|
|
|