mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
#1243 Vergleich auf BuyerNumber anstatt OrderId
This commit is contained in:
@@ -42,7 +42,7 @@ export class SearchResultGroupItemComponent implements OnInit, OnDestroy {
|
||||
map((item) => {
|
||||
if (!item) return false;
|
||||
|
||||
return this.item.orderId != item.orderId || this.item.processingStatus != item.processingStatus;
|
||||
return this.item.buyerNumber != item.buyerNumber || this.item.processingStatus != item.processingStatus;
|
||||
})
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user