generated from root/miduo_server
订单列表修改
parent
ba9b444473
commit
f5bae38b42
|
@ -79,8 +79,8 @@ public class OrderInfoController {
|
|||
if(serverId1 != 0 && serverId1 != serverId) {
|
||||
continue;
|
||||
}
|
||||
String ccId = cgPayOrder.getCc_id();
|
||||
if (ccId != null && !ccId.equals(packId)){
|
||||
String ccId = Optional.ofNullable(cgPayOrder.getCc_id()).orElse("");
|
||||
if (!packId.equals("ALLORDER") && !ccId.equals(packId)){
|
||||
continue;
|
||||
}
|
||||
String accountid = cgPayOrder.getUserId();
|
||||
|
|
|
@ -75,6 +75,7 @@
|
|||
游戏名称:</label>
|
||||
<div class="formControls col-xs-8 col-sm-9">
|
||||
<select name="packId" class="input-text" id="packId"><!--下拉列表-->
|
||||
<option th:value="ALLORDER" th:text="全部" selected="selected"></option>
|
||||
<option th:each="pack:${channelPackInfo}" th:value="${pack.id}" th:text="${pack.name}"></option>
|
||||
</select>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue