|
|
@ -3,6 +3,7 @@ using System.Collections.Generic; |
|
|
|
using System.Globalization; |
|
|
|
using System.Linq; |
|
|
|
using System.Linq.Dynamic.Core; |
|
|
|
using System.Text.RegularExpressions; |
|
|
|
using System.Threading.Tasks; |
|
|
|
using EFCore.BulkExtensions; |
|
|
|
using Microsoft.AspNetCore.Authorization; |
|
|
@ -403,7 +404,7 @@ public class PUB_SA_SERVICE : SettleAccountApplicationBase<PUB_SA> |
|
|
|
var luAssemble = lus.Select(t => t.Replace(" ", "")); |
|
|
|
pubSaDetail.LU += luAssemble.Aggregate(new string(' ', 6), (current, index) => current + index); |
|
|
|
} |
|
|
|
pubSaDetail.PN = pubSaDetail.PN.Replace("'", "").Replace("’", "").Replace("‘", ""); |
|
|
|
pubSaDetail.PN = Regex.Replace(pubSaDetail.PN, "['‘’]", ""); |
|
|
|
}); |
|
|
|
|
|
|
|
return GroupPnLu(pubSaDetails); |
|
|
|