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

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

There is a newer version: 024-13
Show newest version
        <rule id="IF512" name="RX Date BRM, Date Last Contact (COC)" tag="N1386" java-path="lines.line" category="inter-field" depends="DateFollowUpEdit,RXDateBRMEdit">
            <expression><![CDATA[if (line.rxDateBrmYear == null || line.dateOfLastContactYear == null)
    return true

if (line.rxDateBrmYear > line.dateOfLastContactYear)
    return false

if (line.rxDateBrmYear < line.dateOfLastContactYear || line.rxDateBrmMonth == null || line.dateOfLastContactMonth == null)
    return true

if (line.rxDateBrmMonth > line.dateOfLastContactMonth)
    return false

if (line.rxDateBrmMonth < line.dateOfLastContactMonth || line.rxDateBrmDay == null || line.dateOfLastContactDay == null)
    return true

return line.rxDateBrmDay <= line.dateOfLastContactDay]]></expression>
            <message>RX Date BRM, Date of Last Contact conflict.</message>
            <description><![CDATA[This edit is skipped if any of the fields are blank.

RX Date BRM must be less than or equal to Date of Last Contact. If both years are known, but either month is blank, then only the years are compared. If either day is blank, then only the years and months are compared.]]></description>
            <history>
                <event version="SE15-013-01" user="kirbyk" date="2015-01-20" ref="67161">Edit created.</event>
            </history>
        </rule>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy