123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455 |
- <?php
- /* Copyright (C) 2013-2016 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2015 Frederic France <frederic.france@free.fr>
- * Copyright (C) 2016 Juanjo Menent <jmenent@2byte.es>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/admin/receiptprinter.php
- * \ingroup printing
- * \brief Page to setup receipt printer
- */
- require '../main.inc.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/class/doleditor.class.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/receiptprinter.lib.php';
- require_once DOL_DOCUMENT_ROOT.'/core/class/dolreceiptprinter.class.php';
- $langs->load("admin");
- $langs->load("receiptprinter");
- if (! $user->admin) accessforbidden();
- $action = GETPOST('action','alpha');
- $mode = GETPOST('mode','alpha');
- $printername = GETPOST('printername', 'alpha');
- $printerid = GETPOST('printerid', 'int');
- $parameter = GETPOST('parameter', 'alpha');
- $template = GETPOST('template', 'alpha');
- $templatename = GETPOST('templatename', 'alpha');
- $templateid = GETPOST('templateid', 'int');
- $printer = new dolReceiptPrinter($db);
- if (!$mode) $mode='config';
- // used in library escpos maybe useful if php doesn't support gzdecode
- if (!function_exists('gzdecode')) {
- function gzdecode($data)
- {
- return gzinflate(substr($data,10,-8));
- }
- }
- /*
- * Action
- */
- if ($action == 'addprinter' && $user->admin)
- {
- $error=0;
- $db->begin();
- if (empty($printername)) {
- $error++;
- setEventMessages($langs->trans("PrinterNameEmpty"), null, 'errors');
- }
- if (empty($parameter)) {
- setEventMessages($langs->trans("PrinterParameterEmpty"), null, 'warnings');
- }
- if (! $error)
- {
- $result= $printer->AddPrinter($printername, GETPOST('printertypeid', 'int'), GETPOST('printerprofileid', 'int'), $parameter);
- if ($result > 0) $error++;
- if (! $error)
- {
- $db->commit();
- setEventMessages($langs->trans("PrinterAdded",$printername), null);
- }
- else
- {
- $db->rollback();
- dol_print_error($db);
- }
- }
- $action = '';
- }
- if ($action == 'deleteprinter' && $user->admin)
- {
- $error=0;
- $db->begin();
- if (empty($printerid)) {
- $error++;
- setEventMessages($langs->trans("PrinterIdEmpty"), null, 'errors');
- }
- if (! $error)
- {
- $result= $printer->DeletePrinter($printerid);
- if ($result > 0) $error++;
- if (! $error)
- {
- $db->commit();
- setEventMessages($langs->trans("PrinterDeleted",$printername), null);
- }
- else
- {
- $db->rollback();
- dol_print_error($db);
- }
- }
- $action = '';
- }
- if ($action == 'updateprinter' && $user->admin)
- {
- $error=0;
- $db->begin();
- if (empty($printerid)) {
- $error++;
- setEventMessages($langs->trans("PrinterIdEmpty"), null, 'errors');
- }
- if (! $error)
- {
- $result= $printer->UpdatePrinter($printername, GETPOST('printertypeid', 'int'), GETPOST('printerprofileid', 'int'), $parameter, $printerid);
- if ($result > 0) $error++;
- if (! $error)
- {
- $db->commit();
- setEventMessages($langs->trans("PrinterUpdated",$printername), null);
- }
- else
- {
- $db->rollback();
- dol_print_error($db);
- }
- }
- $action = '';
- }
- if ($action == 'testprinter' && $user->admin)
- {
- $error=0;
- if (empty($printerid)) {
- $error++;
- setEventMessages($langs->trans("PrinterIdEmpty"), null, 'errors');
- }
- if (! $error)
- {
- // test
- $ret = $printer->SendTestToPrinter($printerid);
- if ($ret == 0)
- {
- setEventMessages($langs->trans("TestSentToPrinter", $printername), null);
- }
- else
- {
- setEventMessages($printer->error, $printer->errors, 'errors');
- }
- }
- $action = '';
- }
- if ($action == 'updatetemplate' && $user->admin)
- {
- $error=0;
- $db->begin();
- if (empty($templateid)) {
- $error++;
- setEventMessages($langs->trans("TemplateIdEmpty"), null, 'errors');
- }
- if (! $error)
- {
- $result= $printer->UpdateTemplate($templatename, $template, $templateid);
- if ($result > 0) $error++;
- if (! $error)
- {
- $db->commit();
- setEventMessages($langs->trans("TemplateUpdated",$templatename), null);
- }
- else
- {
- $db->rollback();
- dol_print_error($db);
- }
- }
- $action = '';
- }
- /*
- * View
- */
- $form = new Form($db);
- llxHeader('',$langs->trans("ReceiptPrinterSetup"));
- $linkback='<a href="'.DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans("BackToModuleList").'</a>';
- print load_fiche_titre($langs->trans("ReceiptPrinterSetup"),$linkback,'title_setup');
- $head = receiptprinteradmin_prepare_head($mode);
- if ($mode == 'config' && $user->admin)
- {
- print '<form method="post" action="'.$_SERVER["PHP_SELF"].'?mode=config" autocomplete="off">';
- print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
- if ($action!='editprinter') {
- print '<input type="hidden" name="action" value="addprinter">';
- } else {
- print '<input type="hidden" name="action" value="updateprinter">';
- }
- dol_fiche_head($head, $mode, $langs->trans("ModuleSetup"), 0, 'technic');
- print $langs->trans("ReceiptPrinterDesc")."<br><br>\n";
- print '<table class="noborder" width="100%">'."\n";
- $var=true;
- print '<tr class="liste_titre">';
- print '<th>'.$langs->trans("Name").'</th>';
- print '<th>'.$langs->trans("Type").'</th>';
- print '<th>'.$langs->trans("Profile").'</th>';
- print '<th>'.$langs->trans("Parameters").'</th>';
- print '<th></th>';
- print '<th></th>';
- print '<th></th>';
- print "</tr>\n";
- $ret = $printer->listprinters();
- $nbofprinters = count($printer->listprinters);
-
- if ($ret > 0) {
- setEventMessages($printer->error, $printer->errors, 'errors');
- } else {
- for ($line=0; $line < $nbofprinters; $line++) {
- $var = !$var;
- print '<tr class="oddeven">';
- if ($action=='editprinter' && $printer->listprinters[$line]['rowid']==$printerid) {
- print '<input type="hidden" name="printerid" value="'.$printer->listprinters[$line]['rowid'].'">';
- print '<td><input size="50" type="text" name="printername" value="'.$printer->listprinters[$line]['name'].'"></td>';
- $ret = $printer->selectTypePrinter($printer->listprinters[$line]['fk_type']);
- print '<td>'.$printer->resprint.'</td>';
- $ret = $printer->selectProfilePrinter($printer->listprinters[$line]['fk_profile']);
- print '<td>'.$printer->profileresprint.'</td>';
- print '<td><input size="60" type="text" name="parameter" value="'.$printer->listprinters[$line]['parameter'].'"></td>';
- print '<td></td>';
- print '<td></td>';
- print '<td></td>';
- print '</tr>';
- } else {
- print '<td>'.$printer->listprinters[$line]['name'].'</td>';
- print '<td>'.$langs->trans($printer->listprinters[$line]['fk_type_name']).'</td>';
- print '<td>'.$langs->trans($printer->listprinters[$line]['fk_profile_name']).'</td>';
- print '<td>'.$printer->listprinters[$line]['parameter'].'</td>';
- // edit icon
- print '<td><a href="'.$_SERVER['PHP_SELF'].'?mode=config&action=editprinter&printerid='.$printer->listprinters[$line]['rowid'].'">';
- print img_picto($langs->trans("Edit"),'edit');
- print '</a></td>';
- // delete icon
- print '<td><a href="'.$_SERVER['PHP_SELF'].'?mode=config&action=deleteprinter&printerid='.$printer->listprinters[$line]['rowid'].'&printername='.$printer->listprinters[$line]['name'].'">';
- print img_picto($langs->trans("Delete"),'delete');
- print '</a></td>';
- // test icon
- print '<td><a href="'.$_SERVER['PHP_SELF'].'?mode=config&action=testprinter&printerid='.$printer->listprinters[$line]['rowid'].'&printername='.$printer->listprinters[$line]['name'].'">';
- print img_picto($langs->trans("TestPrinter"),'printer');
- print '</a></td>';
- print '</tr>';
- }
- }
- }
- if ($action!='editprinter')
- {
- if ($nbofprinters > 0)
- {
- print '<tr class="liste_titre">';
- print '<th>'.$langs->trans("Name").'</th>';
- print '<th>'.$langs->trans("Type").'</th>';
- print '<th>'.$langs->trans("Profile").'</th>';
- print '<th>'.$langs->trans("Parameters").'</th>';
- print '<th></th>';
- print '<th></th>';
- print '<th></th>';
- print "</tr>\n";
- }
-
- print '<tr>';
- print '<td><input size="50" type="text" name="printername"></td>';
- $ret = $printer->selectTypePrinter();
- print '<td>'.$printer->resprint.'</td>';
- $ret = $printer->selectProfilePrinter();
- print '<td>'.$printer->profileresprint.'</td>';
- print '<td><input size="60" type="text" name="parameter"></td>';
- print '<td></td>';
- print '<td></td>';
- print '<td></td>';
- print '</tr>';
- }
- print '</table>';
- dol_fiche_end();
-
- if ($action!='editprinter') {
- print '<div class="center"><input type="submit" class="button" value="'.dol_escape_htmltag($langs->trans("Add")).'"></div>';
- } else {
- print '<div class="center"><input type="submit" class="button" value="'.dol_escape_htmltag($langs->trans("Save")).'"></div>';
- }
- print '</form>';
- print '<div><p></div>';
-
- dol_fiche_head();
-
- print $langs->trans("ReceiptPrinterTypeDesc")."<br><br>\n";
- print '<table class="noborder" width="100%">'."\n";
- print '<tr '.$bc[1].'><td>'.$langs->trans("CONNECTOR_DUMMY").':</td><td>'.$langs->trans("CONNECTOR_DUMMY_HELP").'</td></tr>';
- print '<tr '.$bc[0].'><td>'.$langs->trans("CONNECTOR_NETWORK_PRINT").':</td><td>'.$langs->trans("CONNECTOR_NETWORK_PRINT_HELP").'</td></tr>';
- print '<tr '.$bc[1].'><td>'.$langs->trans("CONNECTOR_FILE_PRINT").':</td><td>'.$langs->trans("CONNECTOR_FILE_PRINT_HELP").'</td></tr>';
- print '<tr '.$bc[0].'><td>'.$langs->trans("CONNECTOR_WINDOWS_PRINT").':</td><td>'.$langs->trans("CONNECTOR_WINDOWS_PRINT_HELP").'</td></tr>';
- //print '<tr '.$bc[1].'><td>'.$langs->trans("CONNECTOR_JAVA").':</td><td>'.$langs->trans("CONNECTOR_JAVA_HELP").'</td></tr>';
- print '</table>';
- dol_fiche_end();
- print '<div><p></div>';
-
- dol_fiche_head();
- print $langs->trans("ReceiptPrinterProfileDesc")."<br><br>\n";
- print '<table class="noborder" width="100%">'."\n";
- print '<tr '.$bc[1].'><td>'.$langs->trans("PROFILE_DEFAULT").':</td><td>'.$langs->trans("PROFILE_DEFAULT_HELP").'</td></tr>';
- print '<tr '.$bc[0].'><td>'.$langs->trans("PROFILE_SIMPLE").':</td><td>'.$langs->trans("PROFILE_SIMPLE_HELP").'</td></tr>';
- print '<tr '.$bc[1].'><td>'.$langs->trans("PROFILE_EPOSTEP").':</td><td>'.$langs->trans("PROFILE_EPOSTEP_HELP").'</td></tr>';
- print '<tr '.$bc[0].'><td>'.$langs->trans("PROFILE_P822D").':</td><td>'.$langs->trans("PROFILE_P822D_HELP").'</td></tr>';
- print '<tr '.$bc[1].'><td>'.$langs->trans("PROFILE_STAR").':</td><td>'.$langs->trans("PROFILE_STAR_HELP").'</td></tr>';
- print '</table>';
- dol_fiche_end();
- }
- if ($mode == 'template' && $user->admin)
- {
- print '<form method="post" action="'.$_SERVER["PHP_SELF"].'?mode=template" autocomplete="off">';
- print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
- if ($action!='edittemplate') {
- print '<input type="hidden" name="action" value="addtemplate">';
- } else {
- print '<input type="hidden" name="action" value="updatetemplate">';
- }
- dol_fiche_head($head, $mode, $langs->trans("ModuleSetup"), 0, 'technic');
- print $langs->trans("ReceiptPrinterTemplateDesc")."<br><br>\n";
- print '<table class="noborder" width="100%">'."\n";
- $var=true;
- print '<tr class="liste_titre">';
- print '<th>'.$langs->trans("Name").'</th>';
- print '<th>'.$langs->trans("Template").'</th>';
- print '<th></th>';
- print '<th></th>';
- print '<th></th>';
- print "</tr>\n";
- $ret = $printer->listPrintersTemplates();
- //print '<pre>'.print_r($printer->listprinterstemplates, true).'</pre>';
- if ($ret > 0) {
- setEventMessages($printer->error, $printer->errors, 'errors');
- } else {
- $max = count($printer->listprinterstemplates);
- for ($line=0; $line < $max; $line++) {
- $var = !$var;
- print '<tr class="oddeven">';
- if ($action=='edittemplate' && $printer->listprinterstemplates[$line]['rowid']==$templateid) {
- print '<input type="hidden" name="templateid" value="'.$printer->listprinterstemplates[$line]['rowid'].'">';
- print '<td><input size="50" type="text" name="templatename" value="'.$printer->listprinterstemplates[$line]['name'].'"></td>';
- print '<td><textarea name="template" wrap="soft" cols="120" rows="12">'.$printer->listprinterstemplates[$line]['template'].'</textarea>';
- print '</td>';
- print '<td></td>';
- print '<td></td>';
- print '<td></td>';
- } else {
- print '<td>'.$printer->listprinterstemplates[$line]['name'].'</td>';
- print '<td>'.nl2br(htmlentities($printer->listprinterstemplates[$line]['template'])).'</td>';
- // edit icon
- print '<td><a href="'.$_SERVER['PHP_SELF'].'?mode=template&action=edittemplate&templateid='.$printer->listprinterstemplates[$line]['rowid'].'">';
- print img_picto($langs->trans("Edit"),'edit');
- print '</a></td>';
- // delete icon
- print '<td><a href="'.$_SERVER['PHP_SELF'].'?mode=template&action=deletetemplate&templateid='.$printer->listprinterstemplates[$line]['rowid'].'&templatename='.$printer->listprinterstemplates[$line]['name'].'">';
- print img_picto($langs->trans("Delete"),'delete');
- print '</a></td>';
- // test icon
- print '<td><a href="'.$_SERVER['PHP_SELF'].'?mode=template&action=testtemplate&templateid='.$printer->listprinterstemplates[$line]['rowid'].'&templatename='.$printer->listprinterstemplates[$line]['name'].'">';
- print img_picto($langs->trans("TestPrinterTemplate"),'printer');
- print '</a></td>';
- }
- print '</tr>';
- }
- }
- print '</table>';
- if ($action!='edittemplate') {
- print '<div class="center"><input type="submit" class="button" value="'.dol_escape_htmltag($langs->trans("Add")).'"></div>';
- } else {
- print '<div class="center"><input type="submit" class="button" value="'.dol_escape_htmltag($langs->trans("Save")).'"></div>';
- }
- print '</form>';
- print '<div><p></div>';
- print '<table class="noborder" width="100%">'."\n";
- $var=true;
- print '<tr class="liste_titre">';
- print '<th>'.$langs->trans("Tag").'</th>';
- print '<th>'.$langs->trans("Description").'</th>';
- print "</tr>\n";
- $max = count($printer->tags);
- for ($tag=0; $tag < $max; $tag++) {
- $var = !$var;
- print '<tr class="oddeven">';
- print '<td><'.$printer->tags[$tag].'></td><td>'.$langs->trans(strtoupper($printer->tags[$tag])).'</td>';
- print '</tr>';
- }
- print '</table>';
- dol_fiche_end();
- }
- // to remove after test
- $object=new stdClass();
- $object->date_time = '2015-11-02 22:30:25';
- $object->id = 1234;
- $object->customer_firstname = 'John';
- $object->customer_lastname = 'Deuf';
- $object->vendor_firstname = 'Jim';
- $object->vendor_lastname = 'Big';
- $object->barcode = '3700123862396';
- //$printer->sendToPrinter($object, 1, 16);
- //setEventMessages($printer->error, $printer->errors, 'errors');
- llxFooter();
- $db->close();
|