Commit 4c5ff106 by weijiguang

添加错误日志

parent 11d8d291
...@@ -655,6 +655,11 @@ public class WeixinServiceImpl { ...@@ -655,6 +655,11 @@ public class WeixinServiceImpl {
shop1.setDistance("-1"); shop1.setDistance("-1");
shop1.setOrderState(1); shop1.setOrderState(1);
} }
if (BooleanUtils.isTrue(testFlag) && ShopState.TESTING.getState().equals(shop.getState())) {
shop1.setState(ShopState.OPEN.getState());
shop1.setOrderState(1);
shop1.setStateDesc("");
}
String province = shop1.getProvince(); String province = shop1.getProvince();
if (proString.contains(province)) { if (proString.contains(province)) {
for (JSONObject provinceObject : proviceList) { for (JSONObject provinceObject : proviceList) {
......
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