增加异步处理中间状态
This commit is contained in:
parent
58fefa9234
commit
09ad90bf59
@ -57,7 +57,7 @@ public class XhpcClearingCheckoutDomain implements Serializable {
|
|||||||
*/
|
*/
|
||||||
private BigDecimal receivedServiceAmount;
|
private BigDecimal receivedServiceAmount;
|
||||||
/**
|
/**
|
||||||
* 状态(0-已审核待清分,1-提现中,2-审核失败,3-审核成功,4-转账失败,5-转账成功,6-提现完成)
|
* 状态(0-已审核待清分,1-提现中,2-审核失败,3-审核成功,4-转账失败,5-转账成功,6-提现完成, 99-中间过渡状态,大量数据异步处理展示)
|
||||||
*/
|
*/
|
||||||
private Integer status;
|
private Integer status;
|
||||||
|
|
||||||
|
|||||||
@ -169,6 +169,7 @@ public class XhpcClearingCheckoutServiceImpl extends BaseService implements Xhpc
|
|||||||
throw new CustomException("短信验证码错误,请重试");
|
throw new CustomException("短信验证码错误,请重试");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
domain.setStatus(99);
|
||||||
checkoutMapper.insert(domain);
|
checkoutMapper.insert(domain);
|
||||||
|
|
||||||
if (StringUtils.isEmpty(domain.getClearingOrderIds())) {
|
if (StringUtils.isEmpty(domain.getClearingOrderIds())) {
|
||||||
|
|||||||
@ -1,6 +1,7 @@
|
|||||||
package com.xhpc.activity.task;
|
package com.xhpc.activity.task;
|
||||||
|
|
||||||
|
|
||||||
|
import com.xhpc.activity.mapper.XhpcClearingCheckoutMapper;
|
||||||
import com.xhpc.activity.mapper.XhpcClearingHistoryOrderMapper;
|
import com.xhpc.activity.mapper.XhpcClearingHistoryOrderMapper;
|
||||||
import org.springframework.scheduling.annotation.Async;
|
import org.springframework.scheduling.annotation.Async;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
@ -12,6 +13,9 @@ public class AsyncService {
|
|||||||
@Resource
|
@Resource
|
||||||
XhpcClearingHistoryOrderMapper historyOrderMapper;
|
XhpcClearingHistoryOrderMapper historyOrderMapper;
|
||||||
|
|
||||||
|
@Resource
|
||||||
|
XhpcClearingCheckoutMapper checkoutMapper;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 审核待清分订单处理
|
* 审核待清分订单处理
|
||||||
* @param orderIds
|
* @param orderIds
|
||||||
@ -27,11 +31,13 @@ public class AsyncService {
|
|||||||
@Async
|
@Async
|
||||||
public void updateCheckoutByOperatorAsync(Long operatorId, Long checkoutId){
|
public void updateCheckoutByOperatorAsync(Long operatorId, Long checkoutId){
|
||||||
historyOrderMapper.updateCheckoutByOperator(operatorId, checkoutId);
|
historyOrderMapper.updateCheckoutByOperator(operatorId, checkoutId);
|
||||||
|
checkoutMapper.updateStatusByIds(checkoutId.toString(), 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Async
|
@Async
|
||||||
public void updateCheckoutByOrderIdsAsync(String orderIds, Long checkoutId){
|
public void updateCheckoutByOrderIdsAsync(String orderIds, Long checkoutId){
|
||||||
historyOrderMapper.updateCheckoutByOrderId(orderIds, checkoutId);
|
historyOrderMapper.updateCheckoutByOrderId(orderIds, checkoutId);
|
||||||
|
checkoutMapper.updateStatusByIds(checkoutId.toString(), 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user