mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-04 18:10:10 +08:00
update 更新查询sql
This commit is contained in:
@@ -100,6 +100,11 @@ public class QueryOrderDTO extends BaseEntity {
|
||||
*/
|
||||
private String endSettleTime;
|
||||
|
||||
/**
|
||||
* 审核标志
|
||||
*/
|
||||
private String reviewFlag;
|
||||
|
||||
/**
|
||||
* 会员组编号
|
||||
*/
|
||||
|
||||
@@ -676,6 +676,7 @@ public class SettleOrderReportServiceImpl implements SettleOrderReportService {
|
||||
dto.setEndSettleTime(endTime);
|
||||
// 2024年1月30日13点49分 查询订单列表只查对应当前运营商的
|
||||
dto.setMerchantId(stationInfo.getMerchantId());
|
||||
dto.setReviewFlag(Constants.ONE);
|
||||
// 查询结算完成的订单
|
||||
List<OrderListVO> orderListVOS = orderBasicInfoMapper.selectOrderBasicInfoList(dto);
|
||||
// 收集订单编号
|
||||
|
||||
@@ -2005,7 +2005,8 @@
|
||||
<if test="vinCode != null and vinCode != ''">
|
||||
and t1.vin_code = #{vinCode,jdbcType=VARCHAR}
|
||||
</if>
|
||||
<if test="params != null and params.roleId != null and params.roleId > 2">
|
||||
<if test="(params != null and params.roleId != null and params.roleId > 2)
|
||||
or (reviewFlag != null and reviewFlag != '')">
|
||||
and t1.review_flag = '1'
|
||||
</if>
|
||||
<if test="plateNumber != null and plateNumber != ''">
|
||||
|
||||
Reference in New Issue
Block a user