|
@@ -907,7 +907,9 @@ public class BatchController {
|
|
|
Map<String, Object> updateMap = updateService.updateUnitBid(token.getAccessToken(), accountId, unitId, multiply, userId);
|
|
|
if (!Check.isNull(updateMap)) {
|
|
|
Integer code = (Integer) updateMap.get("code");
|
|
|
- if (code != 0) {
|
|
|
+ if (code == 0) {
|
|
|
+ iKuaishouInterfaceService.getGroup(token.getAccessToken(), accountId, unitId);
|
|
|
+ } else {
|
|
|
JSONObject failJson = new JSONObject();
|
|
|
failJson.put("message", updateMap.get("message"));
|
|
|
if (!Check.isNull(group)) {
|