mirror of
https://github.com/jeequan/jeepay
synced 2024-11-17 23:08:03 +08:00
分账补单定时任务;
This commit is contained in:
parent
7d39efd58c
commit
b722014829
@ -0,0 +1,118 @@
|
||||
/*
|
||||
* Copyright (c) 2021-2031, 河北计全科技有限公司 (https://www.jeequan.com & jeequan@126.com).
|
||||
* <p>
|
||||
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE 3.0;
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
* <p>
|
||||
* http://www.gnu.org/licenses/lgpl.html
|
||||
* <p>
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.jeequan.jeepay.pay.task;
|
||||
|
||||
import cn.hutool.core.date.DateUtil;
|
||||
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
||||
import com.jeequan.jeepay.core.entity.PayOrderDivisionRecord;
|
||||
import com.jeequan.jeepay.service.impl.PayOrderDivisionRecordService;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.scheduling.annotation.Scheduled;
|
||||
import org.springframework.stereotype.Component;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
/*
|
||||
* 分账补单定时任务
|
||||
*
|
||||
* @author terrfly
|
||||
* @site https://www.jeequan.com
|
||||
* @date 2023/3/29 11:35
|
||||
*/
|
||||
@Slf4j
|
||||
@Component
|
||||
public class PayOrderDivisionRecordReissueTask {
|
||||
|
||||
private static final int QUERY_PAGE_SIZE = 100; //每次查询数量
|
||||
|
||||
@Autowired private PayOrderDivisionRecordService payOrderDivisionRecordService;
|
||||
|
||||
@Scheduled(cron="0 0/1 * * * ?") // 每分钟执行一次
|
||||
public void start() {
|
||||
|
||||
log.info("处理分账补单任务 开始");
|
||||
|
||||
//当前时间 减去5分钟。
|
||||
Date offsetDate = DateUtil.offsetMinute(new Date(), -5);
|
||||
|
||||
//查询条件: 受理中的订单 & ( 订单创建时间 + 5分钟 >= 当前时间 )
|
||||
LambdaQueryWrapper<PayOrderDivisionRecord> lambdaQueryWrapper = PayOrderDivisionRecord.gw().
|
||||
eq(PayOrderDivisionRecord::getState, PayOrderDivisionRecord.STATE_ACCEPT).le(PayOrderDivisionRecord::getCreatedAt, offsetDate);
|
||||
|
||||
int currentPageIndex = 1; //当前页码
|
||||
|
||||
while(true){
|
||||
|
||||
try {
|
||||
|
||||
IPage<PayOrderDivisionRecord> pageRecordList = payOrderDivisionRecordService.getBaseMapper().distinctBatchOrderIdList(new Page(currentPageIndex, QUERY_PAGE_SIZE), lambdaQueryWrapper);
|
||||
|
||||
log.info("处理分账补单任务, 共计{}条", pageRecordList.getTotal());
|
||||
|
||||
//本次查询无结果, 不再继续查询;
|
||||
if(pageRecordList == null || pageRecordList.getRecords() == null || pageRecordList.getRecords().isEmpty()){
|
||||
break;
|
||||
}
|
||||
|
||||
for(PayOrderDivisionRecord batchRecord: pageRecordList.getRecords()){
|
||||
|
||||
try {
|
||||
String batchOrderId = batchRecord.getBatchOrderId();
|
||||
|
||||
// 通过 batchId 查询出列表( 注意: 需要按照ID 排序!!!! )
|
||||
List<PayOrderDivisionRecord> recordList = payOrderDivisionRecordService.list(PayOrderDivisionRecord.gw()
|
||||
.eq(PayOrderDivisionRecord::getState, PayOrderDivisionRecord.STATE_ACCEPT)
|
||||
.eq(PayOrderDivisionRecord::getBatchOrderId, batchOrderId)
|
||||
.orderByAsc(PayOrderDivisionRecord::getRecordId)
|
||||
);
|
||||
|
||||
if(recordList == null || recordList.isEmpty()){
|
||||
continue;
|
||||
}
|
||||
|
||||
// 调用渠道侧的查单接口: 注意: 渠道内需保证:
|
||||
// 1. 返回的条目 必须全部来自recordList, 可以少于recordList但是不得高于 recordList 数量;
|
||||
// 2. recordList 的记录可能与接口返回的数量不一致, 接口实现不要求对条目数量做验证;
|
||||
// 3. 接口查询的记录若recordList 不存在, 忽略即可。 ( 例如两条相同的accNo, 则可能仅匹配一条。 那么另外一条将在下一次循环中处理。 )
|
||||
// 4. 仅明确状态的再返回,若不明确则不需返回;
|
||||
|
||||
// channelOrderReissueService.processPayOrder(payOrder);
|
||||
|
||||
} catch (Exception e1) {
|
||||
log.error("处理补单任务单条[{}]异常", batchRecord.getBatchOrderId(), e1);
|
||||
}
|
||||
}
|
||||
|
||||
//已经到达页码最大量,无需再次查询
|
||||
if(pageRecordList.getPages() <= currentPageIndex){
|
||||
break;
|
||||
}
|
||||
currentPageIndex++;
|
||||
|
||||
|
||||
} catch (Exception e) { //出现异常,直接退出,避免死循环。
|
||||
log.error("处理分账补单任务, error", e);
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
}
|
@ -1,7 +1,10 @@
|
||||
package com.jeequan.jeepay.service.mapper;
|
||||
|
||||
import com.baomidou.mybatisplus.core.conditions.Wrapper;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.jeequan.jeepay.core.entity.PayOrderDivisionRecord;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
@ -16,4 +19,7 @@ public interface PayOrderDivisionRecordMapper extends BaseMapper<PayOrderDivisio
|
||||
/** 查询全部分账成功金额 **/
|
||||
Long sumSuccessDivisionAmount(String payOrderId);
|
||||
|
||||
/** batch_order_id 去重, 查询出所有的 分账已受理状态的订单, 支持分页。 */
|
||||
IPage<PayOrderDivisionRecord> distinctBatchOrderIdList(IPage<?> page, @Param("ew") Wrapper<PayOrderDivisionRecord> wrapper);
|
||||
|
||||
}
|
||||
|
@ -40,4 +40,19 @@
|
||||
</select>
|
||||
|
||||
|
||||
<!-- batch_order_id 去重, 查询出所有的 分账已受理状态的订单, 支持分页。 -->
|
||||
<select id="distinctBatchOrderIdList" resultMap="BaseResultMap">
|
||||
|
||||
select DISTINCT batch_order_id from t_pay_order_division_record
|
||||
|
||||
<where>
|
||||
<if test="ew != null">
|
||||
${ew.sqlSegment} <!-- mp条件构造器 -->
|
||||
</if>
|
||||
</where>
|
||||
|
||||
</select>
|
||||
|
||||
|
||||
|
||||
</mapper>
|
||||
|
Loading…
Reference in New Issue
Block a user