|
@@ -1,5 +1,6 @@
|
|
|
package com.platform.rest.controller.repair;
|
|
|
|
|
|
+import com.platform.common.util.BigDecimalUtil;
|
|
|
import com.platform.common.util.R;
|
|
|
import com.platform.dao.dto.repair.RepairFeeDTO;
|
|
|
import com.platform.dao.entity.repair.RepairFee;
|
|
@@ -167,6 +168,7 @@ public class RepairFeeController {
|
|
|
@PreAuthorize("@pms.hasPermission('repair-fees-export')")
|
|
|
public void exportSbsRepairFee(HttpServletResponse response,@RequestParam("sbIds") List<String> sbIds) {
|
|
|
List<ExportRepairSumFeeVO> list = repairFeeService.getSbsRepairFee(sbIds);
|
|
|
+ list.forEach((s)->s.setFee(BigDecimalUtil.formatDouble4(s.getFee())));
|
|
|
ExcelUtil.exportResponseDict(response, ExportRepairSumFeeVO.class, list, "历史费用单统计");
|
|
|
}
|
|
|
|