This commit is contained in:
van
2026-06-10 19:35:54 +08:00
parent e890039dea
commit 546cd8eb04
5 changed files with 35 additions and 23 deletions

View File

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