工序计划
This commit is contained in:
parent
c6a424fe54
commit
db13547036
|
|
@ -42,28 +42,44 @@ public class ProScheduleServiceImpl implements IProScheduleService {
|
|||
@Override
|
||||
public List<ProScheduleVo> getProScheduleLists(ProScheduleDto dto) {
|
||||
List<ProScheduleVo> list = new ArrayList<>();
|
||||
list = mapper.getProScheduleLists(dto);
|
||||
try {
|
||||
list = mapper.getProScheduleLists(dto);
|
||||
} catch (Exception e) {
|
||||
log.error("获取工程进度列表",e);
|
||||
}
|
||||
return list;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<GxPlanVo> getGxPlanLists(GxPlanDto dto) {
|
||||
List<GxPlanVo> list = new ArrayList<>();
|
||||
list = mapper.getGxPlanLists(dto);
|
||||
try {
|
||||
list = mapper.getGxPlanLists(dto);
|
||||
} catch (Exception e) {
|
||||
log.error("获取工序计划列表",e);
|
||||
}
|
||||
return list;
|
||||
}
|
||||
|
||||
@Override
|
||||
public AjaxResult getGxPlansIsDela(ProScheduleDto dto) {
|
||||
List<String> list = new ArrayList<>();
|
||||
list = mapper.getGxPlansIsDela(dto);
|
||||
try {
|
||||
list = mapper.getGxPlansIsDela(dto);
|
||||
} catch (Exception e) {
|
||||
log.error("工序计划延期提醒",e);
|
||||
}
|
||||
return AjaxResult.success(list);
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<GxPlanProgressVo> getGxPlanProgressLists(ProScheduleDto dto) {
|
||||
List<GxPlanProgressVo> list = new ArrayList<>();
|
||||
list = mapper.getGxPlanProgressLists(dto);
|
||||
try {
|
||||
list = mapper.getGxPlanProgressLists(dto);
|
||||
} catch (Exception e) {
|
||||
log.error("获取工序计划进度列表",e);
|
||||
}
|
||||
return list;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue