|
|
|
@@ -102,7 +102,8 @@ public class WxProfitSharingOrderVo extends TenantEntity { |
|
|
|
@Excel(name = "实际分账金额(元)", width = 20, orderNum = "13") |
|
|
|
public String shareAmountStr; |
|
|
|
|
|
|
|
public String getPointDeduction(){ |
|
|
|
public void setPointDeduction(String pointDeduction){ |
|
|
|
this.pointDeduction = pointDeduction; |
|
|
|
WxComposeChildOrderShare composeChildOrderShare = null; |
|
|
|
if(StringUtils.isNotBlank(this.pointDeduction)){ |
|
|
|
try{ |
|
|
|
@@ -127,7 +128,6 @@ public class WxProfitSharingOrderVo extends TenantEntity { |
|
|
|
Integer shareAmount = composeChildOrderShare.getShareAmount(); |
|
|
|
this.shareAmountStr = shareAmount != null ? new BigDecimal(shareAmount).divide(new BigDecimal(100)).toPlainString() : this.shareAmountStr; |
|
|
|
} |
|
|
|
return this.pointDeduction; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|