|
@@ -877,7 +877,7 @@ public class WmTaxHelperController {
|
|
|
|
|
|
if (!absent) {
|
|
|
log.error("当前用户:{},正在处理结算回调操作。", userId);
|
|
|
- return responseJson(4000,"结算通知回调重复");
|
|
|
+ throw new RuntimeException("存在在途操作");
|
|
|
}
|
|
|
|
|
|
try {
|
|
@@ -904,7 +904,7 @@ public class WmTaxHelperController {
|
|
|
|
|
|
} catch (Exception e) {
|
|
|
log.error("税邦云解密失败");
|
|
|
- return responseJson(4000, e.getMessage());
|
|
|
+ throw new RuntimeException(e.getMessage());
|
|
|
}
|
|
|
return responseJson(2000,"结算通知回调成功");
|
|
|
}
|
|
@@ -931,7 +931,7 @@ public class WmTaxHelperController {
|
|
|
|
|
|
if (!absent) {
|
|
|
log.error("当前用户:{},正在处理结算回调操作。", userId);
|
|
|
- return responseJson(4000,"结算通知回调重复");
|
|
|
+ throw new RuntimeException("存在在途操作");
|
|
|
}
|
|
|
|
|
|
try {
|
|
@@ -964,7 +964,7 @@ public class WmTaxHelperController {
|
|
|
|
|
|
} catch (Exception e) {
|
|
|
log.error("税邦云解密失败");
|
|
|
- return responseJson(4000, e.getMessage());
|
|
|
+ throw new RuntimeException(e.getMessage());
|
|
|
}
|
|
|
|
|
|
return responseJson(2000,"结算通知回调成功");
|