28require
'../../main.inc.php';
29require_once DOL_DOCUMENT_ROOT.
'/core/lib/admin.lib.php';
30require_once DOL_DOCUMENT_ROOT.
'/product/class/html.formproduct.class.php';
31require_once DOL_DOCUMENT_ROOT.
'/core/lib/pdf.lib.php';
32require_once DOL_DOCUMENT_ROOT.
'/categories/class/categorie.class.php';
33require_once DOL_DOCUMENT_ROOT.
"/core/lib/takepos.lib.php";
34require_once DOL_DOCUMENT_ROOT.
'/compta/facture/class/facture.class.php';
37if (!empty($_REQUEST[
'CASHDESK_ID_THIRDPARTY_id'])) {
38 $_GET[
'CASHDESK_ID_THIRDPARTY'] =
GETPOST(
'CASHDESK_ID_THIRDPARTY_id',
'alpha');
39 $_POST[
'CASHDESK_ID_THIRDPARTY'] =
GETPOST(
'CASHDESK_ID_THIRDPARTY_id',
'alpha');
40 $_REQUEST[
'CASHDESK_ID_THIRDPARTY'] =
GETPOST(
'CASHDESK_ID_THIRDPARTY_id',
'alpha');
48$langs->loadLangs(array(
"admin",
"cashdesk"));
52$sql =
"SELECT code, libelle FROM ".MAIN_DB_PREFIX.
"c_paiement";
53$sql .=
" WHERE entity IN (".getEntity(
'c_paiement').
")";
54$sql .=
" AND active = 1";
55$sql .=
" ORDER BY libelle";
56$resql = $db->query($sql);
59 while ($obj = $db->fetch_object($resql)) {
60 array_push($paiements, $obj);
64$action =
GETPOST(
'action',
'aZ09');
73if ($action ==
'set') {
76 $res =
dolibarr_set_const($db,
"TAKEPOS_ROOT_CATEGORY_ID",
GETPOST(
'TAKEPOS_ROOT_CATEGORY_ID',
'alpha'),
'chaine', 0,
'', $conf->entity);
77 $res =
dolibarr_set_const($db,
"TAKEPOS_SUPPLEMENTS_CATEGORY",
GETPOST(
'TAKEPOS_SUPPLEMENTS_CATEGORY',
'alpha'),
'chaine', 0,
'', $conf->entity);
79 $res =
dolibarr_set_const($db,
"TAKEPOS_SORTPRODUCTFIELD",
GETPOST(
'TAKEPOS_SORTPRODUCTFIELD',
'alpha'),
'chaine', 0,
'', $conf->entity);
80 $res =
dolibarr_set_const($db,
"TAKEPOS_NUM_TERMINALS",
GETPOST(
'TAKEPOS_NUM_TERMINALS',
'alpha'),
'chaine', 0,
'', $conf->entity);
82 $res =
dolibarr_set_const($db,
"TAKEPOS_EMAIL_TEMPLATE_INVOICE",
GETPOST(
'TAKEPOS_EMAIL_TEMPLATE_INVOICE',
'alpha'),
'chaine', 0,
'', $conf->entity);
84 $res =
dolibarr_set_const($db,
"TAKEPOS_SUMUP_AFFILIATE",
GETPOST(
'TAKEPOS_SUMUP_AFFILIATE',
'alpha'),
'chaine', 0,
'', $conf->entity);
85 $res =
dolibarr_set_const($db,
"TAKEPOS_SUMUP_APPID",
GETPOST(
'TAKEPOS_SUMUP_APPID',
'alpha'),
'chaine', 0,
'', $conf->entity);
87 if (isModEnabled(
'barcode')) {
88 $res =
dolibarr_set_const($db,
'TAKEPOS_BARCODE_RULE_TO_INSERT_PRODUCT',
GETPOST(
'TAKEPOS_BARCODE_RULE_TO_INSERT_PRODUCT',
'alpha'),
'chaine', 0,
'', $conf->entity);
102} elseif ($action ==
'updateMask') {
103 $maskconst =
GETPOST(
'maskconst',
'aZ09');
104 $maskvalue =
GETPOST(
'maskvalue',
'alpha');
105 if ($maskconst && preg_match(
'/_MASK$/', $maskconst)) {
106 $res =
dolibarr_set_const($db, $maskconst, $maskvalue,
'chaine', 0,
'', $conf->entity);
111} elseif ($action ==
'setrefmod') {
112 $value =
GETPOST(
'value',
'alpha');
129$form =
new Form($db);
132$help_url =
'EN:Module_Point_of_sale_(TakePOS)';
134llxHeader(
'', $langs->trans(
"CashDeskSetup"), $help_url);
136$linkback =
'<a href="'.DOL_URL_ROOT.
'/admin/modules.php">'.$langs->trans(
"BackToModuleList").
'</a>';
137print
load_fiche_titre($langs->trans(
"CashDeskSetup").
' (TakePOS)', $linkback,
'title_setup');
143$dirmodels = array_merge(array(
'/'), (array) $conf->modules_parts[
'models']);
145print
load_fiche_titre($langs->trans(
'CashDeskRefNumberingModules'),
'',
'');
147print
'<div class="div-table-responsive-no-min">';
148print
'<table class="noborder centpercent">';
149print
'<tr class="liste_titre">';
150print
'<td>'.$langs->trans(
"Name").
"</td>\n";
151print
'<td>'.$langs->trans(
"Description").
"</td>\n";
152print
'<td class="nowrap">'.$langs->trans(
"Example").
"</td>\n";
153print
'<td class="center" width="60">'.$langs->trans(
"Status").
'</td>';
154print
'<td class="center" width="16">'.$langs->trans(
"ShortInfo").
'</td>';
159foreach ($dirmodels as $reldir) {
163 $handle = opendir($dir);
164 if (is_resource($handle)) {
167 while (($file = readdir($handle)) !==
false) {
168 if (substr($file, 0, 16) ==
'mod_takepos_ref_' && substr($file,
dol_strlen($file) - 3, 3) ==
'php') {
169 $file = substr($file, 0,
dol_strlen($file) - 4);
171 require_once $dir.$file.
'.php';
173 $module =
new $file();
176 if ($module->version ==
'development' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 2) {
179 if ($module->version ==
'experimental' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 1) {
183 if ($module->isEnabled()) {
184 print
'<tr class="oddeven"><td>'.$module->nom.
"</td><td>\n";
185 print $module->info($langs);
189 print
'<td class="nowrap">';
190 $tmp = $module->getExample();
191 if (preg_match(
'/^Error/', $tmp)) {
192 $langs->load(
"errors");
193 print
'<div class="error">'.$langs->trans($tmp).
'</div>';
194 } elseif ($tmp ==
'NotConfigured') {
195 print $langs->trans($tmp);
201 print
'<td class="center">';
203 print
img_picto($langs->trans(
"Activated"),
'switch_on');
205 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=setrefmod&token='.newToken().
'&value='.urlencode($file).
'">';
206 print
img_picto($langs->trans(
"Disabled"),
'switch_off');
213 $invoice->date = $now;
214 $invoice->module_source =
'takepos';
215 $invoice->pos_source = 1;
219 $htmltooltip .=
''.$langs->trans(
"Version").
': <b>'.$module->getVersion().
'</b><br>';
220 $nextval = $module->getNextValue($mysoc, $invoice);
221 if (
"$nextval" != $langs->trans(
"NotAvailable")) {
222 $htmltooltip .=
''.$langs->trans(
"NextValue").
': ';
224 if (preg_match(
'/^Error/', $nextval) || $nextval ==
'NotConfigured') {
225 $nextval = $langs->trans($nextval);
227 $htmltooltip .= $nextval.
'<br>';
229 $htmltooltip .= $langs->trans($module->error).
'<br>';
233 print
'<td align="center">';
234 print $form->textwithpicto(
'', $htmltooltip, 1, 0);
252print
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="post">';
253print
'<input type="hidden" name="token" value="'.newToken().
'">';
254print
'<input type="hidden" name="action" value="set">';
256print
'<div class="div-table-responsive-no-min">';
257print
'<table class="noborder centpercent">';
259print
'<tr class="liste_titre">';
260print
'<td class="notitlefield">'.$langs->trans(
"Parameters").
'</td><td>'.$langs->trans(
"Value").
'</td>';
264print
'<tr class="oddeven"><td>';
265print $langs->trans(
"NumberOfTerminals");
267print
'<input type="number" name="TAKEPOS_NUM_TERMINALS" min="1" value="' . (!
getDolGlobalString(
'TAKEPOS_NUM_TERMINALS') ?
'1' : $conf->global->TAKEPOS_NUM_TERMINALS) .
'">';
271if (isModEnabled(
"service")) {
272 print
'<tr class="oddeven"><td>';
273 print $langs->trans(
"CashdeskShowServices");
275 print ajax_constantonoff(
"CASHDESK_SERVICES", array(), $conf->entity, 0, 0, 1, 0);
277 print
"</td></tr>\n";
281print
'<tr class="oddeven"><td>';
282print $form->textwithpicto($langs->trans(
"RootCategoryForProductsToSell"), $langs->trans(
"RootCategoryForProductsToSellDesc"));
284print
img_object(
'',
'category',
'class="paddingright"').$form->select_all_categories(Categorie::TYPE_PRODUCT,
getDolGlobalInt(
'TAKEPOS_ROOT_CATEGORY_ID'),
'TAKEPOS_ROOT_CATEGORY_ID', 64, 0, 0, 0,
'maxwidth500 widthcentpercentminusx');
289print
'<tr class="oddeven"><td>';
290print $langs->trans(
"SortProductField");
293$array = array(
'rowid' =>
'ID',
'ref' =>
'Ref',
'label' =>
'Label',
'datec' =>
'DateCreation',
'tms' =>
'DateModification');
294print $form->selectarray(
'TAKEPOS_SORTPRODUCTFIELD', $array,
getDolGlobalString(
'TAKEPOS_SORTPRODUCTFIELD',
'rowid'), 0, 0, 0,
'', 1);
297print
'<tr class="oddeven"><td>';
298print $langs->trans(
'TakeposGroupSameProduct');
300print ajax_constantonoff(
"TAKEPOS_GROUP_SAME_PRODUCT", array(), $conf->entity, 0, 0, 1, 0);
304$substitutionarray[
'__(AnyTranslationKey)__'] = $langs->trans(
"Translation");
305$htmltext =
'<i>'.$langs->trans(
"AvailableVariables").
':<br>';
306foreach ($substitutionarray as $key => $val) {
307 $htmltext .= $key.
'<br>';
312print
'<tr class="oddeven"><td>';
313print $langs->trans(
"Paymentnumpad");
315$array = array(0=>$langs->trans(
"Numberspad"), 1=>$langs->trans(
"BillsCoinsPad"));
316print $form->selectarray(
'TAKEPOS_NUMPAD', $array, (!
getDolGlobalString(
'TAKEPOS_NUMPAD') ?
'0' : $conf->global->TAKEPOS_NUMPAD), 0);
328print
'<tr class="oddeven"><td>';
329print $langs->trans(
'DirectPaymentButton');
331print ajax_constantonoff(
"TAKEPOS_DIRECT_PAYMENT", array(), $conf->entity, 0, 0, 1, 0);
344print
'<tr class="oddeven"><td>';
345print $langs->trans(
'EmailTemplate');
347include_once DOL_DOCUMENT_ROOT.
'/core/class/html.formmail.class.php';
349$nboftemplates = $formmail->fetchAllEMailTemplate(
'facture_send', $user,
null, -1);
351$arrayofmessagename = array();
352if (is_array($formmail->lines_model)) {
353 foreach ($formmail->lines_model as $modelmail) {
356 if (!empty($arrayofmessagename[$modelmail->label])) {
357 $moreonlabel =
' <span class="opacitymedium">('.$langs->trans(
"SeveralLangugeVariatFound").
')</span>';
359 $arrayofmessagename[$modelmail->id] = $langs->trans(preg_replace(
'/\(|\)/',
'', $modelmail->topic)).$moreonlabel;
364print $form->selectarray(
'TAKEPOS_EMAIL_TEMPLATE_INVOICE', $arrayofmessagename,
getDolGlobalString(
'TAKEPOS_EMAIL_TEMPLATE_INVOICE'),
'None', 1, 0,
'', 0, 0, 0,
'',
'maxwidth500 widthcentpercentminusx', 1);
368print
'<tr class="oddeven"><td>';
369print $langs->trans(
'ControlCashOpening');
371print ajax_constantonoff(
"TAKEPOS_CONTROL_CASH_OPENING", array(), $conf->entity, 0, 0, 1, 0);
375print
'<tr class="oddeven"><td>';
376print $langs->trans(
'GiftReceiptButton');
378print ajax_constantonoff(
"TAKEPOS_GIFT_RECEIPT", array(), $conf->entity, 0, 0, 1, 0);
382print
'<tr class="oddeven"><td>';
383print $langs->trans(
'AllowDelayedPayment');
385print ajax_constantonoff(
"TAKEPOS_DELAYED_PAYMENT", array(), $conf->entity, 0, 0, 1, 0);
389print
'<tr class="oddeven"><td>';
390print $langs->trans(
'ShowPriceHT');
392print ajax_constantonoff(
"TAKEPOS_SHOW_HT", array(), $conf->entity, 0, 0, 1, 0);
396print
'<tr class="oddeven"><td>';
397print $langs->trans(
'UsePriceHT');
399print ajax_constantonoff(
"TAKEPOS_CHANGE_PRICE_HT", array(), $conf->entity, 0, 0, 1, 0);
403if (isModEnabled(
'barcode')) {
404 print
'<tr class="oddeven"><td>';
405 print $form->textwithpicto($langs->trans(
"TakeposBarcodeRuleToInsertProduct"), $langs->trans(
"TakeposBarcodeRuleToInsertProductDesc"), 1,
'help',
'', 0, 3,
'barcoderuleonsmartphone');
407 print
'<input type="text" name="TAKEPOS_BARCODE_RULE_TO_INSERT_PRODUCT" value="' . (
getDolGlobalString(
'TAKEPOS_BARCODE_RULE_TO_INSERT_PRODUCT')) .
'">';
408 print
"</td></tr>\n";
476 print
'<div class="div-table-responsive-no-min">';
477 print
'<table class="noborder centpercent">';
479 print
'<tr class="liste_titre">';
480 print
'<td class="titlefield">'.$langs->trans(
"Sumup").
'</td><td>'.$langs->trans(
"Value").
'</td>';
483 print
'<tr class="oddeven"><td>';
484 print $langs->trans(
"SumupAffiliate");
485 print
'<td colspan="2">';
486 print
'<input type="text" name="TAKEPOS_SUMUP_AFFILIATE" value="' .
getDolGlobalString(
'TAKEPOS_SUMUP_AFFILIATE').
'"></input>';
487 print
"</td></tr>\n";
488 print
'<tr class="oddeven"><td>';
489 print $langs->trans(
"SumupAppId");
490 print
'<td colspan="2">';
491 print
'<input type="text" name="TAKEPOS_SUMUP_APPID" value="' .
getDolGlobalString(
'TAKEPOS_SUMUP_APPID').
'"></input>';
492 print
"</td></tr>\n";
500print $form->buttonsSaveCancel(
"Save",
'');
dolibarr_set_const($db, $name, $value, $type='chaine', $visible=0, $note='', $entity=1)
Insert a parameter (key,value) into database (delete old key then insert it again).
ajax_combobox($htmlname, $events=array(), $minLengthToAutocomplete=0, $forcefocus=0, $widthTypeOfAutocomplete='resolve', $idforemptyvalue='-1', $morecss='')
Convert a html select field into an ajax combobox.
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Class to manage invoices.
Class to manage products or services.
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
setEventMessage($mesgs, $style='mesgs', $noduplicate=0)
Set event message in dol_events session object.
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
dol_now($mode='auto')
Return date for now.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
pdf_getSubstitutionArray($outputlangs, $exclude=null, $object=null, $onlykey=0, $include=null)
Return array of possible substitutions for PDF content (without external module substitutions).
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.
takepos_admin_prepare_head()
Prepare array with list of tabs.