Skip to content

Commit

Permalink
Merge pull request #1634 from steve-noel/ARTP-1157-fix-wrong-dates-in…
Browse files Browse the repository at this point in the history
…-blotter

feat(server): fix wrong date displayed in blotter (ARTP-1157)
  • Loading branch information
rikoe authored Jul 8, 2020
2 parents d609b6f + d52d3b8 commit e28c617
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public void Dispose()
public async Task<ExecuteTradeResponseDto> ExecuteAsync(ExecuteTradeRequestDto request, string user)
{
var id = await _tradeIdProvider.GetNextId();
var tradeDate = DateTimeOffset.UtcNow.Date;
var tradeDate = DateTimeOffset.UtcNow;

DateTimeOffset valueDate;
if (!DateTimeOffset.TryParse(request.ValueDate, out valueDate))
Expand Down

0 comments on commit e28c617

Please sign in to comment.