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