[BUG] Days in leap year are not correctly retrieved from the controller
Closed this issue · 3 comments
/cib
Branch 203-_BUG_Leap_year_has_strange_behavior created!
Culprit
This bug occurs, when date value (DATE, LDATE, DATETIME, LDATETIME) from PLC is read over WebApi.
It happens:
-
when is a leap year and date is after 29th february
e.g. : 05.20.2000 ( WebApi will return 05.21.2000 ) -
when is a next year after leap year before 28th february
e.g.: 02.13.2001 (WebApi will return 02.14.2001) -
27th february and 28th february a year after leap year read over webapi return same value
The culprit is GetFromBinary(long value)
method in corresponding WebApi primitive files (WebApiDate.cs, WebApiLDate.cs, WebApiDatetime.cs, WebapiILDatetime.cs). The returned binary value from WebApi is not correct and these inconsistencies happen.
Reproduced in this branch 203-_BUG_Leap_year_has_strange_behavior in AX_Sharp.cs
test file.
Plc values are defined in ax-test-project
in program.st
file:
Temporary fix
Temporary not-fully fix was introduced, where date is checked for a leap year a corresponding corrections are done:
This fix is not working for dates 27th february and 28th february (a year after leap year, eg 2001), as they return same value.