Sha256: eeac14583812b977b9fe48daf716c580f8e9f87e5fcabcc7e40869d1f451a95c
Contents?: true
Size: 519 Bytes
Versions: 28
Compression:
Stored size: 519 Bytes
Contents
require_dependency "renalware/pathology/requests" module Renalware module Pathology module Requests class GlobalRule class PatientSexIs < GlobalRule validates :param_comparison_value, inclusion: { in: %w(M F), allow_nil: false } def observation_required_for_patient?(patient, _date) patient.sex.code == param_comparison_value end def to_s "patient is #{param_comparison_value}" end end end end end end
Version data entries
28 entries across 28 versions & 1 rubygems