|
@@ -183,15 +183,39 @@ namespace OASystem.Infrastructure.Repositories.Groups
|
|
|
|
|
|
if (basicItems.Any())
|
|
|
{
|
|
|
- viewInfo.FeeItems = basicItems.Select(x =>
|
|
|
- new QuoteItemInfo {
|
|
|
- ItemId = x.Id,
|
|
|
+ var quoteItemInfos = new List<QuoteItemInfo>();
|
|
|
+ basicItems.ForEach(x =>
|
|
|
+ {
|
|
|
+ var quoteSubItemInfos = new List<QuoteSubItemInfo>();
|
|
|
+ if (x.IsOnlyRemark)
|
|
|
+ {
|
|
|
+ quoteSubItemInfos.Add(new QuoteSubItemInfo
|
|
|
+ {
|
|
|
+ Id = 0,
|
|
|
+ ItemId = x.Id,
|
|
|
+ Index = 1,
|
|
|
+ FeeName = "",
|
|
|
+ UnitPrice = 0.00M,
|
|
|
+ Currency = "CNY",
|
|
|
+ Quantity = 1.00M,
|
|
|
+ PplNum = 1,
|
|
|
+ TotalAmt = 0.00M,
|
|
|
+ Remark = $"-"
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ quoteItemInfos.Add(new QuoteItemInfo
|
|
|
+ {
|
|
|
+ QuoteId = quoteId,
|
|
|
+ ItemId = x.Id,
|
|
|
ItemName = x.Name,
|
|
|
- IsOnlyRemark = x.IsOnlyRemark,
|
|
|
- Index = x.Index
|
|
|
- })
|
|
|
- .OrderBy(x => x.Index)
|
|
|
- .ToArray();
|
|
|
+ IsOnlyRemark = x.IsOnlyRemark,
|
|
|
+ Infos = quoteSubItemInfos.ToArray(),
|
|
|
+ Index = x.Index
|
|
|
+ });
|
|
|
+ });
|
|
|
+
|
|
|
+ viewInfo.FeeItems = quoteItemInfos.OrderBy(x => x.Index).ToArray();
|
|
|
}
|
|
|
|
|
|
var quoteInfo = await _sqlSugar.Queryable<Grp_EnterExitCostQuote>()
|
|
@@ -221,7 +245,18 @@ namespace OASystem.Infrastructure.Repositories.Groups
|
|
|
|
|
|
if (quoteItems.Any())
|
|
|
{
|
|
|
- viewInfo.FeeItems = viewInfo.FeeItems.Select(x => new QuoteItemInfo { Index = x.Index, QuoteId = dto.Id, ItemId = x.ItemId, ItemName = x.ItemName, Infos = quoteItems.Where(y => y.ItemId == x.ItemId).OrderBy(y => y.Index).ToArray() }).ToArray();
|
|
|
+ foreach (var x in viewInfo.FeeItems)
|
|
|
+ {
|
|
|
+ var currQuoteInfos = quoteItems.Where(y => y.ItemId == x.ItemId).OrderBy(y => y.Index).ToArray();
|
|
|
+ if (x.IsOnlyRemark)
|
|
|
+ {
|
|
|
+ if (currQuoteInfos.Length > 0)
|
|
|
+ {
|
|
|
+ x.Infos = currQuoteInfos;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else x.Infos = currQuoteInfos;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -243,16 +278,40 @@ namespace OASystem.Infrastructure.Repositories.Groups
|
|
|
|
|
|
if (basicItems.Any())
|
|
|
{
|
|
|
- viewInfo.FeeItems = basicItems.Select(x =>
|
|
|
- new QuoteItemInfo
|
|
|
+ var quoteItemInfos = new List<QuoteItemInfo>();
|
|
|
+ basicItems.ForEach(x =>
|
|
|
+ {
|
|
|
+
|
|
|
+ var quoteSubItemInfos = new List<QuoteSubItemInfo>();
|
|
|
+ if (x.IsOnlyRemark)
|
|
|
+ {
|
|
|
+ quoteSubItemInfos.Add(new QuoteSubItemInfo
|
|
|
+ {
|
|
|
+ Id = 0,
|
|
|
+ ItemId = x.Id,
|
|
|
+ Index = 1,
|
|
|
+ FeeName = "",
|
|
|
+ UnitPrice = 0.00M,
|
|
|
+ Currency = "CNY",
|
|
|
+ Quantity = 1.00M,
|
|
|
+ PplNum = 1,
|
|
|
+ TotalAmt = 0.00M,
|
|
|
+ Remark = $"-"
|
|
|
+ });
|
|
|
+ }
|
|
|
+
|
|
|
+ quoteItemInfos.Add(new QuoteItemInfo
|
|
|
{
|
|
|
+ QuoteId = 0,
|
|
|
ItemId = x.Id,
|
|
|
ItemName = x.Name,
|
|
|
IsOnlyRemark = x.IsOnlyRemark,
|
|
|
+ Infos = quoteSubItemInfos.ToArray(),
|
|
|
Index = x.Index
|
|
|
- })
|
|
|
- .OrderBy(x => x.Index)
|
|
|
- .ToArray();
|
|
|
+ });
|
|
|
+ });
|
|
|
+
|
|
|
+ viewInfo.FeeItems = quoteItemInfos.OrderBy(x => x.Index).ToArray();
|
|
|
}
|
|
|
|
|
|
var quoteInfo = await _sqlSugar.Queryable<Grp_EnterExitCostQuote>()
|
|
@@ -282,7 +341,13 @@ namespace OASystem.Infrastructure.Repositories.Groups
|
|
|
|
|
|
if (quoteItems.Any())
|
|
|
{
|
|
|
- viewInfo.FeeItems = viewInfo.FeeItems.Select(x => new QuoteItemInfo { Index = x.Index, QuoteId = quoteInfo.Id, ItemId = x.ItemId, ItemName = x.ItemName, Infos = quoteItems.Where(y => y.ItemId == x.ItemId).OrderBy(y => y.Index).ToArray() }).ToArray();
|
|
|
+ //viewInfo.FeeItems = viewInfo.FeeItems.Select(x => new QuoteItemInfo { Index = x.Index, QuoteId = quoteInfo.Id, ItemId = x.ItemId, ItemName = x.ItemName, Infos = quoteItems.Where(y => y.ItemId == x.ItemId).OrderBy(y => y.Index).ToArray() }).ToArray();
|
|
|
+
|
|
|
+ viewInfo.FeeItems.ForEach(x =>
|
|
|
+ {
|
|
|
+ x.QuoteId = quoteInfo.Id;
|
|
|
+ x.Infos = quoteItems.Where(y => y.ItemId == x.ItemId).OrderBy(y => y.Index).ToArray(); ;
|
|
|
+ });
|
|
|
}
|
|
|
}
|
|
|
|