mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 02:55:04 +08:00
update 根据订单号列表查询订单分账信息
This commit is contained in:
@@ -1431,7 +1431,7 @@ public class OrderBasicInfoServiceImpl implements OrderBasicInfoService {
|
|||||||
// 根据交易日期查询运营商下面所有站点的交易日报
|
// 根据交易日期查询运营商下面所有站点的交易日报
|
||||||
List<SettleOrderReport> stationReportList = settleOrderReportService.selectByMerchantIdAndDate(merchantId, tradeDate);
|
List<SettleOrderReport> stationReportList = settleOrderReportService.selectByMerchantIdAndDate(merchantId, tradeDate);
|
||||||
if (CollectionUtils.isEmpty(stationReportList)) {
|
if (CollectionUtils.isEmpty(stationReportList)) {
|
||||||
logger.error("订单分账逻辑error-stationReportList为空");
|
logger.error("生成运营商日账单error-stationReportList为空");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -779,4 +779,15 @@
|
|||||||
and adapay_member_id = #{adapayMemberId,jdbcType=VARCHAR}
|
and adapay_member_id = #{adapayMemberId,jdbcType=VARCHAR}
|
||||||
and trade_date between #{startTime,jdbcType=VARCHAR} and #{endTime,jdbcType=VARCHAR}
|
and trade_date between #{startTime,jdbcType=VARCHAR} and #{endTime,jdbcType=VARCHAR}
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
|
<select id="queryByOrderCodeList" resultMap="BaseResultMap">
|
||||||
|
select
|
||||||
|
<include refid="Base_Column_List" />
|
||||||
|
from order_split_record
|
||||||
|
where del_flag = '0'
|
||||||
|
and order_code in
|
||||||
|
<foreach collection="orderCodeList" item="item" index="index" open="(" separator="," close=")">
|
||||||
|
#{item}
|
||||||
|
</foreach>
|
||||||
|
</select>
|
||||||
</mapper>
|
</mapper>
|
||||||
Reference in New Issue
Block a user