Skip to content

Commit

Permalink
nopSolutions#6591 Fixed grouping in the return request accessibility …
Browse files Browse the repository at this point in the history
…get method
  • Loading branch information
DmitriyKulagin committed Mar 7, 2023
1 parent d0b9017 commit 84a011d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Libraries/Nop.Services/Orders/ReturnRequestService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,7 @@ from rr in _returnRequestRepository.Table
where rr.ReturnRequestStatusId != cancelledStatusId
group rr by new
{
rr.OrderItemId,
rr.Quantity
rr.OrderItemId
} into g
select new
{
Expand Down

0 comments on commit 84a011d

Please sign in to comment.