You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

42 lines
1.8 KiB

<a href="{$CURRENT_ACTION}action=edit" onclick="top.restoreSession()"
class="btn btn-secondary btn-add">
{xlt t='Add a Company'}</a>
<br /><br />
<div class="table-responsive">
<table class="table table-striped">
<thead>
<tr>
<th>{xlt t='Name'}</th>
<th>{xlt t='Address'}</th>
<th>{xlt t='City, State, ZIP'}</th>
<th>{xlt t='Phone'}</th>
<th>{xlt t='Fax'}</th>
<th>{xlt t='Payer ID'}</th>
<th>{xlt t='Default X12 Partner'}</th>
<th>{xlt t='Deactivated'}</th>
</tr>
</thead>
<tbody>
{foreach from=$icompanies item=insurancecompany}
<tr>
<td>
<a href="{$CURRENT_ACTION}action=edit&id={$insurancecompany->id|attr_url}" onclick="top.restoreSession()">
{$insurancecompany->name|text}
</a>
</td>
<td>{$insurancecompany->address->line1|text} {$insurancecompany->address->line2|text}&nbsp;</td>
<td>{$insurancecompany->address->city|text} {$insurancecompany->address->state|upper|text} {$insurancecompany->address->zip|text}&nbsp;</td>
<td>{$insurancecompany->get_phone()|text}&nbsp;</td>
<td>{$insurancecompany->get_fax()|text}&nbsp;</td>
<td>{$insurancecompany->cms_id|text}&nbsp;</td>
<td>{$insurancecompany->get_x12_default_partner_name()|text}&nbsp;</td>
<td>{if $insurancecompany->get_inactive() eq 1}{xlt t='Yes'}{/if}&nbsp;</td>
</tr>
{foreachelse}
<tr>
<td colspan="8">{xlt t='No Insurance Companies Found'}</td>
</tr>
{/foreach}
</tbody>
</table>
</div>