edits.seer.internal.rules.IF512.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of validation-edits-seer Show documentation
Show all versions of validation-edits-seer Show documentation
Java implemenation of the SEER edits.
<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>