|
|
@ -64,4 +64,28 @@ public class ProjectDaily extends EntityWithId { |
|
|
|
double v = (a / b) * 100; |
|
|
|
return NumberUtil.roundStr(v, 2); |
|
|
|
} |
|
|
|
|
|
|
|
public String getTotalLoanWan() { |
|
|
|
return NumberUtil.roundStr(this.totalLoan / 10000, 2); |
|
|
|
} |
|
|
|
|
|
|
|
public String getAccountsBalanceWan() { |
|
|
|
return NumberUtil.roundStr(this.accountsBalance / 10000, 2); |
|
|
|
} |
|
|
|
|
|
|
|
public String getAccountsReceivableWan() { |
|
|
|
return NumberUtil.roundStr(this.accountsReceivable / 10000, 2); |
|
|
|
} |
|
|
|
|
|
|
|
public String getStockAmountWan() { |
|
|
|
return NumberUtil.roundStr(this.stockAmount / 10000, 2); |
|
|
|
} |
|
|
|
|
|
|
|
public String getTransitAmountWan() { |
|
|
|
return NumberUtil.roundStr(this.transitAmount / 10000, 2); |
|
|
|
} |
|
|
|
|
|
|
|
public String getAdvancePaymentWan() { |
|
|
|
return NumberUtil.roundStr(this.advancePayment / 10000, 2); |
|
|
|
} |
|
|
|
} |
|
|
|