This commit is contained in:
hongchao 2025-12-08 18:04:18 +08:00
parent fa2695bf04
commit c7d5cc2303
2 changed files with 4 additions and 4 deletions

View File

@ -752,8 +752,8 @@ public class IwsCostPushServiceImpl implements IwsCostPushService {
proIdsBean.setAgreementIds(proIdsBean.getAgreementIdsStr().split( ","));
proIdsBean.setType("1");
proIdsBean.setSettlementType(1);
// // 获取租赁详情列表
// List<IwsCostPushBean> rentalCostList = iwsCostPushMapper.getRentalCostList(proIdsBean);
// 获取租赁详情列表
List<IwsCostPushBean> rentalCostList = iwsCostPushMapper.getRentalCostList(proIdsBean);
// 获取丢失详情列表
proIdsBean.setType("2");
@ -766,7 +766,7 @@ public class IwsCostPushServiceImpl implements IwsCostPushService {
// 获取报废详情列表
proIdsBean.setType("4");
List<IwsCostPushBean> scrapCostList = iwsCostPushMapper.getBalanceCostList(proIdsBean);
// list.addAll(rentalCostList);
list.addAll(rentalCostList);
list.addAll(lostCostList);
list.addAll(repairCostList);
list.addAll(scrapCostList);

View File

@ -2304,7 +2304,7 @@ public class SltAgreementInfoController extends BaseController {
}
@ApiOperation(value = "下载导出文件")
@PostMapping("/dlExZip")
@PostMapping("/dlExProgress")
public void downloadExportFile(@RequestBody SltAgreementInfo info, HttpServletResponse response) {
try {
ExportProgressManager.ExportProgress progress = exportProgressManager.getProgress(info.getTaskId());