huangfuli 3 rokov pred
rodič
commit
4bb34460cf

+ 2 - 1
winsea-haixin-plugin-yiliangyiyun/src/main/java/com/yh/saas/plugin/yiliangyiyun/service/impl/TranCarInfoServiceImpl.java

@@ -147,7 +147,8 @@ public class TranCarInfoServiceImpl extends ServiceImpl<TranCarInfoMapper, TranC
         //查合同下的发车数据
         List<TranCarInfo> tranCarInfoList=this.selectList(new EntityWrapper<TranCarInfo>()
                 .eq("contract_no", tranCarInfo.getContractNo())
-                .eq(TranCarInfo.QueryFiles.DELETE_FLAG, NumberConstant.CONSTANT0));
+                .eq(TranCarInfo.QueryFiles.DELETE_FLAG, NumberConstant.CONSTANT0)
+                .orderBy("car_no", true));
         return tranCarInfoList;
     }
 }