actions_printing.inc.php 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <?php
  2. /* Copyright (C) 2014-2016 Laurent Destailleur <eldy@users.sourceforge.net>
  3. * Copyright (C) 2014 Frederic France <frederic.france@free.fr>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. * or see http://www.gnu.org/
  18. */
  19. /**
  20. * \file htdocs/core/actions_printing.inc.php
  21. * \brief Code for actions print_file to print file with calling trigger
  22. */
  23. // $action must be defined
  24. // $db, $user, $conf, $langs must be defined
  25. // Filename to print must be provided into 'file' parameter
  26. // Print file
  27. if ($action == 'print_file' and $user->rights->printing->read)
  28. {
  29. $langs->load("printing");
  30. require_once DOL_DOCUMENT_ROOT . '/core/modules/printing/modules_printing.php';
  31. $objectprint = new PrintingDriver($db);
  32. $list = $objectprint->listDrivers($db, 10);
  33. if (! empty($list)) {
  34. $errorprint=0;
  35. $printed=0;
  36. foreach ($list as $driver) {
  37. require_once DOL_DOCUMENT_ROOT.'/core/modules/printing/'.$driver.'.modules.php';
  38. $langs->load($driver);
  39. $classname = 'printing_'.$driver;
  40. $printer = new $classname($db);
  41. //print '<pre>'.print_r($printer, true).'</pre>';
  42. if (! empty($conf->global->{$printer->active}))
  43. {
  44. $subdir=(GETPOST('printer', 'alpha')=='expedition'?'sending':'');
  45. $module = GETPOST('printer', 'alpha');
  46. if ($module =='commande_fournisseur') {
  47. $module = 'fournisseur';
  48. $subdir = 'commande';
  49. }
  50. $ret = $printer->print_file(GETPOST('file', 'alpha'), $module, $subdir);
  51. if ($ret > 0) {
  52. //print '<pre>'.print_r($printer->errors, true).'</pre>';
  53. setEventMessages($printer->error, $printer->errors, 'errors');
  54. }
  55. if ($ret==0)
  56. {
  57. //print '<pre>'.print_r($printer->errors, true).'</pre>';
  58. setEventMessages($printer->error, $printer->errors);
  59. setEventMessages($langs->trans("FileWasSentToPrinter", basename(GETPOST('file'))).' '.$langs->transnoentitiesnoconv("ViaModule").' '.$printer->name, null);
  60. $printed++;
  61. }
  62. }
  63. }
  64. if ($printed==0) setEventMessages($langs->trans("NoActivePrintingModuleFound"), null, 'warnings');
  65. } else {
  66. setEventMessages($langs->trans("NoModuleFound"), null, 'warnings');
  67. }
  68. $action = '';
  69. }