The statement.inc.php file is substituting “Office Visit” for all the eye exam codes. I presume that this was done to decrease the size of the line. I’m not a programmer, but looking thru the file it appears that this is occurring at Line’s 666 & 667 as well as 935 & 936. The problem that we are having is that the words “Office Visit” are confusing patients when it is substituted for 92015 = Refraction. Would it be possible to exclude 92015 from this substitution? Would a substitution of “$tmp == ‘Procedure 9201’)” with “$tmp == ‘Procedure 92012’ || $tmp == ‘ Procedure 92014’)” fix the problem?
Is the fix for the blank Vitreous fields going to be included in Patch 7?
Hi ViSolve,
I tried entering;
$tmp != ‘Procedure 92015’.
After;
“$tmp == ‘Procedure 9201’)”
This did not work.
Then tried removing
“$tmp == ‘Procedure 9201’)”
Then adding
“$tmp == ‘Procedure 92012’ || $tmp == ‘ Procedure 92014’)”
These are the only 2 procedure codes that start with 9201_.
This changed Office Visit to Procedure, but not Refraction.