Page name in description

This commit is contained in:
Alexandre SPANGARO 2022-08-27 05:39:27 +02:00
parent ecf4fed1f0
commit d88647f574
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@
*/ */
/** /**
* \file htdocs/takepos/admin/setup.php * \file htdocs/takepos/admin/other.php
* \ingroup takepos * \ingroup takepos
* \brief Setup page for TakePos module * \brief Setup page for TakePos module
*/ */

View File

@ -19,7 +19,7 @@
*/ */
/** /**
* \file htdocs/takepos/admin/terminal.php * \file htdocs/takepos/admin/receipt.php
* \ingroup takepos * \ingroup takepos
* \brief Setup page for TakePos module * \brief Setup page for TakePos module
*/ */
@ -69,7 +69,7 @@ if (GETPOST('action', 'alpha') == 'set') {
} elseif (GETPOST('action', 'alpha') == 'setmethod') { } elseif (GETPOST('action', 'alpha') == 'setmethod') {
dolibarr_set_const($db, "TAKEPOS_PRINT_METHOD", GETPOST('value', 'alpha'), 'chaine', 0, '', $conf->entity); dolibarr_set_const($db, "TAKEPOS_PRINT_METHOD", GETPOST('value', 'alpha'), 'chaine', 0, '', $conf->entity);
// TakePOS connector require ReceiptPrinter module // TakePOS connector require ReceiptPrinter module
if ($conf->global->TAKEPOS_PRINT_METHOD == "takeposconnector" && !isModEnabled('receiptprinter')) { if ($conf->global->TAKEPOS_PRINT_METHOD == "takeposconnector" && isModEnabled('receiptprinter')) {
activateModule("modReceiptPrinter"); activateModule("modReceiptPrinter");
} }
} }