33require
'../main.inc.php';
34require_once DOL_DOCUMENT_ROOT.
'/core/lib/admin.lib.php';
35require_once DOL_DOCUMENT_ROOT.
'/core/lib/pdf.lib.php';
36require_once DOL_DOCUMENT_ROOT.
'/core/lib/fourn.lib.php';
37require_once DOL_DOCUMENT_ROOT.
'/fourn/class/fournisseur.class.php';
38require_once DOL_DOCUMENT_ROOT.
'/fourn/class/fournisseur.commande.class.php';
41$langs->loadLangs(array(
"admin",
"other",
"orders",
"stocks"));
43$action =
GETPOST(
'action',
'aZ09');
45$type =
GETPOST(
'type',
'alpha');
46$value =
GETPOST(
'value',
'alpha');
47$modulepart =
GETPOST(
'modulepart',
'aZ09');
49$label =
GETPOST(
'label',
'alpha');
50$scandir =
GETPOST(
'scan_dir',
'alpha');
52$specimenthirdparty =
new Societe($db);
53$specimenthirdparty->initAsSpecimen();
66include DOL_DOCUMENT_ROOT.
'/core/actions_setmoduleoptions.inc.php';
68if ($action ==
'updateMask') {
69 $maskconstorder =
GETPOST(
'maskconstorder',
'aZ09');
70 $maskvalue =
GETPOST(
'maskorder',
'alpha');
74 if ($maskconstorder && preg_match(
'/_MASK$/', $maskconstorder)) {
75 $res =
dolibarr_set_const($db, $maskconstorder, $maskvalue,
'chaine', 0,
'', $conf->entity);
89if ($action ==
'specimen') {
90 $modele =
GETPOST(
'module',
'alpha');
93 $commande->initAsSpecimen();
94 $commande->thirdparty = $specimenthirdparty;
99 $dirmodels = array_merge(array(
'/'), (array) $conf->modules_parts[
'models']);
100 foreach ($dirmodels as $reldir) {
101 $file =
dol_buildpath($reldir.
"core/modules/supplier_order/doc/pdf_".$modele.
".modules.php", 0);
102 if (file_exists($file)) {
103 $classname =
"pdf_".$modele;
108 if ($classname !==
'') {
111 $module =
new $classname($db, $commande);
112 '@phan-var-force ModelePDFSuppliersOrders $module';
114 if ($module->write_file($commande, $langs) > 0) {
115 header(
"Location: ".DOL_URL_ROOT.
"/document.php?modulepart=commande_fournisseur&file=SPECIMEN.pdf");
123 dol_syslog($langs->trans(
"ErrorModuleNotFound"), LOG_ERR);
125} elseif ($action ==
'set') {
128} elseif ($action ==
'del') {
131 if ($conf->global->COMMANDE_SUPPLIER_ADDON_PDF ==
"$value") {
135} elseif ($action ==
'setdoc') {
137 if (
dolibarr_set_const($db,
"COMMANDE_SUPPLIER_ADDON_PDF", $value,
'chaine', 0,
'', $conf->entity)) {
140 $conf->global->COMMANDE_SUPPLIER_ADDON_PDF = $value;
148} elseif ($action ==
'unsetdoc') {
150} elseif ($action ==
'setmod') {
154 dolibarr_set_const($db,
"COMMANDE_SUPPLIER_ADDON_NUMBER", $value,
'chaine', 0,
'', $conf->entity);
155} elseif ($action ==
'addcat') {
157 $fourn->CreateCategory($user,
GETPOST(
'cat',
'alphanohtml'));
158} elseif ($action ==
'set_SUPPLIER_ORDER_OTHER') {
159 $freetext =
GETPOST(
'SUPPLIER_ORDER_FREE_TEXT',
'restricthtml');
160 $doubleapproval =
GETPOST(
'SUPPLIER_ORDER_3_STEPS_TO_BE_APPROVED',
'alpha');
161 $doubleapproval =
price2num($doubleapproval);
163 $res1 =
dolibarr_set_const($db,
"SUPPLIER_ORDER_FREE_TEXT", $freetext,
'chaine', 0,
'', $conf->entity);
164 $res2 =
dolibarr_set_const($db,
"SUPPLIER_ORDER_3_STEPS_TO_BE_APPROVED", $doubleapproval,
'chaine', 0,
'', $conf->entity);
167 include_once DOL_DOCUMENT_ROOT.
'/core/modules/modFournisseur.class.php';
170 if ($conf->global->SUPPLIER_ORDER_3_STEPS_TO_BE_APPROVED) {
172 $newmodule->rights = array();
175 $newmodule->rights[$r][0] = 1190;
176 $newmodule->rights[$r][1] = $langs->trans(
"Permission1190");
177 $newmodule->rights[$r][2] =
'w';
178 $newmodule->rights[$r][3] = 0;
179 $newmodule->rights[$r][4] =
'commande';
180 $newmodule->rights[$r][5] =
'approve2';
183 $newmodule->insert_permissions(1);
186 $newmodule->delete_permissions();
189 $newmodule->insert_permissions(1);
191} elseif ($action ==
'set_BANK_ASK_PAYMENT_BANK_DURING_SUPPLIER_ORDER') {
193 $res =
dolibarr_set_const($db,
"BANK_ASK_PAYMENT_BANK_DURING_SUPPLIER_ORDER", $value,
'chaine', 0,
'', $conf->entity);
211$form =
new Form($db);
213$dirmodels = array_merge(array(
'/'), (array) $conf->modules_parts[
'models']);
215llxHeader(
'',
'',
'',
'', 0, 0,
'',
'',
'',
'mod-admin page-supplier_order');
217$linkback =
'<a href="'.DOL_URL_ROOT.
'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToModuleList").
'</a>';
218print
load_fiche_titre($langs->trans(
"SuppliersSetup"), $linkback,
'title_setup');
231print
'<div class="div-table-responsive-no-min">';
232print
'<table class="noborder centpercent">';
233print
'<tr class="liste_titre">';
234print
'<td width="100">'.$langs->trans(
"Name").
'</td>';
235print
'<td>'.$langs->trans(
"Description").
'</td>';
236print
'<td>'.$langs->trans(
"Example").
'</td>';
237print
'<td align="center" width="60">'.$langs->trans(
"Status").
'</td>';
238print
'<td align="center" width="16">'.$langs->trans(
"ShortInfo").
'</td>';
243foreach ($dirmodels as $reldir) {
244 $dir =
dol_buildpath($reldir.
"core/modules/supplier_order/");
247 $handle = opendir($dir);
248 if (is_resource($handle)) {
249 while (($file = readdir($handle)) !==
false) {
250 if (substr($file, 0, 25) ==
'mod_commande_fournisseur_' && substr($file,
dol_strlen($file) - 3, 3) ==
'php') {
251 $file = substr($file, 0,
dol_strlen($file) - 4);
253 require_once $dir.$file.
'.php';
255 $module =
new $file();
257 '@phan-var-force ModeleNumRefSuppliersOrders $module';
259 if ($module->isEnabled()) {
261 if ($module->version ==
'development' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 2) {
264 if ($module->version ==
'experimental' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 1) {
269 print
'<tr class="oddeven"><td>'.$module->getName($langs).
"</td><td>\n";
270 print $module->info($langs);
274 print
'<td class="nowrap">';
275 $tmp = $module->getExample();
276 if (preg_match(
'/^Error/', $tmp)) {
277 $langs->load(
"errors");
278 print
'<div class="error">'.$langs->trans($tmp).
'</div>';
279 } elseif ($tmp ==
'NotConfigured') {
280 print
'<span class="opacitymedium">'.$langs->trans($tmp).
'</span>';
286 print
'<td class="center">';
287 if ($conf->global->COMMANDE_SUPPLIER_ADDON_NUMBER ==
"$file") {
288 print
img_picto($langs->trans(
"Activated"),
'switch_on');
290 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>';
295 $commande->initAsSpecimen();
299 $htmltooltip .=
''.$langs->trans(
"Version").
': <b>'.$module->getVersion().
'</b><br>';
300 $nextval = $module->getNextValue($mysoc, $commande);
301 if (
"$nextval" != $langs->trans(
"NotAvailable")) {
302 $htmltooltip .=
''.$langs->trans(
"NextValue").
': ';
304 if (preg_match(
'/^Error/', $nextval) || $nextval ==
'NotConfigured') {
305 $nextval = $langs->trans($nextval);
307 $htmltooltip .= $nextval.
'<br>';
309 $htmltooltip .= $langs->trans($module->error).
'<br>';
313 print
'<td class="center">';
314 print $form->textwithpicto(
'', $htmltooltip, 1, 0);
326print
'</table></div><br>';
339$sql .=
" FROM ".MAIN_DB_PREFIX.
"document_model";
340$sql .=
" WHERE type = 'order_supplier'";
341$sql .=
" AND entity = ".$conf->entity;
343$resql = $db->query($sql);
346 $num_rows = $db->num_rows($resql);
347 while ($i < $num_rows) {
348 $array = $db->fetch_array($resql);
349 if (is_array($array)) {
350 array_push($def, $array[0]);
358print
'<div class="div-table-responsive-no-min">';
359print
'<table class="noborder centpercent">'.
"\n";
360print
'<tr class="liste_titre">'.
"\n";
361print
'<td width="100">'.$langs->trans(
"Name").
'</td>'.
"\n";
362print
'<td>'.$langs->trans(
"Description").
'</td>'.
"\n";
363print
'<td align="center" width="60">'.$langs->trans(
"Status").
'</td>'.
"\n";
364print
'<td align="center" width="60">'.$langs->trans(
"Default").
'</td>'.
"\n";
365print
'<td align="center" width="40">'.$langs->trans(
"ShortInfo").
'</td>';
366print
'<td align="center" width="40">'.$langs->trans(
"Preview").
'</td>';
371foreach ($dirmodels as $reldir) {
372 $realpath = $reldir.
"core/modules/supplier_order/doc";
376 $handle = opendir($dir);
377 if (is_resource($handle)) {
378 while (($file = readdir($handle)) !==
false) {
379 if (preg_match(
'/\.modules\.php$/i', $file) && preg_match(
'/^(pdf_|doc_)/', $file)) {
380 $name = substr($file, 4,
dol_strlen($file) - 16);
381 $classname = substr($file, 0,
dol_strlen($file) - 12);
383 require_once $dir.
'/'.$file;
386 '@phan-var-force ModelePDFSuppliersOrders $module';
388 print
"<tr class=\"oddeven\">\n";
390 print(empty($module->name) ? $name : $module->
name);
393 require_once $dir.
'/'.$file;
394 $module =
new $classname($db, $specimenthirdparty);
395 '@phan-var-force ModelePDFSuppliersOrders $module';
396 if (method_exists($module,
'info')) {
397 print $module->info($langs);
399 print $module->description;
404 if (in_array($name, $def)) {
405 print
'<td class="center">'.
"\n";
406 if ($conf->global->COMMANDE_SUPPLIER_ADDON_PDF !=
"$name") {
407 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">';
408 print
img_picto($langs->trans(
"Enabled"),
'switch_on');
411 print
img_picto($langs->trans(
"Enabled"),
'switch_on');
415 print
'<td class="center">'.
"\n";
416 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>';
421 print
'<td class="center">';
422 if ($conf->global->COMMANDE_SUPPLIER_ADDON_PDF ==
"$name") {
423 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>';
425 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>';
430 $htmltooltip =
''.$langs->trans(
"Name").
': '.$module->name;
431 $htmltooltip .=
'<br>'.$langs->trans(
"Type").
': '.($module->type ? $module->type : $langs->trans(
"Unknown"));
432 $htmltooltip .=
'<br>'.$langs->trans(
"Width").
'/'.$langs->trans(
"Height").
': '.$module->page_largeur.
'/'.$module->page_hauteur;
433 $htmltooltip .=
'<br>'.$langs->trans(
"Path").
': '.preg_replace(
'/^\//',
'', $realpath).
'/'.$file;
435 $htmltooltip .=
'<br><br><u>'.$langs->trans(
"FeaturesSupported").
':</u>';
436 $htmltooltip .=
'<br>'.$langs->trans(
"Logo").
': '.
yn($module->option_logo, 1, 1);
437 $htmltooltip .=
'<br>'.$langs->trans(
"PaymentMode").
': '.
yn($module->option_modereg, 1, 1);
438 $htmltooltip .=
'<br>'.$langs->trans(
"PaymentConditions").
': '.
yn($module->option_condreg, 1, 1);
439 print
'<td class="center">';
440 print $form->textwithpicto(
'', $htmltooltip, 1, 0);
442 print
'<td class="center">';
443 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=specimen&module='.urlencode($name).
'">'.
img_object($langs->trans(
"Preview"),
'pdf').
'</a>';
455print
'</table></div><br>';
461print
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="post">';
462print
'<input type="hidden" name="token" value="'.newToken().
'">';
463print
'<input type="hidden" name="action" value="set_SUPPLIER_ORDER_OTHER">';
467print
'<div class="div-table-responsive-no-min">';
468print
'<table class="noborder centpercent">';
469print
'<tr class="liste_titre">';
470print
'<td>'.$langs->trans(
"Parameter").
'</td>';
471print
'<td align="center" width="60">'.$langs->trans(
"Value").
'</td>';
472print
'<td width="80"> </td>';
475print
'<tr class="oddeven"><td>';
476print $form->textwithpicto($langs->trans(
"UseDoubleApproval"), $langs->trans(
"Use3StepsApproval"), 1,
'help').
'<br>';
477print $langs->trans(
"IfSetToYesDontForgetPermission");
479print
'<input type="text" size="6" name="SUPPLIER_ORDER_3_STEPS_TO_BE_APPROVED" value="'.getDolGlobalString(
"SUPPLIER_ORDER_3_STEPS_TO_BE_APPROVED").
'">';
480print
'</td><td class="right">';
481print
'<input type="submit" class="button button-edit" value="'.$langs->trans(
"Modify").
'">';
517$substitutionarray[
'__(AnyTranslationKey)__'] = $langs->trans(
"Translation");
518$htmltext =
'<i>'.$langs->trans(
"AvailableVariables").
':<br>';
519foreach ($substitutionarray as $key => $val) {
520 $htmltext .= $key.
'<br>';
524print
'<tr class="oddeven"><td colspan="2">';
525print $form->textwithpicto($langs->trans(
"FreeLegalTextOnOrders"), $langs->trans(
"AddCRIfTooLong").
'<br><br>'.$htmltext, 1,
'help',
'', 0, 2,
'freetexttooltip').
'<br>';
526$variablename =
'SUPPLIER_ORDER_FREE_TEXT';
528 print
'<textarea name="'.$variablename.
'" class="flat" cols="120">'.
getDolGlobalString($variablename).
'</textarea>';
530 include_once DOL_DOCUMENT_ROOT.
'/core/class/doleditor.class.php';
532 print $doleditor->Create();
534print
'</td><td class="right">';
535print
'<input type="submit" class="button button-edit" value="'.$langs->trans(
"Modify").
'">';
539print
'<tr class="oddeven">';
540print
'<td>'.$langs->trans(
"UseDispatchStatus").
'</td>';
542print
'<td class="center">';
543if (isModEnabled(
'reception')) {
544 print
'<span class="opacitymedium">'.$langs->trans(
"FeatureNotAvailableWithReceptionModule").
'</span>';
546 if ($conf->use_javascript_ajax) {
547 print ajax_constantonoff(
'SUPPLIER_ORDER_USE_DISPATCH_STATUS');
549 $arrval = array(
'0' => $langs->trans(
"No"),
'1' => $langs->trans(
"Yes"));
550 print $form->selectarray(
"SUPPLIER_ORDER_USE_DISPATCH_STATUS", $arrval, $conf->global->SUPPLIER_ORDER_USE_DISPATCH_STATUS);
558print
'<tr class="oddeven"><td>'.$langs->trans(
"SupplierOrderClassifyBilledWithoutInvoice").
' ' ;
559print $form->textwithpicto(
'', $langs->trans(
"SupplierOrderClassifyBilledWithoutInvoiceHelp"), 1,
'help') .
'</td>';
560print
'<td class="left" colspan="2">';
561print ajax_constantonoff(
'SUPPLIER_ORDER_DISABLE_CLASSIFY_BILLED_FROM_SUPPLIER_ORDER');
564print
'</table></div><br>';
575print
'<div class="div-table-responsive-no-min">';
576print
'<table class="noborder centpercent">';
577print
'<tr class="liste_titre">';
578print
'<td>'.$langs->trans(
"Parameter").
'</td>';
579print
'<td align="center" width="60"></td>';
580print
'<td width="80"> </td>';
583print
'<tr class="oddeven"><td colspan="2">';
584print $langs->trans(
"YouMayFindNotificationsFeaturesIntoModuleNotification").
'<br>';
585print
'</td><td class="right">';
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 predefined suppliers products.
Class to manage a WYSIWYG editor.
Class to manage suppliers.
Class to manage third parties objects (customers, suppliers, prospects...)
Description and activation class for module Fournisseur.
supplierorder_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)
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.
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
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.