35require
'../../main.inc.php';
46require_once DOL_DOCUMENT_ROOT.
'/core/lib/admin.lib.php';
47require_once DOL_DOCUMENT_ROOT.
'/core/lib/pdf.lib.php';
49 require_once DOL_DOCUMENT_ROOT .
'/core/lib/supplier_order.lib.php';
51 require_once DOL_DOCUMENT_ROOT .
'/core/lib/fourn.lib.php';
53require_once DOL_DOCUMENT_ROOT.
'/fourn/class/fournisseur.class.php';
54require_once DOL_DOCUMENT_ROOT.
'/fourn/class/fournisseur.commande.class.php';
58$langs->loadLangs(array(
"admin",
"other",
"orders",
"stocks"));
60$action =
GETPOST(
'action',
'aZ09');
62$type =
GETPOST(
'type',
'alpha');
63$value =
GETPOST(
'value',
'alpha');
64$modulepart =
GETPOST(
'modulepart',
'aZ09');
66$label =
GETPOST(
'label',
'alpha');
67$scandir =
GETPOST(
'scan_dir',
'alpha');
70$specimenthirdparty->initAsSpecimen();
83include DOL_DOCUMENT_ROOT.
'/core/actions_setmoduleoptions.inc.php';
85if ($action ==
'updateMask') {
86 $maskconstorder =
GETPOST(
'maskconstorder',
'aZ09');
87 $maskvalue =
GETPOST(
'maskorder',
'alpha');
91 if ($maskconstorder && preg_match(
'/_MASK$/', $maskconstorder)) {
106if ($action ==
'specimen') {
107 $modele =
GETPOST(
'module',
'alpha');
110 $commande->initAsSpecimen();
111 $commande->thirdparty = $specimenthirdparty;
116 $dirmodels = array_merge(array(
'/'), (array)
$conf->modules_parts[
'models']);
117 foreach ($dirmodels as $reldir) {
118 $file =
dol_buildpath($reldir.
"core/modules/supplier_order/doc/pdf_".$modele.
".modules.php", 0);
119 if (file_exists($file)) {
120 $classname =
"pdf_".$modele;
125 if ($classname !==
'') {
128 $module =
new $classname(
$db, $commande);
129 '@phan-var-force ModelePDFSuppliersOrders $module';
131 if ($module->write_file($commande, $langs) > 0) {
132 header(
"Location: ".DOL_URL_ROOT.
"/document.php?modulepart=commande_fournisseur&file=SPECIMEN.pdf");
140 dol_syslog($langs->trans(
"ErrorModuleNotFound"), LOG_ERR);
142} elseif ($action ==
'set') {
145} elseif ($action ==
'del') {
152} elseif ($action ==
'setdoc') {
157 $conf->global->COMMANDE_SUPPLIER_ADDON_PDF = $value;
165} elseif ($action ==
'unsetdoc') {
167} elseif ($action ==
'setmod') {
172} elseif ($action ==
'addcat') {
174 $fourn->CreateCategory($user,
GETPOST(
'cat',
'alphanohtml'));
175} elseif ($action ==
'set_SUPPLIER_ORDER_OTHER') {
176 $freetext =
GETPOST(
'SUPPLIER_ORDER_FREE_TEXT',
'restricthtml');
177 $doubleapproval =
GETPOST(
'SUPPLIER_ORDER_3_STEPS_TO_BE_APPROVED',
'alpha');
178 $doubleapproval =
price2num($doubleapproval);
184 include_once DOL_DOCUMENT_ROOT.
'/core/modules/modFournisseur.class.php';
185 $newmodule =
new modFournisseur(
$db);
187 if (
$conf->global->SUPPLIER_ORDER_3_STEPS_TO_BE_APPROVED) {
189 $newmodule->rights = array();
192 $newmodule->rights[$r][0] = 1190;
193 $newmodule->rights[$r][1] = $langs->trans(
"Permission1190");
194 $newmodule->rights[$r][2] =
'w';
195 $newmodule->rights[$r][3] = 0;
196 $newmodule->rights[$r][4] =
'commande';
197 $newmodule->rights[$r][5] =
'approve2';
200 $newmodule->insert_permissions(1);
203 $newmodule->delete_permissions();
206 $newmodule->insert_permissions(1);
208} elseif ($action ==
'set_BANK_ASK_PAYMENT_BANK_DURING_SUPPLIER_ORDER') {
230$dirmodels = array_merge(array(
'/'), (array)
$conf->modules_parts[
'models']);
232llxHeader(
'',
'',
'',
'', 0, 0,
'',
'',
'',
'mod-admin page-supplier_order');
234$linkback =
'<a href="'.dolBuildUrl(DOL_URL_ROOT.
'/admin/modules.php', [
'restore_lastsearch_values' => 1]).
'">'.
img_picto($langs->trans(
"BackToModuleList"),
'back',
'class="pictofixedwidth"').
'<span class="hideonsmartphone">'.$langs->trans(
"BackToModuleList").
'</span></a>';
236print
load_fiche_titre($langs->trans(
"SuppliersSetup"), $linkback,
'title_setup');
241 $head = supplier_order_admin_prepare_head();
253print
'<div class="div-table-responsive-no-min">';
254print
'<table class="noborder centpercent">';
255print
'<tr class="liste_titre">';
256print
'<td width="100">'.$langs->trans(
"Name").
'</td>';
257print
'<td>'.$langs->trans(
"Description").
'</td>';
258print
'<td>'.$langs->trans(
"Example").
'</td>';
259print
'<td align="center" width="60">'.$langs->trans(
"Status").
'</td>';
260print
'<td align="center" width="16">'.$langs->trans(
"ShortInfo").
'</td>';
265foreach ($dirmodels as $reldir) {
266 $dir =
dol_buildpath($reldir.
"core/modules/supplier_order/");
269 $handle = opendir($dir);
270 if (is_resource($handle)) {
271 while (($file = readdir($handle)) !==
false) {
272 if (substr($file, 0, 25) ==
'mod_commande_fournisseur_' && substr($file,
dol_strlen($file) - 3, 3) ==
'php') {
273 $file = substr($file, 0,
dol_strlen($file) - 4);
275 require_once $dir.$file.
'.php';
277 $module =
new $file();
279 '@phan-var-force ModeleNumRefSuppliersOrders $module';
281 if ($module->isEnabled()) {
283 if ($module->version ==
'development' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 2) {
286 if ($module->version ==
'experimental' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 1) {
291 print
'<tr class="oddeven"><td>'.$module->getName($langs).
"</td><td>\n";
292 print $module->info($langs);
296 print
'<td class="nowrap">';
297 $tmp = $module->getExample();
298 if (preg_match(
'/^Error/', $tmp)) {
299 $langs->load(
"errors");
300 print
'<div class="error">'.$langs->trans($tmp).
'</div>';
301 } elseif ($tmp ==
'NotConfigured') {
302 print
'<span class="opacitymedium">'.$langs->trans($tmp).
'</span>';
308 print
'<td class="center">';
310 print
img_picto($langs->trans(
"Activated"),
'switch_on');
312 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=setmod&token='.newToken().
'&value='.urlencode($file).
'" alt="'.$langs->trans(
"Default").
'">'.
img_picto($langs->trans(
"Disabled"),
'switch_off').
'</a>';
317 $commande->initAsSpecimen();
321 $htmltooltip .=
''.$langs->trans(
"Version").
': <b>'.$module->getVersion().
'</b><br>';
322 $nextval = $module->getNextValue(
$mysoc, $commande);
323 if (
"$nextval" != $langs->trans(
"NotAvailable")) {
324 $htmltooltip .=
''.$langs->trans(
"NextValue").
': ';
326 if (preg_match(
'/^Error/', $nextval) || $nextval ==
'NotConfigured') {
327 $nextval = $langs->trans($nextval);
329 $htmltooltip .= $nextval.
'<br>';
331 $htmltooltip .= $langs->trans($module->error).
'<br>';
335 print
'<td class="center">';
336 print $form->textwithpicto(
'', $htmltooltip, 1,
'info');
348print
'</table></div><br>';
361$sql .=
" FROM ".MAIN_DB_PREFIX.
"document_model";
362$sql .=
" WHERE type = 'order_supplier'";
363$sql .=
" AND entity = ".((int)
$conf->entity);
365$resql =
$db->query($sql);
368 $num_rows =
$db->num_rows($resql);
369 while ($i < $num_rows) {
370 $array =
$db->fetch_array($resql);
371 if (is_array($array)) {
372 array_push($def, $array[0]);
380print
'<div class="div-table-responsive-no-min">';
381print
'<table class="noborder centpercent">'.
"\n";
382print
'<tr class="liste_titre">'.
"\n";
383print
'<td width="100">'.$langs->trans(
"Name").
'</td>'.
"\n";
384print
'<td>'.$langs->trans(
"Description").
'</td>'.
"\n";
385print
'<td align="center" width="60">'.$langs->trans(
"Status").
'</td>'.
"\n";
386print
'<td align="center" width="60">'.$langs->trans(
"Default").
'</td>'.
"\n";
387print
'<td align="center" width="40">'.$langs->trans(
"ShortInfo").
'</td>';
388print
'<td align="center" width="40">'.$langs->trans(
"Preview").
'</td>';
393foreach ($dirmodels as $reldir) {
394 $realpath = $reldir.
"core/modules/supplier_order/doc";
398 $handle = opendir($dir);
399 if (is_resource($handle)) {
400 while (($file = readdir($handle)) !==
false) {
401 if (preg_match(
'/\.modules\.php$/i', $file) && preg_match(
'/^(pdf_|doc_)/', $file)) {
402 $name = substr($file, 4,
dol_strlen($file) - 16);
403 $classname = substr($file, 0,
dol_strlen($file) - 12);
405 require_once $dir.
'/'.$file;
408 '@phan-var-force ModelePDFSuppliersOrders $module';
410 print
"<tr class=\"oddeven\">\n";
412 print(empty($module->name) ? $name : $module->
name);
415 require_once $dir.
'/'.$file;
416 $module =
new $classname(
$db, $specimenthirdparty);
417 '@phan-var-force ModelePDFSuppliersOrders $module';
418 if (method_exists($module,
'info')) {
419 print $module->info($langs);
421 print $module->description;
426 if (in_array($name, $def)) {
427 print
'<td class="center">'.
"\n";
429 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=del&token='.newToken().
'&value='.urlencode($name).
'&scan_dir='.urlencode($module->scandir).
'&label='.urlencode($module->name).
'&type=order_supplier">';
430 print
img_picto($langs->trans(
"Enabled"),
'switch_on');
433 print
img_picto($langs->trans(
"Enabled"),
'switch_on');
437 print
'<td class="center">'.
"\n";
438 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=set&token='.newToken().
'&value='.urlencode($name).
'&scan_dir='.urlencode($module->scandir).
'&label='.urlencode($module->name).
'&type=order_supplier">'.
img_picto($langs->trans(
"Disabled"),
'switch_off').
'</a>';
443 print
'<td class="center">';
445 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=unsetdoc&token='.newToken().
'&value='.urlencode($name).
'&scan_dir='.urlencode($module->scandir).
'&label='.urlencode($module->name).
'&type=order_supplier" alt="'.$langs->trans(
"Disable").
'">'.
img_picto($langs->trans(
"Enabled"),
'on').
'</a>';
447 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=setdoc&token='.newToken().
'&value='.urlencode($name).
'&scan_dir='.urlencode($module->scandir).
'&label='.urlencode($module->name).
'&type=order_supplier" alt="'.$langs->trans(
"Default").
'">'.
img_picto($langs->trans(
"Disabled"),
'off').
'</a>';
452 $htmltooltip =
''.$langs->trans(
"Name").
': '.$module->name;
453 $htmltooltip .=
'<br>'.$langs->trans(
"Type").
': '.($module->type ? $module->type : $langs->trans(
"Unknown"));
454 $htmltooltip .=
'<br>'.$langs->trans(
"Width").
'/'.$langs->trans(
"Height").
': '.$module->page_largeur.
'/'.$module->page_hauteur;
455 $htmltooltip .=
'<br>'.$langs->trans(
"Path").
': '.preg_replace(
'/^\//',
'', $realpath).
'/'.$file;
457 $htmltooltip .=
'<br><br><u>'.$langs->trans(
"FeaturesSupported").
':</u>';
458 $htmltooltip .=
'<br>'.$langs->trans(
"Logo").
': '.
yn($module->option_logo, 1, 1);
459 $htmltooltip .=
'<br>'.$langs->trans(
"PaymentMode").
': '.
yn($module->option_modereg, 1, 1);
460 $htmltooltip .=
'<br>'.$langs->trans(
"PaymentConditions").
': '.
yn($module->option_condreg, 1, 1);
461 print
'<td class="center">';
462 print $form->textwithpicto(
'', $htmltooltip, 1,
'info');
464 print
'<td class="center">';
465 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=specimen&module='.urlencode($name).
'">'.
img_object($langs->trans(
"Preview"),
'pdf').
'</a>';
477print
'</table></div><br>';
483print
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="post">';
484print
'<input type="hidden" name="token" value="'.newToken().
'">';
485print
'<input type="hidden" name="action" value="set_SUPPLIER_ORDER_OTHER">';
489print
'<div class="div-table-responsive-no-min">';
490print
'<table class="noborder centpercent">';
491print
'<tr class="liste_titre">';
492print
'<td>'.$langs->trans(
"Parameter").
'</td>';
494print
'<td width="80"> </td>';
497print
'<tr class="oddeven"><td>';
498print $form->textwithpicto($langs->trans(
"UseDoubleApproval"), $langs->trans(
"Use3StepsApproval"), 1,
'help').
'<br>';
499print
'<span class="opacitymedium">'.$langs->trans(
"IfSetToYesDontForgetPermission").
'</span>';
501print
'<input type="text" size="6" name="SUPPLIER_ORDER_3_STEPS_TO_BE_APPROVED" value="'.getDolGlobalString(
"SUPPLIER_ORDER_3_STEPS_TO_BE_APPROVED").
'">';
502print
'</td><td class="right">';
503print
'<input type="submit" class="button button-edit" value="'.$langs->trans(
"Modify").
'">';
507$substitutionarray[
'__(AnyTranslationKey)__'] = $langs->trans(
"Translation");
508$htmltext =
'<i>'.$langs->trans(
"AvailableVariables").
':<br>';
509foreach ($substitutionarray as $key => $val) {
510 $htmltext .= $key.
'<br>';
514print
'<tr class="oddeven"><td colspan="2">';
515print $form->textwithpicto($langs->trans(
"FreeLegalTextOnOrders"), $langs->trans(
"AddCRIfTooLong").
'<br><br>'.$htmltext, 1,
'help',
'', 0, 2,
'freetexttooltip').
'<br>';
516$variablename =
'SUPPLIER_ORDER_FREE_TEXT';
518 print
'<textarea name="'.$variablename.
'" class="flat" cols="120">'.
getDolGlobalString($variablename).
'</textarea>';
520 include_once DOL_DOCUMENT_ROOT.
'/core/class/doleditor.class.php';
522 print $doleditor->Create();
524print
'</td><td class="right">';
525print
'<input type="submit" class="button button-edit" value="'.$langs->trans(
"Modify").
'">';
529print
'<tr class="oddeven">';
530print
'<td>'.$langs->trans(
"UseDispatchStatus").
'</td>';
531print
'<td colspan="2">';
533 print
'<span class="opacitymedium">'.$langs->trans(
"FeatureNotAvailableWithReceptionModule").
'</span>';
535 if (
$conf->use_javascript_ajax) {
536 print ajax_constantonoff(
'SUPPLIER_ORDER_USE_DISPATCH_STATUS');
538 $arrval = array(
'0' => $langs->trans(
"No"),
'1' => $langs->trans(
"Yes"));
539 print $form->selectarray(
"SUPPLIER_ORDER_USE_DISPATCH_STATUS", $arrval,
$conf->global->SUPPLIER_ORDER_USE_DISPATCH_STATUS);
547print
'<tr class="oddeven"><td>'.$langs->trans(
"SupplierOrderClassifyBilledWithoutInvoice").
' ' ;
548print $form->textwithpicto(
'', $langs->trans(
"SupplierOrderClassifyBilledWithoutInvoiceHelp"), 1,
'help') .
'</td>';
549print
'<td colspan="2">';
550print ajax_constantonoff(
'SUPPLIER_ORDER_DISABLE_CLASSIFY_BILLED_FROM_SUPPLIER_ORDER');
554print
'<tr class="oddeven">';
555print
'<td>'.$langs->trans(
"AllowExternalDownload").
'</td>';
556print
'<td class="left" colspan="2">';
557print ajax_constantonoff(
'SUPPLIER_ORDER_ALLOW_EXTERNAL_DOWNLOAD', array(),
null, 0, 0, 0, 2, 0, 1);
561print
'<tr class="oddeven">';
562print
'<td>'.img_picto(
'',
'email',
'class="pictofixedwidth"').$langs->trans(
"Notifications").
'</td>';
563print
'<td colspan="2">';
564print $langs->trans(
"YouMayFindNotificationsFeaturesIntoModuleNotification");
568print
'<tr class="oddeven">';
569print
'<td>'.img_picto(
'',
'pdf',
'class="pictofixedwidth"').$langs->trans(
"MoreOptionsRelatedToPDF").
'</td>';
570print
'<td colspan="2">';
571print
img_picto(
'',
'url',
'class="pictofixedwidth"').
'<a href="'.DOL_URL_ROOT.
'/admin/pdf_other.php">'.$langs->trans(
"SeeInPDFSetupPage").
'</a>';
575print
'</table></div><br>';
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.
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
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 predefined suppliers products.
Class to manage a WYSIWYG editor.
Class to manage suppliers.
Class to manage third parties objects (customers, suppliers, prospects...)
supplierorder_admin_prepare_head()
Return array head with list of tabs to view object information.
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, $allowothertags=array())
Show picto whatever it's its name (generic function)
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0, $morecssdiv='')
Show tabs of a record.
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $allowothertags=array())
Show a picto called object_picto (generic function)
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
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...
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='', $morecssonpicto='widthpictotitle')
Load a title with picto.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
isModEnabled($module)
Is Dolibarr module enabled.
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.