修改统计

This commit is contained in:
haozq 2025-01-17 18:10:00 +08:00
parent 437add1b67
commit 55e502b4bb
3 changed files with 4 additions and 3 deletions

View File

@ -335,7 +335,7 @@ public class SupDispatchCarServiceImpl implements SupDispatchCarService{
list=mapper.getOutPageList(data);
for (CarNeedPlanVo carNeedPlanVo:list){
if(carNeedPlanVo.getFileNum()>0){
List<FileUploadVo> fileList= uploadService.getFileList(carNeedPlanVo.getId(),"car_plan_out","");
List<FileUploadVo> fileList= uploadService.getFileList(carNeedPlanVo.getId(),"car_plan_out","到货确认单");
carNeedPlanVo.setFileList(fileList);
}
}

View File

@ -219,6 +219,7 @@ public class FileUploadService {
FileUploadVo vo=new FileUploadVo();
vo.setOwnId(outId);
vo.setModelTable(table);
vo.setType(type);
list=mapper.getFileList(vo);
}catch (Exception e){
log.error(e.toString(),e);

View File

@ -90,8 +90,8 @@
</select>
<select id="getAuditDetails" resultType="com.bonus.gzcar.business.app.entity.AppPlanVo">
select id outId,status
FROM car_plan_out
WHERE apply_id=#{planId}
FROM car_plan_out
WHERE apply_id=#{planId}
</select>