完善京东售后接口

This commit is contained in:
Richie 2024-03-12 20:17:03 +08:00
parent a5ff4fecfb
commit 9fa9af2233
4 changed files with 112 additions and 32 deletions

View File

@ -21,12 +21,12 @@ public class HomeController {
//设置appKey和appSecret全局设置一次
String appkey = "7005157746437834253";
String appSecret = "8104c8b8-9085-4a80-9248-629759b4f1a3";
// appkey = "7344938657423296019";
// appSecret = "4e704882-832a-42e5-845f-6af991ce0ce2";
appkey = "7344938657423296019";
appSecret = "4e704882-832a-42e5-845f-6af991ce0ce2";
GlobalConfig.initAppKey(appkey);
GlobalConfig.initAppSecret(appSecret);
//获取access_token方法
AccessToken accessToken = AccessTokenBuilder.build(4463798L); //入参为shopId
AccessToken accessToken = AccessTokenBuilder.build(90158786L); //入参为shopId 4463798L

View File

@ -109,6 +109,7 @@ public class RefundApiController {
/**
* 拉取售后数据
*
* @param params
* @return
* @throws Exception
@ -162,7 +163,6 @@ public class RefundApiController {
AscSyncListResponse response1 = client.execute(request1);
// https://open.jd.com/home/home/#/doc/api?apiCateId=241&apiId=2136&apiName=jingdong.asc.query.list
AscQueryListRequest request = new AscQueryListRequest();
request.setBuId(sellerId);
@ -236,6 +236,71 @@ public class RefundApiController {
logs.setPullTime(currDateTime);
logs.setDuration(System.currentTimeMillis() - beginTime);
pullLogsService.save(logs);
// mqUtils.sendApiMessage(MqMessage.build(EnumShopType.JD, MqType.REFUND_MESSAGE,item.getId()));
return response;
}
@RequestMapping(value = "/pull_update_status", method = RequestMethod.POST)
public Object pullUpdateStatus(@RequestBody PullRequest params) throws Exception {
if (params.getShopId() == null || params.getShopId() <= 0) {
return ApiResult.build(HttpStatus.PARAMS_ERROR, "参数错误没有店铺Id");
}
Date currDateTime = new Date();
long beginTime = System.currentTimeMillis();
var checkResult = apiCommon.checkBefore(params.getShopId());
if (checkResult.getCode() != HttpStatus.SUCCESS) {
return ApiResult.build(checkResult.getCode(), checkResult.getMsg(), checkResult.getData());
}
String accessToken = checkResult.getData().getAccessToken();
String serverUrl = checkResult.getData().getServerUrl();
String appKey = checkResult.getData().getAppKey();
String appSecret = checkResult.getData().getAppSecret();
String sellerId = checkResult.getData().getSellerId();
// 取24小时内的数据
LocalDateTime endTime = LocalDateTime.now();
LocalDateTime startTime = endTime.minusDays(1);
String startTimeStr = startTime.format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"));
String endTimeStr = endTime.format(DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"));
JdClient client = new DefaultJdClient(serverUrl, accessToken, appKey, appSecret);
// 用于更新状态
// https://open.jd.com/home/home/#/doc/api?apiCateId=241&apiId=2171&apiName=jingdong.asc.sync.list
AscSyncListRequest request1 = new AscSyncListRequest();
request1.setBuId(sellerId);
request1.setOperatePin("testPin");
request1.setOperateNick("testPin");
request1.setUpdateTimeBegin(Date.from(startTime.atZone(ZoneId.systemDefault()).toInstant()));
request1.setUpdateTimeEnd(Date.from(endTime.atZone(ZoneId.systemDefault()).toInstant()));
request1.setPageNumber(1);
request1.setPageSize(100);
AscSyncListResponse response = client.execute(request1);
if (response != null && response.getPageResult() != null) {
if (response.getPageResult().getData() != null) {
for (var item : response.getPageResult().getData()) {
JdOrderAfter after = new JdOrderAfter();
BeanUtils.copyProperties(item, after);
after.setShopId(params.getShopId());
var result = afterService.updateAfterStatusByServiceId(after);
if (result.getCode() == ResultVoEnum.SUCCESS.getIndex()) {
// 更新成功发送通知
mqUtils.sendApiMessage(MqMessage.build(EnumShopType.JD, MqType.REFUND_MESSAGE,result.getData().toString()));
}
}
}
}
SysShopPullLogs logs = new SysShopPullLogs();
logs.setShopId(params.getShopId());
logs.setPullType("REFUND");
logs.setPullWay("主动更新状态");
logs.setPullParams("{ApplyTimeBegin:" + startTimeStr + ",ApplyTimeEnd:" + endTimeStr + ",PageIndex:1,PageSize:100}");
logs.setPullResult("{total:,hasExist: ,totalError: }");
logs.setPullTime(currDateTime);
logs.setDuration(System.currentTimeMillis() - beginTime);
pullLogsService.save(logs);
// mqUtils.sendApiMessage(MqMessage.build(EnumShopType.JD, MqType.REFUND_MESSAGE,item.getId()));
return response;
}

View File

@ -11,4 +11,5 @@ import com.baomidou.mybatisplus.extension.service.IService;
*/
public interface JdOrderAfterService extends IService<JdOrderAfter> {
ResultVo<Integer> saveAfter(Integer shopId,JdOrderAfter after);
ResultVo<Long> updateAfterStatusByServiceId(JdOrderAfter after);
}

View File

@ -57,6 +57,20 @@ public class JdOrderAfterServiceImpl extends ServiceImpl<JdOrderAfterMapper, JdO
return new ResultVo<>(ResultVoEnum.SystemException, "系统异常:" + e.getMessage());
}
}
@Override
public ResultVo<Long> updateAfterStatusByServiceId(JdOrderAfter after) {
List<JdOrderAfter> jdOrderAfters = mapper.selectList(new LambdaQueryWrapper<JdOrderAfter>().eq(JdOrderAfter::getServiceId, after.getServiceId()));
if (jdOrderAfters != null && jdOrderAfters.size() > 0) {
// 存在修改
JdOrderAfter update = new JdOrderAfter();
update.setId(jdOrderAfters.get(0).getId());
update.setServiceStatus(after.getServiceStatus());
mapper.updateById(update);
return new ResultVo<>(ResultVoEnum.SUCCESS, "SUCCESS",update.getId());
}
return new ResultVo<>(ResultVoEnum.NotFound, "没有找到退款数据");
}
}