|
|
@@ -92,7 +92,9 @@ public class HBOrderController {
|
|
|
public HBR updateStatus(@RequestBody JSONObject hBRequest) {
|
|
|
log.info("海博修改订单状态{}", hBRequest);
|
|
|
orderService.orderStatusNotify(hBRequest);
|
|
|
- return HBR.success();
|
|
|
+ JSONObject responseJson = new JSONObject();
|
|
|
+ responseJson.put("result", true);
|
|
|
+ return HBR.success(responseJson);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
@@ -127,7 +129,9 @@ public class HBOrderController {
|
|
|
public HBR orderStatusNotify(@RequestBody JSONObject hBRequest) {
|
|
|
orderService.orderStatusNotify(hBRequest);
|
|
|
log.info("海博订单状态变更通知{}", hBRequest);
|
|
|
- return HBR.success();
|
|
|
+ JSONObject responseJson = new JSONObject();
|
|
|
+ responseJson.put("result", true);
|
|
|
+ return HBR.success(responseJson);
|
|
|
}
|
|
|
|
|
|
|