Skip to content

Commit

Permalink
Work on #472.
Browse files Browse the repository at this point in the history
  • Loading branch information
uncheckederror committed Jul 30, 2024
1 parent b9b2f20 commit 1229e52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions NumberSearch.Ops/Controllers/PortRequestsController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ public async Task<IActionResult> UnifiedPortRequestAsync(Guid? OrderId, bool For
StreetNumber = streetNumber,
StreetName = $"{portRequest?.Address[streetNumber.Length..].Trim()} {portRequest?.Address2}",
City = portRequest?.City ?? string.Empty,
State = "WA",
State = portRequest?.State ?? "WA",
Zip = ForceManual ? "1" : portRequest?.Zip ?? string.Empty,
RDD = portRequest?.TargetDate is not null && portRequest.TargetDate.HasValue ? portRequest!.TargetDate.GetValueOrDefault().ToString("yyyy-MM-dd") : DateTime.Now.AddDays(3).ToString("yyyy-MM-dd"),
Time = portRequest?.TargetDate is not null && portRequest.TargetDate.HasValue ? portRequest!.TargetDate.GetValueOrDefault().ToString("HH:mm:ss") : "20:00:00",
Expand Down Expand Up @@ -636,7 +636,7 @@ public async Task<IActionResult> UnifiedPortRequestAsync(Guid? OrderId, bool For
StreetNumber = streetNumber,
StreetName = $"{portRequest.Address[streetNumber.Length..].Trim()} {portRequest?.Address2}",
City = portRequest?.City ?? string.Empty,
State = "WA",
State = portRequest?.State ?? "WA",
Zip = ForceManual ? "1" : portRequest?.Zip ?? string.Empty,
RDD = portRequest?.TargetDate is not null && portRequest.TargetDate.HasValue ? portRequest!.TargetDate.GetValueOrDefault().ToString("yyyy-MM-dd") : DateTime.Now.AddDays(3).ToString("yyyy-MM-dd"),
Time = portRequest?.TargetDate is not null && portRequest.TargetDate.HasValue ? portRequest!.TargetDate.GetValueOrDefault().ToString("HH:mm:ss") : "20:00:00",
Expand Down

0 comments on commit 1229e52

Please sign in to comment.