Skip to content

Commit ad78260

Browse files
:|
1 parent 98519af commit ad78260

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

EstateReportingAPI/Controllers/FactTransactionsController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ private async Task<List<TopBottomData>> GetTopBottomData(Guid estateId, TopBotto
293293
IQueryable<Transaction> mainQuery = context.Transactions
294294
.Where(joined => joined.IsAuthorised == true
295295
&& joined.TransactionType == "Sale"
296-
&& joined.TransactionDate == new DateTime(2023, 09, 14));
296+
&& joined.TransactionDate == DateTime.Now.Date);
297297
IQueryable<TopBottomData> queryable = null;
298298
if (dimension == Dimension.Product)
299299
{

0 commit comments

Comments
 (0)