|
|
@@ -189,15 +189,16 @@ public class AfDianRechargeServiceImpl implements AfDianRechargeService {
|
|
|
Boolean status = taskStatusResp.getSuccess();
|
|
|
|
|
|
//充值中
|
|
|
+ TaskResult taskResult = new TaskResult();
|
|
|
if (pending && status) {
|
|
|
- return null;
|
|
|
+ taskResult.setStatus("recharging");
|
|
|
+ return taskResult;
|
|
|
}
|
|
|
|
|
|
String resultResult = taskStatusResp.getMessage();
|
|
|
//更新代充状态
|
|
|
resetGroupsRelationRechargeStatus(relation, pending, status, resultResult);
|
|
|
|
|
|
- TaskResult taskResult = new TaskResult();
|
|
|
if (status && !pending) {
|
|
|
taskResult.setStatus("completed");
|
|
|
} else taskResult.setStatus("failed");
|