Commit 75819bfa by xiaoer.li@freemud.com

对接促销算价Alpha->fix

parent 4533e1fb
......@@ -1779,10 +1779,13 @@ public class ShoppingCartNewServiceImpl implements ShoppingCartNewService {
} else {
if (Arrays.asList(center.getPartnerId().split(",")).contains(partnerId)) {
enable = true;
} else {
enable = false;
}
if (StringUtils.isNotBlank(storeId) && Arrays.asList(center.getStoreId().split(",")).contains(storeId)) {
if (Arrays.asList(center.getStoreId().split(",")).contains(storeId)) {
enable = true;
break;
} else {
enable = false;
}
}
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment