All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edits.seer.internal.rules.RXDateOtherEdit.xml Maven / Gradle / Ivy

The newest version!
        <rule id="RXDateOtherEdit" name="RX Date Other (COC)" tag="N0074" java-path="lines.line" category="inter-field" depends="Day_Other,Month_Other,Year_Other">
            <expression><![CDATA[Integer year = Functions.asInt(line.rxDateOtherYear)
Integer month = Functions.asInt(line.rxDateOtherMonth)
Integer day = Functions.asInt(line.rxDateOtherDay)

Integer yearCur = Functions.getCurrentYear()
Integer monthCur = Functions.getCurrentMonth()
Integer dayCur = Functions.getCurrentDay()

if (line.rxDateOtherYear == null)
    return (line.rxDateOtherMonth == null && line.rxDateOtherDay == null)

if ((line.rxDateOtherMonth == null && line.rxDateOtherDay != null) || (month > 12 || (line.rxDateOtherMonth != null && month < 1)))
     return false
 
if (!Functions.between(year, 1930, yearCur))
    return false

if (line.rxDateOtherMonth == null) //by now year fits and day is null if month is null
    return true

if (year == yearCur && month > monthCur)
    return false

if (line.rxDateOtherDay == null) //by now year and month fit
    return true

if (year == yearCur && month == monthCur && day > dayCur)
    return false

Calendar cal = new GregorianCalendar(year, month - 1, 1)
return cal != null && day <= cal.getActualMaximum(Calendar.DAY_OF_MONTH)]]></expression>
            <message>RX Date Other is not valid.</message>
            <description><![CDATA[This edit is skipped if RX Date Other is empty.

The RX Date Other[1250] checks are performed in this order:

A) If the year is blank, month and day must also be blank.

B) Year of Other must be between 1930 and the current system year.

C) If the month is blank, the day must be blank.

D) If day of Other is blank, the year of Other and month of Other can not be greater than the current system year/month.

E) If day is known, then entire RX Date Other is verified. The date must be a valid date (leap years checked) and must be less than or equal to the current system date.]]></description>
            <history>
                <event version="SE15-013-01" user="kirbyk" date="2015-01-14" ref="67144">Edit created.</event>
                <event version="SE16-015-01" user="kirbyk" date="2016-06-20" ref="67425">Fixed documentation.</event>
                <event version="SE16-016-08" user="depryf" date="2017-11-22" ref="67674">Edit syntax updated to allow pre-compilation optimization; no change in behavior.</event>
                <event version="SE22-022-13" user="kirbyk" date="2022-10-18" ref="69045">Fixing edit behavior for future dates.</event>
            </history>
        </rule>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy