|
@ -486,7 +486,15 @@ namespace Win.Sfs.SettleAccount.Entities.BQ |
|
|
var luAssemble = lus.Select(t => t.Replace(" ", "")); |
|
|
var luAssemble = lus.Select(t => t.Replace(" ", "")); |
|
|
pubSaDetail.LU += luAssemble.Aggregate(new string(' ', 6), (current, index) => current + index); |
|
|
pubSaDetail.LU += luAssemble.Aggregate(new string(' ', 6), (current, index) => current + index); |
|
|
} |
|
|
} |
|
|
pubSaDetail.PN = Regex.Replace(pubSaDetail.PN, "['‘’]", ""); |
|
|
try |
|
|
|
|
|
{ |
|
|
|
|
|
pubSaDetail.PN = Regex.Replace(pubSaDetail.PN, "['‘’]", ""); |
|
|
|
|
|
} |
|
|
|
|
|
catch(Exception ex) |
|
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
}); |
|
|
}); |
|
|
return pubSaDetails; |
|
|
return pubSaDetails; |
|
|
} |
|
|
} |
|
|