zoujiajian 1 год назад
Родитель
Сommit
556110745b

+ 2 - 1
netflix-web/src/main/java/com/cyksj/web/controller/manage/CmsOrderController.java

@@ -188,7 +188,8 @@ public class CmsOrderController {
 			//3.续费升级订单
 			if (otherOrderType == 3) {
 				builder.put("tb", String.format(" inner join order_don_renew_record odcr on odcr.order_id = o.id and odcr.order_type = 2"));
-			} else if (otherOrderType == 4) {
+			}
+			if (otherOrderType == 4) {
 				//4.用户权益订单
 				builder.put("tb", String.format(" inner join user_benefits_order_record ubor on ubor.order_id = o.id and ubor.type = 'RENEW'"));
 			}