|
|
@@ -467,7 +467,10 @@ public class DefaultAbstractComponentSMO extends AbstractComponentSMO {
|
|
|
JSONObject paramIn = JSONObject.parseObject(pd.getReqData());
|
|
|
|
|
|
String communityId = "";
|
|
|
- if (paramIn.containsKey("communityId") && !StringUtil.isEmpty(paramIn.getString("communityId"))) {
|
|
|
+ if (paramIn.containsKey("communityId")
|
|
|
+ && !StringUtil.isEmpty(paramIn.getString("communityId"))
|
|
|
+ && !"-1".equals(paramIn.getString("communityId"))
|
|
|
+ ) {
|
|
|
communityId = paramIn.getString("communityId");
|
|
|
checkStoreEnterCommunity(pd, storeId, storeTypeCd, communityId, restTemplate);
|
|
|
}
|