|
|
@ -526,7 +526,11 @@ namespace Win.Sfs.SettleAccount.Entities.BQ |
|
|
|
.OrderByDescending(t => t.Date) |
|
|
|
.ThenByDescending(t => t.CreationTime) |
|
|
|
.FirstOrDefault(); |
|
|
|
importPubSaDetail.Price = priceListEntity?.Price ?? 0; |
|
|
|
if (priceListEntity != null) |
|
|
|
{ |
|
|
|
importPubSaDetail.Price = priceListEntity.Price; |
|
|
|
importPubSaDetail.ExtraProperties.TryAdd("ContractNo", priceListEntity.ContractNo); |
|
|
|
} |
|
|
|
}); |
|
|
|
} |
|
|
|
#endregion
|
|
|
|