1
This commit is contained in:
@@ -125,6 +125,13 @@ public class PublicPromoterOrderController {
|
||||
vo.setCosPrice(formatPrice(row));
|
||||
vo.setOrderTime(formatDate(row.getOrderTime()));
|
||||
vo.setFinishTime(formatDate(row.getFinishTime()));
|
||||
Double proPrice = row.getProPriceAmount();
|
||||
if (proPrice != null && proPrice > 0) {
|
||||
vo.setProPriceAmount(String.format("%.2f", proPrice));
|
||||
vo.setProPriceTime(formatDate(row.getModifyTime()));
|
||||
} else {
|
||||
vo.setProPriceAmount("0.00");
|
||||
}
|
||||
return vo;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user