|
|
@@ -124,7 +124,8 @@ namespace MySystem.Areas.Api.Controllers.v1.Main2
|
|
|
if (!string.IsNullOrEmpty(data["BrandId"].ToString()))
|
|
|
{
|
|
|
BrandId = int.Parse(function.CheckInt(data["BrandId"].ToString())); //品牌(0 银联 1 好哒)
|
|
|
- condition += " and BrandId=" + BrandId + "";
|
|
|
+ if (BrandId == 0) condition += " and SeoTitle!=OrderNo";
|
|
|
+ if (BrandId == 1) condition += " and SeoTitle=OrderNo";
|
|
|
}
|
|
|
List<RelationData> relationData = new List<RelationData>();
|
|
|
List<Dictionary<string, object>> dataList = new List<Dictionary<string, object>>();
|