You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Most of the time, users will paste patient information from a spreadsheet into the the form for generating GUIDs. The origin data may contain dates in a different format.
Under the PII input, display a dropdown labeled "Date format for the dates of birth", hint "Please specify the format of the dates of birth by selecting one of the supported formats", with 12 values (expand the expressions to specify different separators):
yyyy[-/. ]MM[-/. ]dd, E.g. 2010-12-23,
dd[-/. ]MM[-/. ]yyyy, E.g. 23-12-2010,
MM[-/. ]dd[-/. ]yyyy, E.g. 12-23-2010.
yyyy-MM-dd should be selected by default.
Dates should be validated against the selected format (update the regexp from #3 to match each entry).
Additionally, update the regexps to ensure that single digit day and month are accepted (e.g. 2010-1-17).
The text was updated successfully, but these errors were encountered:
marta-
changed the title
As a user, I can specify a date format for the data i'm providing
As a user, I can specify a date format for the data I'm providing
Oct 14, 2020
…viding
* Reorganized the code to separate date processing functionality
* Updated helper texts to reflect currently selected date format
* Fixed bug where different date formats would generate different GUIDs forthe same date because of wrong date serialization before hashing
Most of the time, users will paste patient information from a spreadsheet into the the form for generating GUIDs. The origin data may contain dates in a different format.
Under the PII input, display a dropdown labeled "Date format for the dates of birth", hint "Please specify the format of the dates of birth by selecting one of the supported formats", with 12 values (expand the expressions to specify different separators):
yyyy[-/. ]MM[-/. ]dd, E.g. 2010-12-23
,dd[-/. ]MM[-/. ]yyyy, E.g. 23-12-2010
,MM[-/. ]dd[-/. ]yyyy, E.g. 12-23-2010
.yyyy-MM-dd
should be selected by default.Dates should be validated against the selected format (update the regexp from #3 to match each entry).
Additionally, update the regexps to ensure that single digit day and month are accepted (e.g.
2010-1-17
).The text was updated successfully, but these errors were encountered: