Commit 2134e2d8 by unknown

optimize the refund

parent 1b5aac76
......@@ -512,7 +512,9 @@ public class OpEventActivityOrderService
String[] playerNumArray = playerNum.split(",");
List<Integer> players = new ArrayList<Integer>();
if(playerNumArray.length == 0){
if(playerNum.trim() != null && !"".equals(playerNum)){
players.add(Integer.valueOf(playerNum.trim()));
}
}else{
for (String playerNumStr : playerNumArray) {
if(playerNumStr.trim() != null && !"".equals(playerNumStr)){
......
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 sign in to comment