|
@@ -53,6 +53,18 @@ public class StandarVerificationJob {
|
|
|
public Step verificationCheck() {
|
|
|
return stepBuilderFactory.get("verificationCheck")
|
|
|
.tasklet((contribution, chunkContext) -> {
|
|
|
+
|
|
|
+ return RepeatStatus.FINISHED;
|
|
|
+ })
|
|
|
+ .build();
|
|
|
+ }
|
|
|
+
|
|
|
+ public Step standardVerificationStep() {
|
|
|
+ return stepBuilderFactory.get("standardVerificationStep")
|
|
|
+ .tasklet((contribution, chunkContext) -> {
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
VerificationModel verificationModel = getParameter().get();
|
|
|
String enterPriseId = authHelper.getEnterPriseId();
|
|
|
|
|
@@ -83,19 +95,8 @@ public class StandarVerificationJob {
|
|
|
}
|
|
|
break;
|
|
|
}
|
|
|
- return RepeatStatus.FINISHED;
|
|
|
- })
|
|
|
- .build();
|
|
|
- }
|
|
|
|
|
|
- public Step standardVerificationStep() {
|
|
|
- return stepBuilderFactory.get("standardVerificationStep")
|
|
|
- .tasklet((contribution, chunkContext) -> {
|
|
|
|
|
|
- if (stop.get()) {
|
|
|
- return RepeatStatus.FINISHED;
|
|
|
- }
|
|
|
- VerificationModel verificationModel = getParameter().get();
|
|
|
|
|
|
ResultContent<SubOrdersConfirmResponseModel> resultContent = paymentService2.subOrdersConfirm(verificationModel.getId(), verificationModel.getShopId());
|
|
|
if (!resultContent.getState().equals(ResultState.Success)) {
|