|
|
@@ -216,7 +216,6 @@ public class YWBasicService extends YiWangService implements BasicService {
|
|
|
JSONObject entries = JSONUtil.parseObj(commRes.getResult().toString());
|
|
|
|
|
|
String outStatus = entries.getStr("orderStatus");
|
|
|
-
|
|
|
//更新状态
|
|
|
LambdaUpdateWrapper<LhbOrder> updateWrapper = Wrappers.lambdaUpdate(LhbOrder.class).eq(LhbOrder::getId, order.getId()).set(LhbOrder::getOutStatus, outStatus);
|
|
|
|
|
|
@@ -234,6 +233,9 @@ public class YWBasicService extends YiWangService implements BasicService {
|
|
|
}
|
|
|
break;
|
|
|
}
|
|
|
+
|
|
|
+ orderService.update(updateWrapper);
|
|
|
+
|
|
|
return commRes.getResult().toString();
|
|
|
}
|
|
|
|