订单列表修改

master
duhui 2021-07-20 17:17:13 +08:00
parent ba9b444473
commit f5bae38b42
2 changed files with 3 additions and 2 deletions

View File

@ -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();

View File

@ -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>