#1243 Vergleich auf BuyerNumber anstatt OrderId

This commit is contained in:
Andreas Schickinger
2021-02-18 15:48:05 +01:00
parent ce6d2f1612
commit cbf0ea1712

View File

@@ -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;
})
);
}