|
|
@ -70,7 +70,9 @@ public class PurchaseReceiptRequestAppService : |
|
|
|
public virtual async Task<PurchaseReceiptRequestDetailDTO> GetDetailByItemAndPackingAsync(string itemCode, |
|
|
|
string packingCode) |
|
|
|
{ |
|
|
|
var entitysList = (await _repository.GetListAsync(p => p.Details.Any(y => y.ItemCode == itemCode && y.PackingCode == packingCode), true).ConfigureAwait(false)) |
|
|
|
var entitysList = (await _repository |
|
|
|
.GetListAsync(p => p.Details.Any(y => y.ItemCode == itemCode && y.PackingCode == packingCode), true) |
|
|
|
.ConfigureAwait(false)); |
|
|
|
|
|
|
|
if (entitysList != null && entitysList.Any()) |
|
|
|
{ |
|
|
|