added support for replacement_claim flag
[openemr.git] / interface / forms / misc_billing_options / view.php
blob6c9a6de9f8fff5149783cea1b3e9677c939f8d52
1 <?php
2 include_once("../../globals.php");
3 ?>
4 <html><head>
5 <?php html_header_show();?>
6 <link rel="stylesheet" href="<?php echo $css_header;?>" type="text/css">
7 </head>
8 <body class="body_top">
9 <?php
10 include_once("$srcdir/api.inc");
11 $obj = formFetch("form_misc_billing_options", $_GET["id"]);
13 <form method=post action="<?php echo $rootdir?>/forms/misc_billing_options/save.php?mode=update&id=<?php echo $_GET["id"];?>" name="my_form">
14 <span class="title">Misc Billing Options for HCFA-1500</span><Br><br>
15 <span class=text><?php xl('Checked box = yes , empty = no', 'e');?><br><br>
16 <span class=text><?php xl('BOX 10 A. Employment related ','e'); ?>: </span><input type=checkbox name="employment_related" value="1" <?php if ($obj['employment_related'] == "1") echo "checked";?>><br><br>
17 <span class=text><?php xl('BOX 10 B. Auto Accident ','e'); ?>: </span><input type=checkbox name="auto_accident" value="1" <?php if ($obj['auto_accident'] == "1") echo "checked";?>>
18 <span class=text>State: </span><input type=entry name="accident_state" size=1 value="<?php echo $obj{"accident_state"};?>" ><br><br>
19 <span class=text><?php xl('BOX 10 C. Other Accident ','e'); ?>: </span><input type=checkbox name="other_accident" value="1" <?php if ($obj['other_accident'] == "1") echo "checked";?>><br><br>
20 <span class=text><?php xl('BOX 16. Date unable to work from (yyyy-mm-dd):','e');?> </span><input type=entry size=9 name="off_work_from" value="<?php echo $obj{"off_work_from"};?>" >
21 <span class=text><?php xl('BOX 16. Date unable to work to (yyyy-mm-dd):','e');?> </span><input type=entry size=9 name="off_work_to" value="<?php echo $obj{"off_work_to"};?>" ><br><br>
22 <span class=text><?php xl('BOX 18. Hospitalization date from (yyyy-mm-dd): ','e');?></span><input type=entry size=9 name="hospitalization_date_from" value="<?php echo $obj{"hospitalization_date_from"};?>" >
23 <span class=text><?php xl('BOX 18. Hospitalization date to (yyyy-mm-dd): ','e');?></span><input type=entry size=9 name="hospitalization_date_to" value="<?php echo $obj{"hospitalization_date_to"};?>" ><br><br>
24 <span class=text><?php xl('BOX 20. Is Outside Lab used?','e'); ?>: </span><input type=checkbox name="outside_lab" value="1" <?php if ($obj['outside_lab'] == "1") echo "checked";?>>
25 <span class=text>Amount Charges: </span><input type=entry size=7 align='right' name="lab_amount" value="<?php echo $obj{"lab_amount"};?>" ><br><br>
26 <span class=text><?php xl('BOX 22. Medicaid Resubmission Code (ICD-9) ','e');?></span><input type=entry size=9 name="medicaid_resubmission_code" value="<?php echo $obj{"medicaid_resubmission_code"};?>" >
27 <span class=text><?php xl(' Medicaid Original Reference No. ','e');?></span><input type=entry size=15 name="medicaid_original_reference" value="<?php echo $obj{"medicaid_original_reference"};?>" ><br><br>
28 <span class=text><?php xl('BOX 23. Prior Authorization No. ','e');?></span><input type=entry size=15 name="prior_auth_number" value="<?php echo $obj{"prior_auth_number"};?>" ><br><br>
29 <span class=text><?php xl('X12 only: Replacement Claim ','e'); ?>: </span><input type=checkbox name="replacement_claim" value="1" <?php if ($obj['replacement_claim'] == "1") echo "checked";?>><br><br>
32 <table>
33 <tr>
34 <td valign=top>
35 <span class=text>Additional Notes: </span><br><textarea cols=40 rows=8 wrap=virtual name="comments" ><?php echo $obj{"comments"};?></textarea><br>
36 </td>
37 </table>
38 <br>
39 </tr>
41 <a href="javascript:top.restoreSession();document.my_form.submit();" class="link_submit">[Save]</a>
42 <br>
43 <a href="<?php echo "$rootdir/patient_file/encounter/patient_encounter.php";?>"
44 class="link" target="Main" onclick="top.restoreSession()">[Don't Save Changes]</a>
45 </form>
46 <?php
47 formFooter();