tmccormi wrote on Friday, May 18, 2012:
We have discovered a issue, we think primarily with older data conversions that causes the compare between SSN in the patient_data record and the insurance_data record. The issue seems to be trailing spaces. I have made a minor change that seems to fix it, but there may be a better approach that covers more ground. Essentially I just trim the subscriber_ssn to remove the trailing space before the compare. See code below. If their are suggestions let me know, otherwise I’ll commit this minor fix.
-Tony
diff -git a/interface/patient_file/summary/demographics_full.php b/interface/patient_file/summary/demographics_
index 4360042..5976e67 100644
--- a/interface/patient_file/summary/demographics_full.php
+++ b/interface/patient_file/summary/demographics_full.php
@@ -611,7 +611,7 @@ $group_seq=0; // this gives the DIV blocks unique IDs
<tr>
<td class=leftborder><span class=bold><?php xl('S.S.','e'); ?> </span></td>
<td class=required>:</td>
- <td><input type=entry size=11 name=i<?php echo $i?>subscriber_ss value="<?php ec
+ <td><input type=entry size=11 name=i<?php echo $i?>subscriber_ss value="<?php ec
</tr>
<tr>