提交 1f01070b authored 作者: huningning's avatar huningning

Merge remote-tracking branch 'origin/v6.4_transportation_20231110' into test

......@@ -78,5 +78,5 @@ public interface OrderChildMapper extends BaseMapper<OrderChild> {
OrderChildVO findArtificialCancelOrder(@Param("orderChildNo") String orderChildNo);
@SelectProvider(type = OrderChildSqlProvider.class, method = "orderChildCancelRecord")
IPage<OrderChildVO> orderChildCancelRecord(@Param("page")Page<OrderGoodsVO> page, OrderChildCancelRecordParam param);
IPage<OrderChildVO> orderChildCancelRecord(@Param("page")Page<OrderGoodsVO> page, @Param(value = "param") OrderChildCancelRecordParam param);
}
\ No newline at end of file
......@@ -161,7 +161,7 @@ public class OrderChildSqlProvider {
"date_format(unload_time, '%Y-%m-%d %H:%i:%s') as unloadTime from order_child where child_no = #{orderChildNo}";
sql += " and status >="+ OrderChildEnum.Status.LOAD.getCode();
sql += " and status <="+ OrderChildEnum.Status.UNSETTLE.getCode();
sql += " and status <"+ OrderChildEnum.Status.UNSETTLE.getCode();
return sql;
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论