提交 b09988f7 authored 作者: 吕本才's avatar 吕本才

1、订单详情查询增加分销商id

上级 614e7e29
...@@ -41,4 +41,8 @@ public class FinanceCostWq { ...@@ -41,4 +41,8 @@ public class FinanceCostWq {
private Boolean seriesAll; private Boolean seriesAll;
// 入参 商品名称 // 入参 商品名称
private Boolean goodsNameAll; private Boolean goodsNameAll;
// 查询详情时 过滤数据
private String fenxiaoId;
} }
...@@ -18,6 +18,8 @@ public class FinanceCostVo { ...@@ -18,6 +18,8 @@ public class FinanceCostVo {
private Date endDate; private Date endDate;
// 直播间类型 // 直播间类型
private List<String> zbjQdType; private List<String> zbjQdType;
// 入参 口味 // 入参 口味
private List<String> flavor; private List<String> flavor;
// 入参 规格 // 入参 规格
...@@ -40,5 +42,7 @@ public class FinanceCostVo { ...@@ -40,5 +42,7 @@ public class FinanceCostVo {
// 可以按照直播间类型和系列展开 null 不是展开查询 0 直播间类 1 系列 // 可以按照直播间类型和系列展开 null 不是展开查询 0 直播间类 1 系列
private Integer subType; private Integer subType;
// 查询详情时 过滤数据
private String fenxiaoId;
} }
...@@ -117,6 +117,10 @@ ...@@ -117,6 +117,10 @@
<if test="wq.startDate!= null "> <if test="wq.startDate!= null ">
and fod.consign_time between #{wq.startDate} and #{wq.endDate} and fod.consign_time between #{wq.startDate} and #{wq.endDate}
</if> </if>
<if test="wq.fenxiaoId!= null and wq.fenxiaoId!='' ">
and fod.fenxiao_id = #{wq.fenxiaoId}
</if>
<if test="wq.zbjQdType!= null and !wq.zbjQdType.isEmpty() "> <if test="wq.zbjQdType!= null and !wq.zbjQdType.isEmpty() ">
and fod.zbj_qd_type in and fod.zbj_qd_type in
<foreach collection="wq.zbjQdType" item="item" index="index" open="(" separator="," close=")"> <foreach collection="wq.zbjQdType" item="item" index="index" open="(" separator="," close=")">
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论