using Coldairarrow.Entity.DTO; using Coldairarrow.Entity.Enum; using Coldairarrow.Entity.HuiYan; using Coldairarrow.IBusiness; using Coldairarrow.Util; using EFCore.Sharding; using LinqKit; using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.Linq; using System.Linq.Dynamic.Core; using System.Linq.Expressions; using System.Text.RegularExpressions; using System.Threading.Tasks; namespace Coldairarrow.Business.HuiYan { public class teamitemsBusiness : BaseBusiness, IteamitemsBusiness, ITransientDependency { readonly IOperator _operator; public teamitemsBusiness(IDbAccessor db, IOperator @operator) : base(db) { _operator = @operator; } #region 外部接口 public async Task> GetDataListAsync(PageInput input) { var q = GetIQueryable(); var where = LinqHelper.True(); var search = input.Search; //筛选 if (!search.Condition.IsNullOrEmpty() && !search.Keyword.IsNullOrEmpty()) { var newWhere = DynamicExpressionParser.ParseLambda( ParsingConfig.Default, false, $@"{search.Condition}.Contains(@0)", search.Keyword); where = where.And(newWhere); } return await q.Where(where).GetPageResultAsync(input); } public async Task GetTheDataAsync(string id) { return await GetEntityAsync(id); } public async Task AddDataAsync(teamitems data) { await InsertAsync(data); } public async Task UpdateDataAsync(teamitems data) { await UpdateAsync(data); } public async Task DeleteDataAsync(List ids) { await DeleteAsync(ids); } #endregion #region 私有成员 #endregion public AjaxResult GetTeamCount() { var list= Db.GetIQueryable().Where(c => c.TeamId == _operator.TeamId).Select(c => c.State); return Success(list); } public PageResult GetItems(PageInput input, string keyWord) { try { Expression> select = (a, b, c) => new TeamitemDto { GoodsId = b.GoodsId, HasFilter = b.HasFilter, Platform = b.Platform, GoodsUrl = b.GoodsUrl, CatName = c == null ? String.Empty : c.Name, Extensions = Newtonsoft.Json.JsonConvert.DeserializeObject>(a.ExtensionJson) }; var search = input.Search; select = select.BuildExtendSelectExpre(); var q_titem = GetIQueryable(); var q = from a in q_titem.AsExpandable() join b in Db.GetIQueryable() on a.ItemId equals b.Id into ab from b in ab.DefaultIfEmpty() join c in Db.GetIQueryable() on a.CatId equals c.Id into bc from c in bc.DefaultIfEmpty() select @select.Invoke(a, b, c); int state = 0; bool searchState= int.TryParse(search.Keyword, out state); //查询对应状态 var where = LinqHelper.True(); if (searchState) { if (state == 0) { where = where.And(c => c.State == state || c.State == (int)TeamItemState.已发布比价); } else { if (state == 6) { where = where.And(c => c.State == state || c.State == (int)TeamItemState.待修改); } else { where = where.And(c => c.State == state); } } } where = where.AndIf(!string.IsNullOrEmpty(keyWord), d => string.IsNullOrEmpty(d.CatName) ? true : d.CatName.Contains(keyWord)); where = where.And(c => c.TeamId == _operator.TeamId); input.SortField = "CreateTime"; input.SortType = "desc"; var list = q.Where(where).GetPageResultAsync(input).Result; return list; } catch (Exception ex) { throw new Exception(ex.StackTrace); } } public AjaxResult AddItem(TeamitemDto model) { model.Extensions = new List(); for (int i = 0; i < 5; i++) model.Extensions.Add(new TeamItemExtension() { Platform = model.Platform }); if (string.IsNullOrEmpty(model.ItemId)) { var item = Db.GetIQueryable().FirstOrDefault(c => c.GoodsId == model.GoodsId); if (item == null) { item = new items() { GoodsId = model.GoodsId, GoodsUrl = model.GoodsUrl, CreateTime = DateTime.Now, CreatorId = _operator.UserId, Deleted = false, HasFilter = false, Id = IdHelper.GetId(), Platform = 0 }; item.GoodsUrl = string.Empty; switch (model.Platform) { case (int)ItemPlatform.Taobao: item.GoodsUrl = $"https://item.taobao.com/item.htm?id={item.GoodsId}"; break; case (int)ItemPlatform.Jd: item.GoodsUrl = $"https://item.jd.com/{item.GoodsId}.html"; break; case (int)ItemPlatform.ALBB: item.GoodsUrl = $"https://detail.1688.com/offer/{item.GoodsId}.html"; break; } if (Db.Insert(item) <= 0) { return Error("商品添加失败!"); } } model.ItemId = item.Id; } //设置为初选 int row = Db.Insert(new teamitems() { State = 0, CreateTime = DateTime.Now, CreatorId = _operator.UserId, Deleted = false, ExtensionJson = Newtonsoft.Json.JsonConvert.SerializeObject(model.Extensions), Id = IdHelper.GetId(), TeamId = _operator.TeamId, UserId = _operator.UserId, Price = model.Price, ItemImg = model.ItemImg, Sales = model.Sales, Title = model.Title, CatId=model.CatId, ItemId = model.ItemId }); if (row <= 0) return Error("商品信息添加失败!"); return Success(); } public AjaxResult RemoveItem(string goodsId) { var item = Db.GetIQueryable().FirstOrDefault(c => c.GoodsId == goodsId); int row= Db.Delete(c => c.ItemId == item.Id && c.TeamId == _operator.TeamId); if (row > 0) return Success(); return Error(); } public AjaxResult SetItem(TeamitemDto model) { //if (!string.IsNullOrEmpty(model.RivalGoodsId)) //{ // if (model.RivalGoodsId.Contains(".")) // { // model.RivalGoodsId = Regex.Match(model.RivalGoodsId + "&", "id=(.*?)&").Groups[1].Value; // } //} int row = Db.Update(c => c.Id == model.Id, (item) => { item.ExtensionJson = Newtonsoft.Json.JsonConvert.SerializeObject(model.Extensions); item.RivalGoodsId = model.RivalGoodsId; item.RivalPLCount = model.RivalPLCount; item.RivalPrice = model.RivalPrice; item.RivalTitle = model.RivalTitle; item.RivalImg = model.RivalImg; }); if (row > 0) return Success(); return Error("操作失败!"); } public bool UpdateTaskSuccess(List logs) { var ids= logs.Select(c => c.TeamItemId).ToList(); var list = GetIQueryable().Where(c => ids.Contains(c.Id)).ToList(); list.ForEach(item => { item.State = (int)TeamItemState.精选; //完成日期 item.UpdateDate = DateTime.Now; //判断是否合格 item.IsQualified = CheckIsPass(item); }); logs.ForEach(item => { item.State = PriceTaskState.比价完成; }); var result= Db.RunTransaction(() => { Db.Update(list); Db.Update(logs); }); return result.Success; } public async Task GetMyTaskInfo(int type,DateTime start,DateTime end) { Expression> select = (a, b) => new TaskInfoDto { IsPass = b.IsQualified==true, TeamId = b.TeamId, TeamUserId = b.UserId, TeamDate = b.CreateTime, TeamOverDate = b.UpdateDate }; select = select.BuildExtendSelectExpre(); var q_titem = Db.GetIQueryable(); var q = from a in q_titem.AsExpandable() join b in Db.GetIQueryable() on a.Id equals b.TeamItemId into ab from b in ab.DefaultIfEmpty() select @select.Invoke(b, a); var where = LinqHelper.True(); where = where.And(c => c.CreateTime >= start && c.CreateTime <= end); //团队 if (type == 0) { where = where.And(c => c.TeamId == _operator.TeamId); } //比价 else { where = where.And(c => c.UserId == _operator.UserId); } var list = await q.Where(where).ToListAsync(); var model = new PriceTaskInfo() { AuditCount = list.Count(c => c.State == PriceTaskState.已比价), OverCount = list.Count(c => c.State == PriceTaskState.比价完成), PassCount = list.Count(c => c.IsPass), PublishCount = list.Count }; if (list.Count > 0) { model.PassRate = Math.Round(((decimal)model.PassCount / list.Count) * 100, 2); } return model; } public AjaxResult SetState(string id, int state) { //删除 if (state == -1) { return DeleteItem(id); } var priceUserId = Db.GetIQueryable().FirstOrDefault(c => c.Id == id).PriceTaskUserId; var result= Db.RunTransaction(() => { int row = Db.Update(c => c.Id == id, (item) => { item.State = state; if ((Entity.Enum.TeamItemState)state == TeamItemState.精选) { //完成日期 item.UpdateDate = DateTime.Now; //判断是否合格 item.IsQualified = CheckIsPass(item); } }); if (row <= 0) throw new Exception("任务状态设置失败!"); //同步更新比价任务状态 if ((Entity.Enum.TeamItemState)state == TeamItemState.待修改) { if (!string.IsNullOrEmpty(priceUserId)) { row = Db.Update(c => c.UserId == priceUserId && c.TeamItemId == id, (item) => { item.State = PriceTaskState.待修改; }); if (row <= 0) throw new Exception("比价任务设置失败!"); } } if (!string.IsNullOrEmpty(priceUserId)) { if ((Entity.Enum.TeamItemState)state == TeamItemState.精选) { row = Db.Update(c => c.UserId == priceUserId && c.TeamItemId == id, (item) => { item.State = PriceTaskState.比价完成; }); if (row <= 0) throw new Exception("比价任务设置失败!"); } } }); if (result.Success) { return Success("更新成功"); } return Error("操作失败!"); } /// /// 检测是否合格 /// /// private bool CheckIsPass(teamitems item) { decimal profits = 0; var extList= Newtonsoft.Json.JsonConvert.DeserializeObject>(item.ExtensionJson); var ex= extList.OrderByDescending(c => c.Profits).FirstOrDefault(); if (ex == null) return false; //利润率 profits = ex.Profits; //竞品客单为50元以下,利润率达80% if (item.RivalPrice < 50) { return profits >= 80; } //竞品客单为50-100元,利润率达70% if (item.RivalPrice >= 50&&item.RivalPrice<100) { return profits >= 70; } //竞品客单为100-150元,利润率达60% if (item.RivalPrice >= 100 && item.RivalPrice < 150) { return profits >= 60; } //竞品客单为150-300元,利润率达50% if (item.RivalPrice >= 150 && item.RivalPrice < 300) { return profits >= 50; } //竞品客单为300元以上,利润率达40% if (item.RivalPrice >= 300) { return profits >= 40; } return false; } public AjaxResult DeleteItem(string id) { string itemId = Db.GetIQueryable().FirstOrDefault(c => c.Id == id)?.ItemId; var result = Db.RunTransaction(() => { var row = Db.Delete(c => c.Id == id); if (row <= 0) { throw new Exception("操作失败!"); } row = Db.Update(c => c.ItemsId == itemId && c.TeamId == _operator.TeamId, (item) => { //item.IsScreening = false; item.IsAdded = false; }); //if (row <= 0) //{ // throw new Exception($"删除失败!"); //} }); if (result.Success) { return Success(); } return Error(result.ex.Message); } } }