Commit f18451ec by kangxiaoshan

校验客户主账号

parent db9d9dda
......@@ -249,7 +249,7 @@ public class AccountFlowRestrictServiceImpl implements AccountFlowRestrictServic
} catch (JSONException e) {
e.printStackTrace();
}
return new BigInteger(s);
return new BigInteger("".equals(s)?"0":s);
}
@Override
......
......@@ -264,6 +264,7 @@ public class TkioAccountServiceImpl implements TkioAccountService {
aw = new Account4Web();
aw.setAccountId(account.getId());
aw.setBussinessMan(account.getBussinessman());
}
List<SalesManLeader> roles = salesManLeaderRepository.findAll();
Map<Long, String> busMap = new HashMap<>();
......
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