34require
'../main.inc.php';
35require_once DOL_DOCUMENT_ROOT.
'/core/lib/admin.lib.php';
36require_once DOL_DOCUMENT_ROOT.
'/core/lib/pdf.lib.php';
37require_once DOL_DOCUMENT_ROOT.
'/core/lib/expensereport.lib.php';
38require_once DOL_DOCUMENT_ROOT.
'/expensereport/class/expensereport.class.php';
41$langs->loadLangs(array(
'admin',
'errors',
'trips',
'other'));
47$action =
GETPOST(
'action',
'aZ09');
48$value =
GETPOST(
'value',
'alpha');
49$modulepart =
GETPOST(
'modulepart',
'aZ09');
51$label =
GETPOST(
'label',
'alpha');
52$scandir =
GETPOST(
'scan_dir',
'alpha');
53$type =
'expensereport';
60include DOL_DOCUMENT_ROOT.
'/core/actions_setmoduleoptions.inc.php';
62if ($action ==
'updateMask') {
63 $maskconst =
GETPOST(
'maskconst',
'aZ09');
64 $maskvalue =
GETPOST(
'maskvalue',
'alpha');
68 if ($maskconst && preg_match(
'/_MASK$/', $maskconst)) {
69 $res =
dolibarr_set_const($db, $maskconst, $maskvalue,
'chaine', 0,
'', $conf->entity);
81} elseif ($action ==
'specimen') {
82 $modele =
GETPOST(
'module',
'alpha');
85 $expensespecimen->initAsSpecimen();
86 $expensespecimen->status = 0;
91 $dirmodels = array_merge(array(
'/'), (array) $conf->modules_parts[
'models']);
92 foreach ($dirmodels as $reldir) {
93 $file =
dol_buildpath($reldir.
"core/modules/expensereport/doc/pdf_".$modele.
".modules.php", 0);
94 if (file_exists($file)) {
95 $classname =
"pdf_".$modele;
100 if ($classname !==
'') {
103 $module =
new $classname($db);
104 '@phan-var-force ModeleExpenseReport $module';
106 if ($module->write_file($expensespecimen, $langs) > 0) {
107 header(
"Location: ".DOL_URL_ROOT.
"/document.php?modulepart=expensereport&file=SPECIMEN.pdf");
115 dol_syslog($langs->trans(
"ErrorModuleNotFound"), LOG_ERR);
117} elseif ($action ==
'set') {
121 dolibarr_set_const($db,
'EXPENSEREPORT_ADDON_PDF', $value,
'chaine', 0,
'', $conf->entity);
123} elseif ($action ==
'del') {
126 if ($conf->global->EXPENSEREPORT_ADDON_PDF ==
"$value") {
130} elseif ($action ==
'setdoc') {
132 if (
dolibarr_set_const($db,
"EXPENSEREPORT_ADDON_PDF", $value,
'chaine', 0,
'', $conf->entity)) {
135 $conf->global->EXPENSEREPORT_ADDON_PDF = $value;
143} elseif ($action ==
'setmod') {
147 dolibarr_set_const($db,
"EXPENSEREPORT_ADDON", $value,
'chaine', 0,
'', $conf->entity);
148} elseif ($action ==
'setoptions') {
151 $freetext =
GETPOST(
'EXPENSEREPORT_FREE_TEXT',
'restricthtml');
152 $res1 =
dolibarr_set_const($db,
"EXPENSEREPORT_FREE_TEXT", $freetext,
'chaine', 0,
'', $conf->entity);
154 $draft =
GETPOST(
'EXPENSEREPORT_DRAFT_WATERMARK',
'alpha');
155 $res2 =
dolibarr_set_const($db,
"EXPENSEREPORT_DRAFT_WATERMARK", trim($draft),
'chaine', 0,
'', $conf->entity);
158 if (isModEnabled(
'project') && GETPOSTISSET(
'EXPENSEREPORT_PROJECT_IS_REQUIRED')) {
159 $res3 =
dolibarr_set_const($db,
'EXPENSEREPORT_PROJECT_IS_REQUIRED',
GETPOSTINT(
'EXPENSEREPORT_PROJECT_IS_REQUIRED'),
'chaine', 0,
'', $conf->entity);
162 $dates =
GETPOSTINT(
'EXPENSEREPORT_PREFILL_DATES_WITH_CURRENT_MONTH');
163 $res4 =
dolibarr_set_const($db,
'EXPENSEREPORT_PREFILL_DATES_WITH_CURRENT_MONTH', intval($dates),
'chaine', 0,
'', $conf->entity);
165 $amounts =
GETPOSTINT(
'EXPENSEREPORT_FORCE_LINE_AMOUNTS_INCLUDING_TAXES_ONLY');
166 $res5 =
dolibarr_set_const($db,
'EXPENSEREPORT_FORCE_LINE_AMOUNTS_INCLUDING_TAXES_ONLY', intval($amounts),
'chaine', 0,
'', $conf->entity);
168 $linesblocked =
GETPOSTINT(
'EXPENSEREPORT_BLOCK_LINE_CREATION_IF_NOT_BETWEEN_DATES');
169 $res6 =
dolibarr_set_const($db,
'EXPENSEREPORT_BLOCK_LINE_CREATION_IF_NOT_BETWEEN_DATES', intval($linesblocked),
'chaine', 0,
'', $conf->entity);
171 if (!($res1 > 0) || !($res2 > 0) || !($res3 >= 0) || !($res4 > 0) || !($res5 > 0) || !($res6 > 0)) {
189$dirmodels = array_merge(array(
'/'), (array) $conf->modules_parts[
'models']);
191llxHeader(
'', $langs->trans(
"ExpenseReportsSetup"),
'',
'', 0, 0,
'',
'',
'',
'mod-admin page-expensereport');
193$form =
new Form($db);
195$linkback =
'<a href="'.DOL_URL_ROOT.
'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToModuleList").
'</a>';
196print
load_fiche_titre($langs->trans(
"ExpenseReportsSetup"), $linkback,
'title_setup');
201print
dol_get_fiche_head($head,
'expensereport', $langs->trans(
"ExpenseReports"), -1,
'trip');
207print
load_fiche_titre($langs->trans(
"ExpenseReportNumberingModules"),
'',
'');
209print
'<table class="noborder centpercent">';
210print
'<tr class="liste_titre">';
211print
'<td>'.$langs->trans(
"Name").
'</td>';
212print
'<td>'.$langs->trans(
"Description").
'</td>';
213print
'<td class="nowrap">'.$langs->trans(
"Example").
'</td>';
214print
'<td class="center" width="60">'.$langs->trans(
"Status").
'</td>';
215print
'<td class="center" width="16">'.$langs->trans(
"ShortInfo").
'</td>';
220foreach ($dirmodels as $reldir) {
224 $handle = opendir($dir);
225 if (is_resource($handle)) {
226 while (($file = readdir($handle)) !==
false) {
227 if (substr($file, 0, 18) ==
'mod_expensereport_' && substr($file,
dol_strlen($file) - 3, 3) ==
'php') {
228 $file = substr($file, 0,
dol_strlen($file) - 4);
230 require_once $dir.$file.
'.php';
232 $module =
new $file($db);
234 '@phan-var-force ModeleNumRefExpenseReport $module';
237 if ($module->version ==
'development' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 2) {
240 if ($module->version ==
'experimental' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 1) {
244 if ($module->isEnabled()) {
245 print
'<tr class="oddeven"><td>'.$module->getName($langs).
"</td><td>\n";
246 print $module->info($langs);
250 print
'<td class="nowrap">';
251 $tmp = $module->getExample();
252 if (preg_match(
'/^Error/', $tmp)) {
253 $langs->load(
"errors");
254 print
'<div class="error">'.$langs->trans($tmp).
'</div>';
255 } elseif ($tmp ==
'NotConfigured') {
256 print
'<span class="opacitymedium">'.$langs->trans($tmp).
'</span>';
262 print
'<td class="center">';
263 if ($conf->global->EXPENSEREPORT_ADDON == $file) {
264 print
img_picto($langs->trans(
"Activated"),
'switch_on');
266 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=setmod&token='.
newToken().
'&value='.urlencode($file).
'">';
267 print
img_picto($langs->trans(
"Disabled"),
'switch_off');
273 $exp->initAsSpecimen();
277 $htmltooltip .=
''.$langs->trans(
"Version").
': <b>'.$module->getVersion().
'</b><br>';
278 $nextval = $module->getNextValue($exp);
279 if (
"$nextval" != $langs->trans(
"NotAvailable")) {
280 $htmltooltip .=
''.$langs->trans(
"NextValue").
': ';
282 if (preg_match(
'/^Error/', $nextval) || $nextval ==
'NotConfigured') {
283 $nextval = $langs->trans($nextval);
285 $htmltooltip .= $nextval.
'<br>';
287 $htmltooltip .= $langs->trans($module->error).
'<br>';
291 print
'<td class="center">';
292 print $form->textwithpicto(
'', $htmltooltip, 1, 0);
303print
"</table><br>\n";
312$type =
'expensereport';
315$sql .=
" FROM ".MAIN_DB_PREFIX.
"document_model";
316$sql .=
" WHERE type = '".$db->escape($type).
"'";
317$sql .=
" AND entity = ".$conf->entity;
318$resql = $db->query($sql);
321 $num_rows = $db->num_rows($resql);
322 while ($i < $num_rows) {
323 $array = $db->fetch_array($resql);
324 if (is_array($array)) {
325 array_push($def, $array[0]);
333print
'<table class="noborder centpercent">';
334print
'<tr class="liste_titre">';
335print
'<td>'.$langs->trans(
"Name").
'</td>';
336print
'<td>'.$langs->trans(
"Description").
'</td>';
337print
'<td class="center" width="60">'.$langs->trans(
"Status").
"</td>\n";
338print
'<td class="center" width="60">'.$langs->trans(
"Default").
"</td>\n";
339print
'<td class="center" width="80">'.$langs->trans(
"ShortInfo").
'</td>';
340print
'<td class="center" width="80">'.$langs->trans(
"Preview").
'</td>';
345foreach ($dirmodels as $reldir) {
346 $dir =
dol_buildpath($reldir.
"core/modules/expensereport/doc");
349 $handle = opendir($dir);
350 if (is_resource($handle)) {
352 while (($file = readdir($handle)) !==
false) {
358 foreach ($filelist as $file) {
359 if (preg_match(
'/\.modules\.php$/i', $file) && preg_match(
'/^(pdf_|doc_)/', $file)) {
360 if (file_exists($dir.
'/'.$file)) {
361 $name = substr($file, 4,
dol_strlen($file) - 16);
362 $classname = substr($file, 0,
dol_strlen($file) - 12);
364 require_once $dir.
'/'.$file;
365 $module =
new $classname($db);
367 '@phan-var-force ModeleExpenseReport $module';
369 $modulequalified = 1;
370 if ($module->version ==
'development' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 2) {
371 $modulequalified = 0;
373 if ($module->version ==
'experimental' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 1) {
374 $modulequalified = 0;
377 if ($modulequalified) {
378 print
'<tr class="oddeven"><td width="100">';
379 print(empty($module->name) ? $name : $module->
name);
381 if (method_exists($module,
'info')) {
382 print $module->info($langs);
384 print $module->description;
389 if (in_array($name, $def)) {
390 print
'<td class="center">'.
"\n";
391 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=del&token='.
newToken().
'&value='.urlencode($name).
'&scan_dir='.urlencode($module->scandir).
'&label='.urlencode($module->name).
'">';
392 print
img_picto($langs->trans(
"Enabled"),
'switch_on');
396 print
'<td class="center">'.
"\n";
397 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=set&token='.
newToken().
'&value='.urlencode($name).
'&scan_dir='.urlencode($module->scandir).
'&label='.urlencode($module->name).
'">'.
img_picto($langs->trans(
"Disabled"),
'switch_off').
'</a>';
402 print
'<td class="center">';
403 if ($conf->global->EXPENSEREPORT_ADDON_PDF ==
"$name") {
404 print
img_picto($langs->trans(
"Default"),
'on');
406 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=setdoc&token='.
newToken().
'&value='.$name.
'&scan_dir='.$module->scandir.
'&label='.urlencode($module->name).
'" alt="'.$langs->trans(
"Default").
'">'.
img_picto($langs->trans(
"Disabled"),
'off').
'</a>';
411 $htmltooltip =
''.$langs->trans(
"Name").
': '.$module->name;
412 $htmltooltip .=
'<br>'.$langs->trans(
"Type").
': '.($module->type ? $module->type : $langs->trans(
"Unknown"));
413 $htmltooltip .=
'<br>'.$langs->trans(
"Width").
'/'.$langs->trans(
"Height").
': '.$module->page_largeur.
'/'.$module->page_hauteur;
414 $htmltooltip .=
'<br><br><u>'.$langs->trans(
"FeaturesSupported").
':</u>';
415 $htmltooltip .=
'<br>'.$langs->trans(
"Logo").
': '.
yn($module->option_logo, 1, 1);
416 $htmltooltip .=
'<br>'.$langs->trans(
"PaymentMode").
': '.
yn($module->option_modereg, 1, 1);
417 $htmltooltip .=
'<br>'.$langs->trans(
"PaymentConditions").
': '.
yn($module->option_condreg, 1, 1);
418 $htmltooltip .=
'<br>'.$langs->trans(
"MultiLanguage").
': '.
yn($module->option_multilang, 1, 1);
419 $htmltooltip .=
'<br>'.$langs->trans(
"WatermarkOnDraftOrders").
': '.
yn($module->option_draft_watermark, 1, 1);
420 print
'<td class="center">';
421 print $form->textwithpicto(
'', $htmltooltip, -1, 0);
425 print
'<td class="center">';
426 if ($module->type ==
'pdf') {
427 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=specimen&module='.$name.
'">'.
img_object($langs->trans(
"Preview"),
'pdf').
'</a>';
429 print
img_object($langs->trans(
"PreviewNotAvailable"),
'generic');
453print
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="post">';
454print
'<input type="hidden" name="token" value="'.newToken().
'">';
455print
'<input type="hidden" name="action" value="setoptions">';
458print
'<table class="noborder centpercent">';
459print
'<tr class="liste_titre">';
460print
'<td>'.$langs->trans(
"Parameter").
'</td>';
461print
'<td class="center" width="60"></td>';
465$substitutionarray[
'__(AnyTranslationKey)__'] = $langs->trans(
"Translation");
466$htmltext =
'<i>'.$langs->trans(
"AvailableVariables").
':<br>';
467foreach ($substitutionarray as $key => $val) {
468 $htmltext .= $key.
'<br>';
472print
'<tr class="oddeven"><td colspan="2">';
473print $form->textwithpicto($langs->trans(
"FreeLegalTextOnExpenseReports"), $langs->trans(
"AddCRIfTooLong").
'<br><br>'.$htmltext, 1,
'help',
'', 0, 2,
'freetexttooltip').
'<br>';
474$variablename =
'EXPENSEREPORT_FREE_TEXT';
476 print
'<textarea name="'.$variablename.
'" class="flat" cols="120">'.
getDolGlobalString($variablename).
'</textarea>';
478 include_once DOL_DOCUMENT_ROOT.
'/core/class/doleditor.class.php';
480 print $doleditor->Create();
482print
'</td></tr>'.
"\n";
486print
'<tr class="oddeven"><td colspan="2">';
487print $form->textwithpicto($langs->trans(
"WatermarkOnDraftExpenseReports"), $htmltext, 1,
'help',
'', 0, 2,
'watermarktooltip').
'<br>';
488print
'<input class="flat minwidth200" type="text" name="EXPENSEREPORT_DRAFT_WATERMARK" value="'.dol_escape_htmltag(
getDolGlobalString(
'EXPENSEREPORT_DRAFT_WATERMARK')).
'">';
489print
'</td></tr>'.
"\n";
491if (isModEnabled(
'project')) {
492 print
'<tr class="oddeven"><td>';
493 print $langs->trans(
'ProjectIsRequiredOnExpenseReports');
494 print
'</td><td class="right">';
495 print $form->selectyesno(
'EXPENSEREPORT_PROJECT_IS_REQUIRED',
getDolGlobalString(
'EXPENSEREPORT_PROJECT_IS_REQUIRED') ? 1 : 0, 1);
499print
'<tr class="oddeven"><td>';
500print $langs->trans(
'PrefillExpenseReportDatesWithCurrentMonth');
501print
'</td><td class="right">';
502print $form->selectyesno(
'EXPENSEREPORT_PREFILL_DATES_WITH_CURRENT_MONTH',
getDolGlobalString(
'EXPENSEREPORT_PREFILL_DATES_WITH_CURRENT_MONTH') ? 1 : 0, 1);
505print
'<tr class="oddeven"><td>';
506print $langs->trans(
'ForceExpenseReportsLineAmountsIncludingTaxesOnly');
507print
'</td><td class="right">';
508print $form->selectyesno(
'EXPENSEREPORT_FORCE_LINE_AMOUNTS_INCLUDING_TAXES_ONLY',
getDolGlobalString(
'EXPENSEREPORT_FORCE_LINE_AMOUNTS_INCLUDING_TAXES_ONLY') ? 1 : 0, 1);
511print
'<tr class="oddeven"><td>';
512print $langs->trans(
'BlockExpenseReportLineCreationIfNotBetweenDates');
513print
'</td><td class="right">';
514print $form->selectyesno(
'EXPENSEREPORT_BLOCK_LINE_CREATION_IF_NOT_BETWEEN_DATES',
getDolGlobalString(
'EXPENSEREPORT_BLOCK_LINE_CREATION_IF_NOT_BETWEEN_DATES') ? 1 : 0, 1);
519print $form->buttonsSaveCancel(
"Save",
'');
addDocumentModel($name, $type, $label='', $description='')
Add document model used by doc generator.
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).
dolibarr_del_const($db, $name, $entity=1)
Delete a constant.
delDocumentModel($name, $type)
Delete document model used by doc generator.
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Class to manage a WYSIWYG editor.
Class to manage Trips and Expenses.
expensereport_admin_prepare_head()
Return array head with list of tabs to view object information.
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
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.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
newToken()
Return the value of token currently saved into session with name 'newtoken'.
yn($yesno, $format=1, $color=0)
Return yes or no in current language.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return a 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).
$conf db name
Only used if Module[ID]Name translation string is not found.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.