|
@@ -73,10 +73,10 @@ public class CarSnfyVo {
|
|
|
DecimalFormat percentFormat = new DecimalFormat("0.00%");
|
|
|
this.tyFy = numberFormat.format(carSnfyPo.getTyFy());
|
|
|
this.lyFy = numberFormat.format(carSnfyPo.getLyFy());
|
|
|
- this.budgetLj = numberFormat.format(carSnfyPo.getBudgetLj());
|
|
|
+ this.budgetLj = carSnfyPo.getBudgetLj() == null ? "" : numberFormat.format(carSnfyPo.getBudgetLj());
|
|
|
this.tbzj = numberFormat.format(carSnfyPo.getTbzj());
|
|
|
this.tbbfb = carSnfyPo.getTbbfb() == null ? "" : percentFormat.format(carSnfyPo.getTbbfb());
|
|
|
- this.yspc = numberFormat.format(carSnfyPo.getYspc());
|
|
|
+ this.yspc = carSnfyPo.getYspc() == null ? "" : numberFormat.format(carSnfyPo.getYspc());
|
|
|
this.yspcbfb = carSnfyPo.getYspcbfb() == null ? "" : percentFormat.format(carSnfyPo.getYspcbfb());
|
|
|
}
|
|
|
}
|