mirror of
https://github.com/rmcrackan/Libation.git
synced 2025-12-23 22:17:52 -05:00
fix UntilDate
This commit is contained in:
@@ -106,7 +106,7 @@ namespace DtoImporterService
|
||||
{
|
||||
foreach (var plan in item.Plans)
|
||||
{
|
||||
if (plan.IsAyce && plan.EndDate.Value.Year != 2099 && plan.EndDate.HasValue)
|
||||
if (plan.IsAyce && plan.EndDate.Value.Year != 2099 && plan.EndDate.Value.Year != 9999 && plan.EndDate.HasValue)
|
||||
{
|
||||
includedUntil = plan.EndDate.Value.LocalDateTime;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user