superedit-bm_show_document.php 383 B

1234567891011121314151617
  1. <?php
  2. function bm_show_document() {
  3. Lib::loadClass('TableAcl');
  4. Lib::loadClass('UserAcl');
  5. Lib::loadClass('Billing_html');
  6. $idDocument = V::get('ARG1_VAL', 0, $_REQUEST, 'int');
  7. if ($idDocument <= 0) {
  8. echo '<div class="alert alert-danger">Błędny numer dokumentu!</div>';
  9. exit;
  10. }
  11. $billing = new Billing_html('931');
  12. $billing->bm_show_document($idDocument);
  13. exit;
  14. }