mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-06 01:28:19 +01:00
339 lines
14 KiB
PHP
339 lines
14 KiB
PHP
<?php
|
|
/* Copyright (C) 2008-2011 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
* Copyright (C) 2011-2017 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 <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/**
|
|
* \file htdocs/takepos/admin/setup.php
|
|
* \ingroup takepos
|
|
* \brief Setup page for TakePos module
|
|
*/
|
|
|
|
require '../../main.inc.php'; // Load $user and permissions
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/product/class/html.formproduct.class.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/pdf.lib.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';
|
|
require_once DOL_DOCUMENT_ROOT."/core/lib/takepos.lib.php";
|
|
|
|
// If socid provided by ajax company selector
|
|
if (!empty($_REQUEST['CASHDESK_ID_THIRDPARTY_id']))
|
|
{
|
|
$_GET['CASHDESK_ID_THIRDPARTY'] = GETPOST('CASHDESK_ID_THIRDPARTY_id', 'alpha');
|
|
$_POST['CASHDESK_ID_THIRDPARTY'] = GETPOST('CASHDESK_ID_THIRDPARTY_id', 'alpha');
|
|
$_REQUEST['CASHDESK_ID_THIRDPARTY'] = GETPOST('CASHDESK_ID_THIRDPARTY_id', 'alpha');
|
|
}
|
|
|
|
// Security check
|
|
if (!$user->admin) accessforbidden();
|
|
|
|
$langs->loadLangs(array("admin", "cashdesk"));
|
|
|
|
global $db;
|
|
|
|
$sql = "SELECT code, libelle FROM ".MAIN_DB_PREFIX."c_paiement";
|
|
$sql .= " WHERE entity IN (".getEntity('c_paiement').")";
|
|
$sql .= " AND active = 1";
|
|
$sql .= " ORDER BY libelle";
|
|
$resql = $db->query($sql);
|
|
$paiements = array();
|
|
if ($resql) {
|
|
while ($obj = $db->fetch_object($resql)) {
|
|
array_push($paiements, $obj);
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Actions
|
|
*/
|
|
if (GETPOST('action', 'alpha') == 'set')
|
|
{
|
|
$db->begin();
|
|
if (GETPOST('socid', 'int') < 0) $_POST["socid"] = '';
|
|
|
|
$res = dolibarr_set_const($db, "CASHDESK_SERVICES", GETPOST('CASHDESK_SERVICES', 'alpha'), 'chaine', 0, '', $conf->entity);
|
|
$res = dolibarr_set_const($db, "TAKEPOS_ROOT_CATEGORY_ID", GETPOST('TAKEPOS_ROOT_CATEGORY_ID', 'alpha'), 'chaine', 0, '', $conf->entity);
|
|
|
|
$res = dolibarr_set_const($db, "TAKEPOSCONNECTOR", GETPOST('TAKEPOSCONNECTOR', 'alpha'), 'chaine', 0, '', $conf->entity);
|
|
$res = dolibarr_set_const($db, "TAKEPOS_DOLIBARR_PRINTER", GETPOST('TAKEPOS_DOLIBARR_PRINTER', 'alpha'), 'chaine', 0, '', $conf->entity);
|
|
$res = dolibarr_set_const($db, "TAKEPOS_BAR_RESTAURANT", GETPOST('TAKEPOS_BAR_RESTAURANT', 'alpha'), 'chaine', 0, '', $conf->entity);
|
|
$res = dolibarr_set_const($db, "TAKEPOS_TICKET_VAT_GROUPPED", GETPOST('TAKEPOS_TICKET_VAT_GROUPPED', 'alpha'), 'chaine', 0, '', $conf->entity);
|
|
$res = dolibarr_set_const($db, "TAKEPOS_PRINT_SERVER", GETPOST('TAKEPOS_PRINT_SERVER', 'alpha'), 'chaine', 0, '', $conf->entity);
|
|
$res = dolibarr_set_const($db, "TAKEPOS_ORDER_PRINTERS", GETPOST('TAKEPOS_ORDER_PRINTERS', 'alpha'), 'chaine', 0, '', $conf->entity);
|
|
$res = dolibarr_set_const($db, "TAKEPOS_ORDER_NOTES", GETPOST('TAKEPOS_ORDER_NOTES', 'alpha'), 'chaine', 0, '', $conf->entity);
|
|
$res = dolibarr_set_const($db, "TAKEPOS_PHONE_BASIC_LAYOUT", GETPOST('TAKEPOS_PHONE_BASIC_LAYOUT', 'alpha'), 'chaine', 0, '', $conf->entity);
|
|
$res = dolibarr_set_const($db, "TAKEPOS_AUTO_PRINT_TICKETS", GETPOST('TAKEPOS_AUTO_PRINT_TICKETS', 'int'), 'int', 0, '', $conf->entity);
|
|
$res = dolibarr_set_const($db, "TAKEPOS_NUMPAD", GETPOST('TAKEPOS_NUMPAD', 'alpha'), 'chaine', 0, '', $conf->entity);
|
|
$res = dolibarr_set_const($db, "TAKEPOS_NUM_TERMINALS", GETPOST('TAKEPOS_NUM_TERMINALS', 'alpha'), 'chaine', 0, '', $conf->entity);
|
|
$res = dolibarr_set_const($db, "TAKEPOS_DIRECT_PAYMENT", GETPOST('TAKEPOS_DIRECT_PAYMENT', 'int'), 'int', 0, '', $conf->entity);
|
|
$res = dolibarr_set_const($db, "TAKEPOS_CUSTOM_RECEIPT", GETPOST('TAKEPOS_CUSTOM_RECEIPT', 'int'), 'int', 0, '', $conf->entity);
|
|
$res = dolibarr_set_const($db, "TAKEPOS_EMAIL_TEMPLATE_INVOICE", GETPOST('TAKEPOS_EMAIL_TEMPLATE_INVOICE', 'alpha'), 'chaine', 0, '', $conf->entity);
|
|
if (! empty($conf->global->TAKEPOS_ENABLE_SUMUP)) {
|
|
$res = dolibarr_set_const($db, "TAKEPOS_SUMUP_AFFILIATE", GETPOST('TAKEPOS_SUMUP_AFFILIATE', 'alpha'), 'chaine', 0, '', $conf->entity);
|
|
$res = dolibarr_set_const($db, "TAKEPOS_SUMUP_APPID", GETPOST('TAKEPOS_SUMUP_APPID', 'alpha'), 'chaine', 0, '', $conf->entity);
|
|
}
|
|
if ($conf->global->TAKEPOS_ORDER_NOTES == 1)
|
|
{
|
|
$extrafields = new ExtraFields($db);
|
|
$extrafields->addExtraField('order_notes', 'Order notes', 'varchar', 0, 255, 'facturedet', 0, 0, '', '', 0, '', 0, 1);
|
|
}
|
|
|
|
dol_syslog("admin/cashdesk: level ".GETPOST('level', 'alpha'));
|
|
|
|
if (!$res > 0) $error++;
|
|
|
|
if (!$error)
|
|
{
|
|
$db->commit();
|
|
setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
|
|
}
|
|
else
|
|
{
|
|
$db->rollback();
|
|
setEventMessages($langs->trans("Error"), null, 'errors');
|
|
}
|
|
}
|
|
|
|
/*
|
|
* View
|
|
*/
|
|
|
|
$form = new Form($db);
|
|
$formproduct = new FormProduct($db);
|
|
|
|
llxHeader('', $langs->trans("CashDeskSetup"));
|
|
|
|
$linkback = '<a href="'.DOL_URL_ROOT.'/admin/modules.php">'.$langs->trans("BackToModuleList").'</a>';
|
|
print load_fiche_titre($langs->trans("CashDeskSetup").' (TakePOS)', $linkback, 'title_setup');
|
|
$head = takepos_prepare_head();
|
|
dol_fiche_head($head, 'setup', 'TakePOS', -1);
|
|
print '<br>';
|
|
|
|
|
|
// Mode
|
|
print '<form action="'.$_SERVER["PHP_SELF"].'" method="post">';
|
|
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
|
print '<input type="hidden" name="action" value="set">';
|
|
|
|
print '<table class="noborder centpercent">';
|
|
|
|
print '<tr class="liste_titre">';
|
|
print '<td>'.$langs->trans("Parameters").'</td><td>'.$langs->trans("Value").'</td>';
|
|
print "</tr>\n";
|
|
|
|
// Terminals
|
|
print '<tr class="oddeven"><td>';
|
|
print $langs->trans("NumberOfTerminals");
|
|
print '<td colspan="2">';
|
|
$array = array(1=>"1", 2=>"2", 3=>"3", 4=>"4", 5=>"5", 6=>"6", 7=>"7", 8=>"8", 9=>"9");
|
|
print $form->selectarray('TAKEPOS_NUM_TERMINALS', $array, (empty($conf->global->TAKEPOS_NUM_TERMINALS) ? '0' : $conf->global->TAKEPOS_NUM_TERMINALS), 0);
|
|
print "</td></tr>\n";
|
|
|
|
// Services
|
|
if (!empty($conf->service->enabled))
|
|
{
|
|
print '<tr class="oddeven"><td>';
|
|
print $langs->trans("CashdeskShowServices");
|
|
print '<td colspan="2">';
|
|
print $form->selectyesno("CASHDESK_SERVICES", $conf->global->CASHDESK_SERVICES, 1);
|
|
print "</td></tr>\n";
|
|
}
|
|
|
|
// Auto print tickets
|
|
print '<tr class="oddeven"><td>';
|
|
print $langs->trans("AutoPrintTickets");
|
|
print '<td colspan="2">';
|
|
print $form->selectyesno("TAKEPOS_AUTO_PRINT_TICKETS", $conf->global->TAKEPOS_AUTO_PRINT_TICKETS, 1);
|
|
print "</td></tr>\n";
|
|
|
|
// Root category for products
|
|
print '<tr class="oddeven"><td>';
|
|
print $form->textwithpicto($langs->trans("RootCategoryForProductsToSell"), $langs->trans("RootCategoryForProductsToSellDesc"));
|
|
print '<td colspan="2">';
|
|
print $form->select_all_categories(Categorie::TYPE_PRODUCT, $conf->global->TAKEPOS_ROOT_CATEGORY_ID, 'TAKEPOS_ROOT_CATEGORY_ID', 64, 0, 0);
|
|
print ajax_combobox('TAKEPOS_ROOT_CATEGORY_ID');
|
|
print "</td></tr>\n";
|
|
|
|
if ($conf->receiptprinter->enabled) {
|
|
// Use Dolibarr printing
|
|
print '<tr class="oddeven"><td>';
|
|
print $langs->trans("DolibarrReceiptPrinterModule");
|
|
print '<td colspan="2">';
|
|
print $form->selectyesno("TAKEPOS_DOLIBARR_PRINTER", $conf->global->TAKEPOS_DOLIBARR_PRINTER, 1);
|
|
print "</td></tr>\n";
|
|
}
|
|
|
|
// Use Takepos printing
|
|
print '<tr class="oddeven"><td>';
|
|
print $langs->trans("DolibarrReceiptPrinter").' (<a href="http://en.takepos.com/connector" target="_blank">'.$langs->trans("TakeposConnectorNecesary").'</a>)';
|
|
print '<td colspan="2">';
|
|
print $form->selectyesno("TAKEPOSCONNECTOR", $conf->global->TAKEPOSCONNECTOR, 1);
|
|
print "</td></tr>\n";
|
|
|
|
if ($conf->global->TAKEPOSCONNECTOR) {
|
|
print '<tr class="oddeven value"><td>';
|
|
print $langs->trans("IPAddress").' (<a href="http://en.takepos.com/connector" target="_blank">'.$langs->trans("TakeposConnectorNecesary").'</a>)';
|
|
print '<td colspan="2">';
|
|
print '<input type="text" size="20" id="TAKEPOS_PRINT_SERVER" name="TAKEPOS_PRINT_SERVER" value="'.$conf->global->TAKEPOS_PRINT_SERVER.'">';
|
|
print '</td></tr>';
|
|
}
|
|
|
|
|
|
// Bar Restaurant mode
|
|
print '<tr class="oddeven"><td>';
|
|
print $langs->trans("EnableBarOrRestaurantFeatures");
|
|
print '</td>';
|
|
print '<td colspan="2">';
|
|
print $form->selectyesno("TAKEPOS_BAR_RESTAURANT", $conf->global->TAKEPOS_BAR_RESTAURANT, 1);
|
|
print "</td></tr>\n";
|
|
|
|
if ($conf->global->TAKEPOS_BAR_RESTAURANT && $conf->global->TAKEPOSCONNECTOR) {
|
|
print '<tr class="oddeven value"><td>';
|
|
print $langs->trans("OrderPrinters").' (<a href="'.DOL_URL_ROOT.'/takepos/admin/orderprinters.php?leftmenu=setup">'.$langs->trans("Setup").'</a>)';
|
|
print '<td colspan="2">';
|
|
print $form->selectyesno("TAKEPOS_ORDER_PRINTERS", $conf->global->TAKEPOS_ORDER_PRINTERS, 1);
|
|
print '</td></tr>';
|
|
|
|
print '<tr class="oddeven value"><td>';
|
|
print $langs->trans("OrderNotes");
|
|
print '<td colspan="2">';
|
|
print $form->selectyesno("TAKEPOS_ORDER_NOTES", $conf->global->TAKEPOS_ORDER_NOTES, 1);
|
|
print '</td></tr>';
|
|
}
|
|
|
|
if ($conf->global->TAKEPOS_BAR_RESTAURANT)
|
|
{
|
|
print '<tr class="oddeven value"><td>';
|
|
print $langs->trans("BasicPhoneLayout");
|
|
print '<td colspan="2">';
|
|
print $form->selectyesno("TAKEPOS_PHONE_BASIC_LAYOUT", $conf->global->TAKEPOS_PHONE_BASIC_LAYOUT, 1);
|
|
print '</td></tr>';
|
|
}
|
|
|
|
print '<tr class="oddeven"><td>';
|
|
print $langs->trans('TicketVatGrouped');
|
|
print '<td colspan="2">';
|
|
print $form->selectyesno("TAKEPOS_TICKET_VAT_GROUPPED", $conf->global->TAKEPOS_TICKET_VAT_GROUPPED, 1);
|
|
print "</td></tr>\n";
|
|
|
|
// Payment numpad
|
|
print '<tr class="oddeven"><td>';
|
|
print $langs->trans("Paymentnumpad");
|
|
print '<td colspan="2">';
|
|
$array = array(0=>$langs->trans("Numberspad"), 1=>$langs->trans("BillsCoinsPad"));
|
|
print $form->selectarray('TAKEPOS_NUMPAD', $array, (empty($conf->global->TAKEPOS_NUMPAD) ? '0' : $conf->global->TAKEPOS_NUMPAD), 0);
|
|
print "</td></tr>\n";
|
|
|
|
// Direct Payment
|
|
print '<tr class="oddeven"><td>';
|
|
print $langs->trans('DirectPaymentButton');
|
|
print '<td colspan="2">';
|
|
print $form->selectyesno("TAKEPOS_DIRECT_PAYMENT", $conf->global->TAKEPOS_DIRECT_PAYMENT, 1);
|
|
print "</td></tr>\n";
|
|
|
|
// Sumup options
|
|
if ($conf->global->TAKEPOS_ENABLE_SUMUP) {
|
|
print '<tr class="oddeven"><td>';
|
|
print $langs->trans("SumupAffiliate");
|
|
print '<td colspan="2">';
|
|
print '<input type="text" name="TAKEPOS_SUMUP_AFFILIATE" value="' . $conf->global->TAKEPOS_SUMUP_AFFILIATE . '"></input>';
|
|
print "</td></tr>\n";
|
|
print '<tr class="oddeven"><td>';
|
|
print $langs->trans("SumupAppId");
|
|
print '<td colspan="2">';
|
|
print '<input type="text" name="TAKEPOS_SUMUP_APPID" value="' . $conf->global->TAKEPOS_SUMUP_APPID . '"></input>';
|
|
print "</td></tr>\n";
|
|
}
|
|
|
|
// Custom Receipt
|
|
print '<tr class="oddeven"><td>';
|
|
print $langs->trans('CustomReceipt');
|
|
print '<td colspan="2">';
|
|
print $form->selectyesno("TAKEPOS_CUSTOM RECEIPT", $conf->global->TAKEPOS_CUSTOM_RECEIPT, 1);
|
|
print "</td></tr>\n";
|
|
|
|
// Email template for send invoice
|
|
print '<tr class="oddeven"><td>';
|
|
print $langs->trans('EmailTemplate');
|
|
print '<td colspan="2">';
|
|
include_once DOL_DOCUMENT_ROOT.'/core/class/html.formmail.class.php';
|
|
$formmail = new FormMail($db);
|
|
$nboftemplates = $formmail->fetchAllEMailTemplate('facture_send', $user, null, -1); // We set lang=null to get in priority record with no lang
|
|
//$arraydefaultmessage = $formmail->getEMailTemplate($db, $tmp[1], $user, null, 0, 1, '');
|
|
$arrayofmessagename=array();
|
|
if (is_array($formmail->lines_model)) {
|
|
foreach($formmail->lines_model as $modelmail) {
|
|
//var_dump($modelmail);
|
|
$moreonlabel='';
|
|
if (! empty($arrayofmessagename[$modelmail->label])) {
|
|
$moreonlabel=' <span class="opacitymedium">('.$langs->trans("SeveralLangugeVariatFound").')</span>';
|
|
}
|
|
$arrayofmessagename[$modelmail->label]=$langs->trans(preg_replace('/\(|\)/', '', $modelmail->label)).$moreonlabel;
|
|
}
|
|
}
|
|
//var_dump($arraydefaultmessage);
|
|
//var_dump($arrayofmessagename);
|
|
print $form->selectarray('TAKEPOS_EMAIL_TEMPLATE_INVOICE', $arrayofmessagename, $conf->global->TAKEPOS_EMAIL_TEMPLATE_INVOICE, 'None', 1, 0, '', 0, 0, 0, '', '', 1);
|
|
print "</td></tr>\n";
|
|
|
|
print '</table>';
|
|
|
|
print '<br>';
|
|
|
|
print '<div class="center"><input type="submit" class="button" value="'.$langs->trans("Save").'"></div>';
|
|
|
|
print "</form>\n";
|
|
|
|
|
|
print '<br><br>';
|
|
|
|
// Marketplace
|
|
print "<table summary=\"list_of_modules\" class=\"noborder\" width=\"100%\">\n";
|
|
print "<tr class=\"liste_titre\">\n";
|
|
print '<td colspan="2">'.$langs->trans("WebSiteDesc").'</td>';
|
|
print '<td>'.$langs->trans("URL").'</td>';
|
|
print '</tr>';
|
|
|
|
print "<tr class=\"oddeven\">\n";
|
|
$url = 'https://www.dolistore.com/45-pos';
|
|
print '<td class="left"><a href="'.$url.'" target="_blank" rel="external"><img border="0" class="imgautosize imgmaxwidth180" src="'.DOL_URL_ROOT.'/theme/dolistore_logo.png"></a></td>';
|
|
print '<td>'.$langs->trans("DolistorePosCategory").'</td>';
|
|
print '<td><a href="'.$url.'" target="_blank" rel="external">'.$url.'</a></td>';
|
|
print '</tr>';
|
|
|
|
print "</table>\n";
|
|
print '<br>';
|
|
|
|
// Support
|
|
print "<table summary=\"list_of_modules\" class=\"noborder\" width=\"100%\">\n";
|
|
print "<tr class=\"liste_titre\">\n";
|
|
print '<td colspan="2">TakePOS Support</td>';
|
|
print '<td>'.$langs->trans("URL").'</td>';
|
|
print '</tr>';
|
|
|
|
print "<tr class=\"oddeven\">\n";
|
|
$url = 'http://www.takepos.com';
|
|
print '<td class="left"><a href="'.$url.'" target="_blank" rel="external"><img border="0" class="imgautosize imgmaxwidth180" src="../img/takepos.png"></a></td>';
|
|
print '<td>TakePOS original developers</td>';
|
|
print '<td><a href="'.$url.'" target="_blank" rel="external">'.$url.'</a></td>';
|
|
print '</tr>';
|
|
|
|
print "</table>\n";
|
|
print '<br>';
|
|
|
|
llxFooter();
|
|
$db->close();
|