Where have the links for [Reports] and [EOB] in the Billing Manager gone in openEMR 4.2.2?

pathak01 wrote on Thursday, August 04, 2016:

Why has the link for [Reports] and [EOB] been removed from Billing Manager page?

Where are those links now?

The responsible code that creates these links in** /interface/billing/billing_report.php** is

<td>
            <?php
              $acct_config = $GLOBALS['oer_config']['ws_accounting'];
              if($acct_config['enabled']) {
                if($acct_config['enabled'] !== 2) {
                  print '<span class=text><a href="javascript:void window.open(\'' . $acct_config['url_path'] . '\')">' . '['. xlt("SQL-Ledger") .']' . '</a> &nbsp; </span>';
                }
                if (acl_check('acct', 'rep')) {
                  print '<span class=text><a href="javascript:void window.open(\'sl_receipts_report.php\')" onclick="top.restoreSession()">' . '['. xlt('Reports') .']'. '</a> &nbsp; </span>';
                }
                if (acl_check('acct', 'eob')) {
                  print '<span class=text><a href="javascript:void window.open(\'sl_eob_search.php\')" onclick="top.restoreSession()">' . '['.xlt('EOBs') .']' . '</a></span>';
                }
              }
            ?>
</td>

visolveemr wrote on Thursday, August 04, 2016:

Hi Ranganath,

Greetings from Visolve…!

The link related to “EOB” is present under Fees -> Posting and “Reports” can be found under Reports -> Financial -> Cash Rec.

We have provided the above data based on OpenEMR version 4.2.2

Please check and let us know if this helps.

Thanks,
ViSolve OpenEMR Support Team
ViSolve

pathak01 wrote on Thursday, August 04, 2016:

Thanks.