|
|
|
@@ -23,6 +23,17 @@ public class WxBillSum implements Serializable { |
|
|
|
private String needPay = "0"; |
|
|
|
@TableField(exist = false) |
|
|
|
private BigDecimal needPayNumber; |
|
|
|
@TableField(exist = false) |
|
|
|
private String noTaxNeedPay = "0"; |
|
|
|
public String getNoTaxNeedPay() { |
|
|
|
if (StringUtils.isNotBlank(taxRate)) { |
|
|
|
noTaxNeedPay = new BigDecimal(needPay).multiply(new BigDecimal(taxRate)).setScale(2,BigDecimal.ROUND_HALF_UP).toPlainString(); |
|
|
|
} |
|
|
|
return noTaxNeedPay; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//已收总金额 |
|
|
|
private String paid = "0"; |
|
|
|
@TableField(exist = false) |
|
|
|
|