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> </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> </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>