To @scifi000
Is there a way to increase the font size on DOB:, Generated on:, visit Date:. Provider:and the data that follow these?
The font-size here is determined by the Theme Builder and in 5.0.1 you can override that globally or you can change the code directly.
This header is located in the eye_mag subdirectory php/eye_mag_functions.php in the function report_header around line 3704. It controls the report headers for all letters and Rxs in the eye form. If you change the table styling around line 3727 from:
<table style="width:100%;">
to:
<table style="width:100%;font-size:14px;">
the whole header font-size will get bigger (from 12px to 14px) in all these documents, including the Spectacle Rx.
On the Rx Type, by default the Bifocal is marked with a circle, is it possible for me to make the “Single” choice the default?
The spectacle Rx PRINT form is opened (as a modal window) when you click the print icon from a refraction panel, ie. it draws its data from the refraction panel you selected. If the refraction you are printing was a WEAR pair, it is already designated as Single, Bifocal, Trifocal or Progressive - this will be auto-selected when displayed for printing. You are able to edit this window/display modal. If you decide to just print DVO or NVO or change it to mid up top/near bifocal etc, you will need to click the correct Rx type.
When printing AR or CR or MR Rxs you can change that default in SpectableRx.php around line 109:
if ($_REQUEST['REFTYPE']) {
$REFTYPE = $_REQUEST['REFTYPE'];
if ($REFTYPE == "AR") {
$RXTYPE = "Bifocal";
}
if ($REFTYPE == "MR") {
$RXTYPE = "Bifocal";
}
if ($REFTYPE == "CTL") {
$RXTYPE = "Bifocal";
}
Change it to single by replacing “Bifocal” with “Single” in any/all refraction types. The other options for this variable can be “Trifocal” or “Progressive”.
Hope that helps,
Ray