Skip to content

Commit

Permalink
Updated the logic for Revised invoice received date (#225)
Browse files Browse the repository at this point in the history
  • Loading branch information
Prashanthi-Sivanarayana authored Aug 22, 2024
1 parent 51f4edc commit 30fc1d3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ public async Task<JsonObject> RunProcessAsync(ID365AppUserService appUserService
List<DateTime> holidaysList = GetStartTimes(businessclosuresdata.Data.ToString());
DateTime revisedInvoiceDate = DateTime.Today.Date.AddBusinessDays(_BCCASApi.DaysToCorrectPayments, holidaysList);
DateTime revisedInvoiceReceivedDate = revisedInvoiceDate.AddDays(-4);
DateTime revisedInvoiceReceivedDate = revisedInvoiceDate.AddBusinessDays(_BCCASApi.PayableInDays, holidaysList);
DateTime revisedEffectiveDate = revisedInvoiceDate;
if (line != null && header != null)
Expand Down

0 comments on commit 30fc1d3

Please sign in to comment.