|
|
|
@ -27,11 +27,10 @@ public class VA010Service extends ServiceImpl<VA010Mapper, VA010> {
|
|
|
|
|
IPage<VA010> iPage = va010Mapper.getList(page,udiwmsBasicSkPrescribeRequest);
|
|
|
|
|
List<VA010> list = iPage.getRecords();
|
|
|
|
|
List<VA010> listNew = new ArrayList<>();
|
|
|
|
|
list.sort( Comparator.comparing(VA010::getPrescribedate));
|
|
|
|
|
if(list!=null && list.size() >0){
|
|
|
|
|
String lastSql = "";
|
|
|
|
|
if(defXmlSqlType.equals("Mysql")){
|
|
|
|
|
lastSql = "AND limit = 1";
|
|
|
|
|
lastSql = " limit 1";
|
|
|
|
|
|
|
|
|
|
}else if(defXmlSqlType.equals("Oracle")){
|
|
|
|
|
lastSql = "AND rownum = 1";
|
|
|
|
@ -43,6 +42,8 @@ public class VA010Service extends ServiceImpl<VA010Mapper, VA010> {
|
|
|
|
|
listNew.add(va010New);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
listNew.sort( Comparator.comparing(VA010::getPrescribedate));
|
|
|
|
|
|
|
|
|
|
iPage.setRecords(listNew);
|
|
|
|
|
|
|
|
|
|
return iPage;
|
|
|
|
|