superedit-bm_make_faktura.php 401 B

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