|
@@ -43,13 +43,23 @@ namespace OASystem.Infrastructure.Repositories.Groups
|
|
|
}).ToListAsync();
|
|
|
|
|
|
var newList = origList.Select(x => new InitBasicItemView
|
|
|
- {
|
|
|
- Id = x.Id,
|
|
|
- Name = removeNl ? x.Name.Replace("\\r\\n", "") : x.Name,
|
|
|
- Index = int.TryParse(x.Index, out int index) ? index : -1
|
|
|
- })
|
|
|
+ {
|
|
|
+ Id = x.Id,
|
|
|
+ Name = removeNl ? x.Name.Replace("\\r\\n", "") : x.Name,
|
|
|
+ Index = int.TryParse(x.Index, out int index) ? index : -1
|
|
|
+ })
|
|
|
.OrderBy(x => x.Index)
|
|
|
.ToList();
|
|
|
+
|
|
|
+ var onlyItems = new List<int>() {
|
|
|
+ 1358, //邀请函发放对象
|
|
|
+ 1360, //邀请函发放时间
|
|
|
+ };
|
|
|
+
|
|
|
+ newList.ForEach(x =>
|
|
|
+ {
|
|
|
+ if (onlyItems.Contains(x.Id)) x.IsOnlyRemark = true;
|
|
|
+ });
|
|
|
return newList;
|
|
|
}
|
|
|
|
|
@@ -173,7 +183,15 @@ namespace OASystem.Infrastructure.Repositories.Groups
|
|
|
|
|
|
if (basicItems.Any())
|
|
|
{
|
|
|
- viewInfo.FeeItems = basicItems.Select(x => new QuoteItemInfo { ItemId = x.Id, ItemName = x.Name, Index = x.Index }).OrderBy(x => x.Index).ToArray();
|
|
|
+ viewInfo.FeeItems = basicItems.Select(x =>
|
|
|
+ new QuoteItemInfo {
|
|
|
+ ItemId = x.Id,
|
|
|
+ ItemName = x.Name,
|
|
|
+ IsOnlyRemark = x.IsOnlyRemark,
|
|
|
+ Index = x.Index
|
|
|
+ })
|
|
|
+ .OrderBy(x => x.Index)
|
|
|
+ .ToArray();
|
|
|
}
|
|
|
|
|
|
var quoteInfo = await _sqlSugar.Queryable<Grp_EnterExitCostQuote>()
|
|
@@ -225,7 +243,16 @@ namespace OASystem.Infrastructure.Repositories.Groups
|
|
|
|
|
|
if (basicItems.Any())
|
|
|
{
|
|
|
- viewInfo.FeeItems = basicItems.Select(x => new QuoteItemInfo { ItemId = x.Id, ItemName = x.Name, Index = x.Index }).OrderBy(x => x.Index).ToArray();
|
|
|
+ viewInfo.FeeItems = basicItems.Select(x =>
|
|
|
+ new QuoteItemInfo
|
|
|
+ {
|
|
|
+ ItemId = x.Id,
|
|
|
+ ItemName = x.Name,
|
|
|
+ IsOnlyRemark = x.IsOnlyRemark,
|
|
|
+ Index = x.Index
|
|
|
+ })
|
|
|
+ .OrderBy(x => x.Index)
|
|
|
+ .ToArray();
|
|
|
}
|
|
|
|
|
|
var quoteInfo = await _sqlSugar.Queryable<Grp_EnterExitCostQuote>()
|
|
@@ -340,7 +367,9 @@ namespace OASystem.Infrastructure.Repositories.Groups
|
|
|
}
|
|
|
else if (!isNull) //编辑
|
|
|
{
|
|
|
- var quoteUpd = await _sqlSugar.Updateable(quoteInfo).IgnoreColumns(x => new { x.CreateUserId, x.CreateTime, x.IsDel }).ExecuteCommandAsync();
|
|
|
+ var quoteUpd = await _sqlSugar.Updateable(quoteInfo)
|
|
|
+ .IgnoreColumns(x => new { x.CreateUserId, x.CreateTime, x.IsDel })
|
|
|
+ .ExecuteCommandAsync();
|
|
|
if (quoteUpd < 1)
|
|
|
{
|
|
|
jw.Msg = "编辑失败!";
|
|
@@ -363,6 +392,35 @@ namespace OASystem.Infrastructure.Repositories.Groups
|
|
|
|
|
|
if (updItems.Any())
|
|
|
{
|
|
|
+ //验证及处理前台删除项数据
|
|
|
+ var perDelItems = await _sqlSugar.Queryable<Grp_EnterExitCostQuoteItem>()
|
|
|
+ .Where(x => x.IsDel == 0 && x.QuoteId == quoteId)
|
|
|
+ .ToListAsync();
|
|
|
+ if (perDelItems.Any())
|
|
|
+ {
|
|
|
+ var delItems = perDelItems.Where(x => !updItems.Select(y => y.Id).Contains(x.Id)).ToList();
|
|
|
+ if (delItems.Any())
|
|
|
+ {
|
|
|
+ var newDelItems = delItems.Select(x =>
|
|
|
+ new Grp_EnterExitCostQuoteItem
|
|
|
+ {
|
|
|
+ Id = x.Id,
|
|
|
+ DeleteTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss"),
|
|
|
+ DeleteUserId = dto.CurrUserId,
|
|
|
+ IsDel = 1
|
|
|
+ }).ToList();
|
|
|
+ var delItemStatus = await _sqlSugar.Updateable(newDelItems)
|
|
|
+ .UpdateColumns(x => new { x.DeleteTime, x.DeleteUserId, x.IsDel })
|
|
|
+ .ExecuteCommandAsync();
|
|
|
+ if (delItemStatus < 1)
|
|
|
+ {
|
|
|
+ jw.Msg = "移除项费用失败!";
|
|
|
+ _sqlSugar.RollbackTran();
|
|
|
+ return jw;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
var updItem = await _sqlSugar.Updateable(updItems).IgnoreColumns(x => new { x.CreateUserId, x.CreateTime, x.IsDel }).ExecuteCommandAsync();
|
|
|
if (updItem < 1)
|
|
|
{
|