Expand Invoice Searching

This commit is contained in:
Kukks
2019-01-06 10:00:55 +01:00
parent 88150b6535
commit 40c85d6104
3 changed files with 16 additions and 9 deletions

View File

@@ -73,8 +73,8 @@ namespace BTCPayServer.Controllers
Skip = offset,
EndDate = dateEnd,
StartDate = dateStart,
OrderId = orderId,
ItemCode = itemCode,
OrderId = orderId == null ? null : new[] { orderId },
ItemCode = itemCode == null ? null : new[] { itemCode },
Status = status == null ? null : new[] { status },
StoreId = new[] { this.HttpContext.GetStoreData().Id }
};