From ec2cd87d7b4970fe42eb73d9dc17c317844a482f Mon Sep 17 00:00:00 2001 From: teryhill Date: Sat, 10 Oct 2015 10:02:01 -0400 Subject: [PATCH] Fix for the replacement claim logic Fix for the replacement claim logic --- library/Claim.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Claim.class.php b/library/Claim.class.php index 060a71d39..ed329b530 100644 --- a/library/Claim.class.php +++ b/library/Claim.class.php @@ -1118,7 +1118,7 @@ class Claim { } function frequencyTypeCode() { - return empty($this->billing_options['replacement_claim']) ? '1' : '7'; + return ($this->billing_options['replacement_claim'] == 1) ? '7' : '1'; } function additionalNotes() { -- 2.11.4.GIT