|
|
@@ -59,7 +59,7 @@ namespace MySystem.Areas.Admin.Controllers
|
|
|
Fields.Add("PosSn", "1"); //SN编号
|
|
|
Fields.Add("BrandId", "0"); //品牌
|
|
|
|
|
|
- string condition = " and Status>-1 AND BindingState = 1 AND DATE_SUB(CURDATE(), INTERVAL 90 DAY) >= date(BindingTime) and UpFeeFlag=1 and DownFeeFlag=0 and (SeoDescription!='设置成功' or SeoDescription is null or SeoDescription='')";
|
|
|
+ string condition = " and Status>-1 AND BindingState = 1 AND DATE_SUB(CURDATE(), INTERVAL 90 DAY) >= date(BindingTime) and UpFeeFlag=1 and DownFeeFlag=0 and BrandId!=6 and (SeoDescription!='设置成功' or SeoDescription is null or SeoDescription='')";
|
|
|
//绑定状态
|
|
|
if (!string.IsNullOrEmpty(BindingStateSelect))
|
|
|
{
|
|
|
@@ -454,7 +454,7 @@ namespace MySystem.Areas.Admin.Controllers
|
|
|
List<int> upposIds = new List<int>();
|
|
|
string userIds = "";
|
|
|
DateTime check = DateTime.Now.AddDays(-90);
|
|
|
- List<PosMachinesTwo> poslist = db.PosMachinesTwo.Where(m => m.Status > -1 && m.BindingState == 1 && m.UpFeeFlag == 1 && m.DownFeeFlag == 0 && m.BindingTime <= check && m.SeoDescription != "设置成功").ToList();//非盒子
|
|
|
+ List<PosMachinesTwo> poslist = db.PosMachinesTwo.Where(m => m.Status > -1 && m.BindingState == 1 && m.UpFeeFlag == 1 && m.DownFeeFlag == 0 && m.BindingTime <= check && m.SeoDescription != "设置成功" && m.BrandId != 6).ToList();//非盒子
|
|
|
foreach (PosMachinesTwo pos in poslist)
|
|
|
{
|
|
|
Dictionary<string, object> Fields = new Dictionary<string, object>();
|
|
|
@@ -466,11 +466,8 @@ namespace MySystem.Areas.Admin.Controllers
|
|
|
{
|
|
|
userIds += pos.BuyUserId + ",";
|
|
|
}
|
|
|
- if(pos.Id != 6)
|
|
|
- {
|
|
|
- string info = "{\"RecordId\":\"\",\"PosId\":\"" + pos.Id + "\",\"Fee\": \"" + 0.63 + "\",\"Kind\": \"" + 1 + "\",\"OpMan\": \"" + SysUserName + "\"}";
|
|
|
- RedisDbconn.Instance.AddList("SetDepositPostQueue", info);
|
|
|
- }
|
|
|
+ string info = "{\"RecordId\":\"\",\"PosId\":\"" + pos.Id + "\",\"Fee\": \"" + 0.63 + "\",\"Kind\": \"" + 1 + "\",\"OpMan\": \"" + SysUserName + "\"}";
|
|
|
+ RedisDbconn.Instance.AddList("SetDepositPostQueue", info);
|
|
|
|
|
|
new AdminContentOther(_accessor.HttpContext, PublicFunction.MainTables).Edit("PosMachinesTwo", Fields, pos.Id);
|
|
|
|