Merge branch 'develop' of git@github.com:Dolibarr/dolibarr.git into develop
This commit is contained in:
commit
859c6cee97
@ -178,7 +178,7 @@ if ($conf->global->ADHERENT_USE_MAILMAN)
|
|||||||
'ADHERENT_MAILMAN_LISTS'
|
'ADHERENT_MAILMAN_LISTS'
|
||||||
);
|
);
|
||||||
|
|
||||||
print_fiche_titre("Mailman mailing list system",$lien,'');
|
print_fiche_titre($langs->trans('MailmanTitle'), $lien,'');
|
||||||
|
|
||||||
// JQuery activity
|
// JQuery activity
|
||||||
print '<script type="text/javascript">
|
print '<script type="text/javascript">
|
||||||
@ -209,7 +209,7 @@ else
|
|||||||
//$lien.=img_$langs->trans("Activate")
|
//$lien.=img_$langs->trans("Activate")
|
||||||
$lien.=img_picto($langs->trans("Disabled"),'switch_off');
|
$lien.=img_picto($langs->trans("Disabled"),'switch_off');
|
||||||
$lien.='</a>';
|
$lien.='</a>';
|
||||||
print_fiche_titre("Mailman mailing list system",$lien,'');
|
print_fiche_titre($langs->trans('MailmanTitle'), $lien,'');
|
||||||
}
|
}
|
||||||
|
|
||||||
dol_fiche_end();
|
dol_fiche_end();
|
||||||
|
|||||||
@ -102,6 +102,9 @@ print "<br>\n";
|
|||||||
|
|
||||||
if ($action == 'edit') // Edit
|
if ($action == 'edit') // Edit
|
||||||
{
|
{
|
||||||
|
//WYSIWYG Editor
|
||||||
|
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||||
|
|
||||||
print '<form method="post" action="'.$_SERVER["PHP_SELF"].'">';
|
print '<form method="post" action="'.$_SERVER["PHP_SELF"].'">';
|
||||||
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
||||||
print '<input type="hidden" name="action" value="update">';
|
print '<input type="hidden" name="action" value="update">';
|
||||||
@ -133,12 +136,10 @@ if ($action == 'edit') // Edit
|
|||||||
|
|
||||||
print '</table><br>'."\n";
|
print '</table><br>'."\n";
|
||||||
|
|
||||||
|
|
||||||
// Themes
|
// Themes
|
||||||
show_theme('',1);
|
show_theme('',1);
|
||||||
print '<br>';
|
print '<br>';
|
||||||
|
|
||||||
|
|
||||||
// Liste des zone de recherche permanantes supportees
|
// Liste des zone de recherche permanantes supportees
|
||||||
print '<table summary="search" class="noborder" width="100%">';
|
print '<table summary="search" class="noborder" width="100%">';
|
||||||
print '<tr class="liste_titre"><td width="35%">'.$langs->trans("PermanentLeftSearchForm").'</td><td colspan="2">'.$langs->trans("Activated").'</td></tr>';
|
print '<tr class="liste_titre"><td width="35%">'.$langs->trans("PermanentLeftSearchForm").'</td><td colspan="2">'.$langs->trans("Activated").'</td></tr>';
|
||||||
@ -236,18 +237,19 @@ if ($action == 'edit') // Edit
|
|||||||
// Message on login page
|
// Message on login page
|
||||||
$var=!$var;
|
$var=!$var;
|
||||||
print '<tr '.$bc[$var].'><td width="35%">'.$langs->trans("MessageLogin").'</td><td colspan="2">';
|
print '<tr '.$bc[$var].'><td width="35%">'.$langs->trans("MessageLogin").'</td><td colspan="2">';
|
||||||
// Editeur wysiwyg
|
|
||||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
|
||||||
$doleditor = new DolEditor('main_home', (isset($conf->global->MAIN_HOME)?$conf->global->MAIN_HOME:''), '', 142, 'dolibarr_notes', 'In', false, true, true, ROWS_4, 90);
|
$doleditor = new DolEditor('main_home', (isset($conf->global->MAIN_HOME)?$conf->global->MAIN_HOME:''), '', 142, 'dolibarr_notes', 'In', false, true, true, ROWS_4, 90);
|
||||||
$doleditor->Create();
|
$doleditor->Create();
|
||||||
|
|
||||||
print '</td></tr>'."\n";
|
print '</td></tr>'."\n";
|
||||||
|
|
||||||
// Message of the day on home page
|
// Message of the day on home page
|
||||||
$var=!$var;
|
$var=!$var;
|
||||||
print '<tr '.$bc[$var].'><td width="35%">'.$langs->trans("MessageOfDay").'</td><td colspan="2">';
|
print '<tr '.$bc[$var].'><td width="35%">'.$langs->trans("MessageOfDay").'</td><td colspan="2">';
|
||||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
|
||||||
$doleditor = new DolEditor('main_motd', (isset($conf->global->MAIN_MOTD)?$conf->global->MAIN_MOTD:''), '', 142, 'dolibarr_notes', 'In', false, true, true, ROWS_4, 90);
|
$doleditor = new DolEditor('main_motd', (isset($conf->global->MAIN_MOTD)?$conf->global->MAIN_MOTD:''), '', 142, 'dolibarr_notes', 'In', false, true, true, ROWS_4, 90);
|
||||||
$doleditor->Create();
|
$doleditor->Create();
|
||||||
|
|
||||||
print '</td></tr>'."\n";
|
print '</td></tr>'."\n";
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|||||||
@ -75,7 +75,7 @@ print "<br>\n";
|
|||||||
|
|
||||||
// Php
|
// Php
|
||||||
print '<table class="noborder" width="100%">';
|
print '<table class="noborder" width="100%">';
|
||||||
print "<tr class=\"liste_titre\"><td colspan=\"2\">".$langs->trans("Php")."</td></tr>\n";
|
print "<tr class=\"liste_titre\"><td colspan=\"2\">".$langs->trans("PHP")."</td></tr>\n";
|
||||||
$phpversion=version_php();
|
$phpversion=version_php();
|
||||||
print "<tr $bc[0]><td width=\"280\">".$langs->trans("Version")."</td><td>".$phpversion."</td></tr>\n";
|
print "<tr $bc[0]><td width=\"280\">".$langs->trans("Version")."</td><td>".$phpversion."</td></tr>\n";
|
||||||
print "<tr $bc[1]><td>".$langs->trans("PhpWebLink")."</td><td>".php_sapi_name()."</td></tr>\n";
|
print "<tr $bc[1]><td>".$langs->trans("PhpWebLink")."</td><td>".php_sapi_name()."</td></tr>\n";
|
||||||
|
|||||||
@ -223,7 +223,7 @@ if ($socid)
|
|||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($conf->global->MAIN_MODULE_BARCODE)
|
if (! empty($conf->global->MAIN_MODULE_BARCODE))
|
||||||
{
|
{
|
||||||
print '<tr><td>'.$langs->trans('Gencod').'</td><td colspan="3">'.$soc->barcode.'</td></tr>';
|
print '<tr><td>'.$langs->trans('Gencod').'</td><td colspan="3">'.$soc->barcode.'</td></tr>';
|
||||||
}
|
}
|
||||||
|
|||||||
@ -34,6 +34,12 @@ $type=GETPOST('type');
|
|||||||
$action=GETPOST('action');
|
$action=GETPOST('action');
|
||||||
$confirm=GETPOST('confirm');
|
$confirm=GETPOST('confirm');
|
||||||
|
|
||||||
|
$socid=GETPOST('socid','int');
|
||||||
|
$nom=GETPOST('nom');
|
||||||
|
$description=GETPOST('description');
|
||||||
|
$visible=GETPOST('visible');
|
||||||
|
$catMere=GETPOST('catMere');
|
||||||
|
|
||||||
if ($id == "")
|
if ($id == "")
|
||||||
{
|
{
|
||||||
dol_print_error('','Missing parameter id');
|
dol_print_error('','Missing parameter id');
|
||||||
@ -55,13 +61,13 @@ if ($action == 'update' && $user->rights->categorie->creer)
|
|||||||
$categorie = new Categorie($db);
|
$categorie = new Categorie($db);
|
||||||
$result=$categorie->fetch($id);
|
$result=$categorie->fetch($id);
|
||||||
|
|
||||||
$categorie->label = $_POST["nom"];
|
$categorie->label = $nom;
|
||||||
$categorie->description = $_POST["description"];
|
$categorie->description = $description;
|
||||||
$categorie->socid = ($_POST["socid"] ? $_POST["socid"] : 'null');
|
$categorie->socid = ($socid ? $socid : 'null');
|
||||||
$categorie->visible = $_POST["visible"];
|
$categorie->visible = $visible;
|
||||||
|
|
||||||
if($_POST['catMere'] != "-1")
|
if ($catMere != "-1")
|
||||||
$categorie->id_mere = $_POST['catMere'];
|
$categorie->id_mere = $catMere;
|
||||||
else
|
else
|
||||||
$categorie->id_mere = "";
|
$categorie->id_mere = "";
|
||||||
|
|
||||||
@ -76,7 +82,7 @@ if ($action == 'update' && $user->rights->categorie->creer)
|
|||||||
$_GET["action"] = 'create';
|
$_GET["action"] = 'create';
|
||||||
$mesg = $langs->trans("ErrorFieldRequired",$langs->transnoentities("Description"));
|
$mesg = $langs->trans("ErrorFieldRequired",$langs->transnoentities("Description"));
|
||||||
}
|
}
|
||||||
if (! $categorie->error)
|
if (empty($categorie->error))
|
||||||
{
|
{
|
||||||
if ($categorie->update($user) > 0)
|
if ($categorie->update($user) > 0)
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
/* Copyright (C) 2005 Matthieu Valleton <mv@seeschloss.org>
|
/* Copyright (C) 2005 Matthieu Valleton <mv@seeschloss.org>
|
||||||
* Copyright (C) 2006-2011 Laurent Destailleur <eldy@users.sourceforge.net>
|
* Copyright (C) 2006-2011 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||||
* Copyright (C) 2005-2011 Regis Houssin <regis@dolibarr.fr>
|
* Copyright (C) 2005-2012 Regis Houssin <regis@dolibarr.fr>
|
||||||
* Copyright (C) 2007 Patrick Raguin <patrick.raguin@gmail.com>
|
* Copyright (C) 2007 Patrick Raguin <patrick.raguin@gmail.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
@ -41,6 +41,12 @@ $catorigin = GETPOST('catorigin','int');
|
|||||||
$type = GETPOST('type','alpha');
|
$type = GETPOST('type','alpha');
|
||||||
$urlfrom = GETPOST('urlfrom','alpha');
|
$urlfrom = GETPOST('urlfrom','alpha');
|
||||||
|
|
||||||
|
$socid=GETPOST('socid','int');
|
||||||
|
$nom=GETPOST('nom');
|
||||||
|
$description=GETPOST('description');
|
||||||
|
$visible=GETPOST('visible');
|
||||||
|
$catMere=GETPOST('catMere');
|
||||||
|
|
||||||
if ($origin)
|
if ($origin)
|
||||||
{
|
{
|
||||||
if ($type == 0) $idProdOrigin = $origin;
|
if ($type == 0) $idProdOrigin = $origin;
|
||||||
@ -101,22 +107,23 @@ if ($action == 'add' && $user->rights->categorie->creer)
|
|||||||
|
|
||||||
$object = new Categorie($db);
|
$object = new Categorie($db);
|
||||||
|
|
||||||
$object->label = $_POST["nom"];
|
$object->label = $nom;
|
||||||
$object->description = $_POST["description"];
|
$object->description = $description;
|
||||||
$object->socid = ($_POST["socid"] ? $_POST["socid"] : 'null');
|
$object->socid = ($socid ? $socid : 'null');
|
||||||
$object->visible = $_POST["visible"];
|
$object->visible = $visible;
|
||||||
$object->type = $type;
|
$object->type = $type;
|
||||||
|
|
||||||
if($_POST['catMere'] != "-1") $object->id_mere = $_POST['catMere'];
|
if ($catMere != "-1") $object->id_mere = $catMere;
|
||||||
|
|
||||||
if (! $object->label)
|
if (! $object->label)
|
||||||
{
|
{
|
||||||
$object->error = $langs->trans("ErrorFieldRequired",$langs->transnoentities("Ref"));
|
$error++;
|
||||||
$_GET["action"] = 'create';
|
$errors[] = $langs->trans("ErrorFieldRequired",$langs->transnoentities("Ref"));
|
||||||
|
$action = 'create';
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create category in database
|
// Create category in database
|
||||||
if (! $object->error)
|
if (! $error)
|
||||||
{
|
{
|
||||||
$result = $object->create();
|
$result = $object->create();
|
||||||
if ($result > 0)
|
if ($result > 0)
|
||||||
@ -197,19 +204,19 @@ if ($user->rights->categorie->creer)
|
|||||||
|
|
||||||
print_fiche_titre($langs->trans("CreateCat"));
|
print_fiche_titre($langs->trans("CreateCat"));
|
||||||
|
|
||||||
dol_htmloutput_errors($object->error);
|
dol_htmloutput_errors('',$errors);
|
||||||
|
|
||||||
print '<table width="100%" class="border">';
|
print '<table width="100%" class="border">';
|
||||||
|
|
||||||
// Ref
|
// Ref
|
||||||
print '<tr>';
|
print '<tr>';
|
||||||
print '<td width="25%" class="fieldrequired">'.$langs->trans("Ref").'</td><td><input name="nom" size="25" value="'.$object->label.'">';
|
print '<td width="25%" class="fieldrequired">'.$langs->trans("Ref").'</td><td><input name="nom" size="25" value="'.$nom.'">';
|
||||||
print'</td></tr>';
|
print'</td></tr>';
|
||||||
|
|
||||||
// Description
|
// Description
|
||||||
print '<tr><td valign="top">'.$langs->trans("Description").'</td><td>';
|
print '<tr><td valign="top">'.$langs->trans("Description").'</td><td>';
|
||||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||||
$doleditor=new DolEditor('description',$object->description,'',200,'dolibarr_notes','',false,true,$conf->global->FCKEDITOR_ENABLE_PRODUCTDESC,ROWS_6,50);
|
$doleditor=new DolEditor('description',$description,'',200,'dolibarr_notes','',false,true,$conf->global->FCKEDITOR_ENABLE_PRODUCTDESC,ROWS_6,50);
|
||||||
$doleditor->Create();
|
$doleditor->Create();
|
||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
|
|
||||||
|
|||||||
@ -35,6 +35,8 @@ if (! $user->rights->categorie->lire) accessforbidden();
|
|||||||
|
|
||||||
$id=GETPOST('id','int');
|
$id=GETPOST('id','int');
|
||||||
$type=(GETPOST('type') ? GETPOST('type') : 0);
|
$type=(GETPOST('type') ? GETPOST('type') : 0);
|
||||||
|
$catname=GETPOST('catname','alpha');
|
||||||
|
$section=(GETPOST('section')?GETPOST('section'):0);
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -70,7 +72,7 @@ print '<tr class="liste_titre">';
|
|||||||
print '<td colspan="3">'.$langs->trans("Search").'</td>';
|
print '<td colspan="3">'.$langs->trans("Search").'</td>';
|
||||||
print '</tr>';
|
print '</tr>';
|
||||||
print '<tr '.$bc[0].'><td>';
|
print '<tr '.$bc[0].'><td>';
|
||||||
print $langs->trans("Name").':</td><td><input class="flat" type="text" size="20" name="catname" value="' . $_POST['catname'] . '"/></td><td><input type="submit" class="button" value="'.$langs->trans("Search").'"></td></tr>';
|
print $langs->trans("Name").':</td><td><input class="flat" type="text" size="20" name="catname" value="' . $catname . '"/></td><td><input type="submit" class="button" value="'.$langs->trans("Search").'"></td></tr>';
|
||||||
/*
|
/*
|
||||||
// faire une rech dans une sous categorie uniquement
|
// faire une rech dans une sous categorie uniquement
|
||||||
print '<tr '.$bc[0].'><td>';
|
print '<tr '.$bc[0].'><td>';
|
||||||
@ -89,9 +91,9 @@ print '</td><td valign="top" width="70%">';
|
|||||||
/*
|
/*
|
||||||
* Categories found
|
* Categories found
|
||||||
*/
|
*/
|
||||||
if($_POST['catname'] || $id > 0)
|
if ($catname || $id > 0)
|
||||||
{
|
{
|
||||||
$cats = $categstatic->rechercher($id,$_POST['catname'],$type);
|
$cats = $categstatic->rechercher($id,$catname,$type);
|
||||||
|
|
||||||
print '<table class="noborder" width="100%">';
|
print '<table class="noborder" width="100%">';
|
||||||
print '<tr class="liste_titre"><td colspan="2">'.$langs->trans("FoundCats").'</td></tr>';
|
print '<tr class="liste_titre"><td colspan="2">'.$langs->trans("FoundCats").'</td></tr>';
|
||||||
@ -126,17 +128,10 @@ $cate_arbo = $categstatic->get_full_arbo($type);
|
|||||||
// Define fulltree array
|
// Define fulltree array
|
||||||
$fulltree=$cate_arbo;
|
$fulltree=$cate_arbo;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
print '<table class="liste" width="100%">';
|
print '<table class="liste" width="100%">';
|
||||||
print '<tr class="liste_titre"><td>'.$langs->trans("Categories").'</td><td colspan="3">'.$langs->trans("Description").'</td></tr>';
|
print '<tr class="liste_titre"><td>'.$langs->trans("Categories").'</td><td colspan="3">'.$langs->trans("Description").'</td></tr>';
|
||||||
|
|
||||||
|
|
||||||
$section=isset($_GET["section"])?$_GET["section"]:$_POST['section'];
|
|
||||||
if (! $section) $section=0;
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// ----- This section will show a tree from a fulltree array -----
|
// ----- This section will show a tree from a fulltree array -----
|
||||||
// $section must also be defined
|
// $section must also be defined
|
||||||
// ---------------------------------------------------------------
|
// ---------------------------------------------------------------
|
||||||
@ -212,9 +207,10 @@ foreach($fulltree as $key => $val)
|
|||||||
$showline=0;
|
$showline=0;
|
||||||
|
|
||||||
// If directory is son of expanded directory, we show line
|
// If directory is son of expanded directory, we show line
|
||||||
if (in_array($val['id_mere'],$expandedsectionarray)) $showline=4;
|
if (isset($val['id_mere']) && in_array($val['id_mere'],$expandedsectionarray)) $showline=4;
|
||||||
// If directory is brother of selected directory, we show line
|
// If directory is brother of selected directory, we show line
|
||||||
elseif ($val['id'] != $section && $val['id_mere'] == $ecmdirstatic->motherof[$section]) $showline=3;
|
// FIXME $ecmdirstatic not exist or not instantiate ?
|
||||||
|
//elseif (isset($val['id_mere']) && $val['id'] != $section && $val['id_mere'] == $ecmdirstatic->motherof[$section]) $showline=3;
|
||||||
// If directory is parent of selected directory or is selected directory, we show line
|
// If directory is parent of selected directory or is selected directory, we show line
|
||||||
elseif (preg_match('/'.$val['fullpath'].'_/i',$fullpathselected.'_')) $showline=2;
|
elseif (preg_match('/'.$val['fullpath'].'_/i',$fullpathselected.'_')) $showline=2;
|
||||||
// If we are level one we show line
|
// If we are level one we show line
|
||||||
@ -243,7 +239,9 @@ foreach($fulltree as $key => $val)
|
|||||||
print '<td valign="top">';
|
print '<td valign="top">';
|
||||||
//print $val['fullpath']."(".$showline.")";
|
//print $val['fullpath']."(".$showline.")";
|
||||||
$n='2';
|
$n='2';
|
||||||
if ($b == 0 || ! in_array($val['id'],$expandedsectionarray)) $n='3';
|
// FIXME $b not define ?
|
||||||
|
//if ($b == 0 || ! in_array($val['id'],$expandedsectionarray)) $n='3';
|
||||||
|
if (! in_array($val['id'],$expandedsectionarray)) $n='3';
|
||||||
if (! in_array($val['id'],$expandedsectionarray)) $ref=img_picto('',DOL_URL_ROOT.'/theme/common/treemenu/plustop'.$n.'.gif','',1);
|
if (! in_array($val['id'],$expandedsectionarray)) $ref=img_picto('',DOL_URL_ROOT.'/theme/common/treemenu/plustop'.$n.'.gif','',1);
|
||||||
else $ref=img_picto('',DOL_URL_ROOT.'/theme/common/treemenu/minustop'.$n.'.gif','',1);
|
else $ref=img_picto('',DOL_URL_ROOT.'/theme/common/treemenu/minustop'.$n.'.gif','',1);
|
||||||
if ($option == 'indexexpanded') $lien = '<a href="'.$_SERVER["PHP_SELF"].'?section='.$val['id'].'&type='.$type.'&sectionexpand=false">';
|
if ($option == 'indexexpanded') $lien = '<a href="'.$_SERVER["PHP_SELF"].'?section='.$val['id'].'&type='.$type.'&sectionexpand=false">';
|
||||||
|
|||||||
@ -63,7 +63,7 @@ if ($id > 0)
|
|||||||
* Actions
|
* Actions
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if ($_FILES['userfile']['size'] > 0 && $_POST["sendit"] && ! empty($conf->global->MAIN_UPLOAD_DOC))
|
if (isset($_FILES['userfile']) && $_FILES['userfile']['size'] > 0 && $_POST["sendit"] && ! empty($conf->global->MAIN_UPLOAD_DOC))
|
||||||
{
|
{
|
||||||
if ($object->id) $result = $object->add_photo($upload_dir, $_FILES['userfile']);
|
if ($object->id) $result = $object->add_photo($upload_dir, $_FILES['userfile']);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -173,7 +173,6 @@ else
|
|||||||
$var=true;
|
$var=true;
|
||||||
foreach ($cats as $cat)
|
foreach ($cats as $cat)
|
||||||
{
|
{
|
||||||
$i++;
|
|
||||||
$var=!$var;
|
$var=!$var;
|
||||||
print "\t<tr ".$bc[$var].">\n";
|
print "\t<tr ".$bc[$var].">\n";
|
||||||
print "\t\t<td nowrap=\"nowrap\">";
|
print "\t\t<td nowrap=\"nowrap\">";
|
||||||
@ -219,11 +218,9 @@ if ($object->type == 0)
|
|||||||
|
|
||||||
if (count($prods) > 0)
|
if (count($prods) > 0)
|
||||||
{
|
{
|
||||||
$i = 0;
|
|
||||||
$var=true;
|
$var=true;
|
||||||
foreach ($prods as $prod)
|
foreach ($prods as $prod)
|
||||||
{
|
{
|
||||||
$i++;
|
|
||||||
$var=!$var;
|
$var=!$var;
|
||||||
print "\t<tr ".$bc[$var].">\n";
|
print "\t<tr ".$bc[$var].">\n";
|
||||||
print '<td nowrap="nowrap" valign="top">';
|
print '<td nowrap="nowrap" valign="top">';
|
||||||
@ -257,11 +254,9 @@ if ($object->type == 1)
|
|||||||
|
|
||||||
if (count($socs) > 0)
|
if (count($socs) > 0)
|
||||||
{
|
{
|
||||||
$i = 0;
|
|
||||||
$var=true;
|
$var=true;
|
||||||
foreach ($socs as $soc)
|
foreach ($socs as $soc)
|
||||||
{
|
{
|
||||||
$i++;
|
|
||||||
$var=!$var;
|
$var=!$var;
|
||||||
print "\t<tr ".$bc[$var].">\n";
|
print "\t<tr ".$bc[$var].">\n";
|
||||||
|
|
||||||
@ -335,11 +330,9 @@ if ($object->type == 3)
|
|||||||
|
|
||||||
if (count($prods) > 0)
|
if (count($prods) > 0)
|
||||||
{
|
{
|
||||||
$i = 0;
|
|
||||||
$var=true;
|
$var=true;
|
||||||
foreach ($prods as $key => $member)
|
foreach ($prods as $key => $member)
|
||||||
{
|
{
|
||||||
$i++;
|
|
||||||
$var=!$var;
|
$var=!$var;
|
||||||
print "\t<tr ".$bc[$var].">\n";
|
print "\t<tr ".$bc[$var].">\n";
|
||||||
print '<td nowrap="nowrap" valign="top">';
|
print '<td nowrap="nowrap" valign="top">';
|
||||||
|
|||||||
@ -1280,6 +1280,9 @@ if ($action == 'send' && ! GETPOST('addfile') && ! GETPOST('removedfile') && ! G
|
|||||||
*********************************************************************/
|
*********************************************************************/
|
||||||
if ($action == 'create' && $user->rights->commande->creer)
|
if ($action == 'create' && $user->rights->commande->creer)
|
||||||
{
|
{
|
||||||
|
//WYSIWYG Editor
|
||||||
|
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||||
|
|
||||||
print_fiche_titre($langs->trans('CreateOrder'));
|
print_fiche_titre($langs->trans('CreateOrder'));
|
||||||
|
|
||||||
dol_htmloutput_mesg($mesg,$mesgs,'error');
|
dol_htmloutput_mesg($mesg,$mesgs,'error');
|
||||||
@ -1477,7 +1480,7 @@ if ($action == 'send' && ! GETPOST('addfile') && ! GETPOST('removedfile') && ! G
|
|||||||
print '<tr>';
|
print '<tr>';
|
||||||
print '<td class="border" valign="top">'.$langs->trans('NotePublic').'</td>';
|
print '<td class="border" valign="top">'.$langs->trans('NotePublic').'</td>';
|
||||||
print '<td valign="top" colspan="2">';
|
print '<td valign="top" colspan="2">';
|
||||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
|
||||||
$doleditor = new DolEditor('note_public', $note_public, '', 80, 'dolibarr_notes', 'In', 0, false, true, ROWS_3, 70);
|
$doleditor = new DolEditor('note_public', $note_public, '', 80, 'dolibarr_notes', 'In', 0, false, true, ROWS_3, 70);
|
||||||
print $doleditor->Create(1);
|
print $doleditor->Create(1);
|
||||||
//print '<textarea name="note_public" wrap="soft" cols="70" rows="'.ROWS_3.'">'.$note_public.'</textarea>';
|
//print '<textarea name="note_public" wrap="soft" cols="70" rows="'.ROWS_3.'">'.$note_public.'</textarea>';
|
||||||
@ -1489,7 +1492,7 @@ if ($action == 'send' && ! GETPOST('addfile') && ! GETPOST('removedfile') && ! G
|
|||||||
print '<tr>';
|
print '<tr>';
|
||||||
print '<td class="border" valign="top">'.$langs->trans('NotePrivate').'</td>';
|
print '<td class="border" valign="top">'.$langs->trans('NotePrivate').'</td>';
|
||||||
print '<td valign="top" colspan="2">';
|
print '<td valign="top" colspan="2">';
|
||||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
|
||||||
$doleditor=new DolEditor('note', $note_private, '', 80, 'dolibarr_notes', 'In', 0, false, true, ROWS_3, 70);
|
$doleditor=new DolEditor('note', $note_private, '', 80, 'dolibarr_notes', 'In', 0, false, true, ROWS_3, 70);
|
||||||
print $doleditor->Create(1);
|
print $doleditor->Create(1);
|
||||||
//print '<textarea name="note" wrap="soft" cols="70" rows="'.ROWS_3.'">'.$note_private.'</textarea>';
|
//print '<textarea name="note" wrap="soft" cols="70" rows="'.ROWS_3.'">'.$note_private.'</textarea>';
|
||||||
|
|||||||
@ -255,6 +255,9 @@ $form = new Form($db);
|
|||||||
*/
|
*/
|
||||||
if ($action == 'create')
|
if ($action == 'create')
|
||||||
{
|
{
|
||||||
|
//WYSIWYG Editor
|
||||||
|
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||||
|
|
||||||
print_fiche_titre($langs->trans("NewTrip"));
|
print_fiche_titre($langs->trans("NewTrip"));
|
||||||
|
|
||||||
dol_htmloutput_errors($mesg);
|
dol_htmloutput_errors($mesg);
|
||||||
@ -295,9 +298,10 @@ if ($action == 'create')
|
|||||||
print '<tr>';
|
print '<tr>';
|
||||||
print '<td class="border" valign="top">'.$langs->trans('NotePublic').'</td>';
|
print '<td class="border" valign="top">'.$langs->trans('NotePublic').'</td>';
|
||||||
print '<td valign="top" colspan="2">';
|
print '<td valign="top" colspan="2">';
|
||||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
|
||||||
$doleditor = new DolEditor('note_public', GETPOST('note_public', 'alpha'), 600, 200, 'dolibarr_notes', 'In', false, true, true, ROWS_8, 100);
|
$doleditor = new DolEditor('note_public', GETPOST('note_public', 'alpha'), 600, 200, 'dolibarr_notes', 'In', false, true, true, ROWS_8, 100);
|
||||||
print $doleditor->Create(1);
|
print $doleditor->Create(1);
|
||||||
|
|
||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
|
|
||||||
// Private note
|
// Private note
|
||||||
@ -306,9 +310,10 @@ if ($action == 'create')
|
|||||||
print '<tr>';
|
print '<tr>';
|
||||||
print '<td class="border" valign="top">'.$langs->trans('NotePrivate').'</td>';
|
print '<td class="border" valign="top">'.$langs->trans('NotePrivate').'</td>';
|
||||||
print '<td valign="top" colspan="2">';
|
print '<td valign="top" colspan="2">';
|
||||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
|
||||||
$doleditor = new DolEditor('note_private', GETPOST('note_private', 'alpha'), 600, 200, 'dolibarr_notes', 'In', false, true, true, ROWS_8, 100);
|
$doleditor = new DolEditor('note_private', GETPOST('note_private', 'alpha'), 600, 200, 'dolibarr_notes', 'In', false, true, true, ROWS_8, 100);
|
||||||
print $doleditor->Create(1);
|
print $doleditor->Create(1);
|
||||||
|
|
||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -332,6 +337,9 @@ else if ($id)
|
|||||||
|
|
||||||
if ($action == 'edit' && $user->rights->deplacement->creer)
|
if ($action == 'edit' && $user->rights->deplacement->creer)
|
||||||
{
|
{
|
||||||
|
//WYSIWYG Editor
|
||||||
|
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||||
|
|
||||||
$soc = new Societe($db);
|
$soc = new Societe($db);
|
||||||
if ($object->socid)
|
if ($object->socid)
|
||||||
{
|
{
|
||||||
@ -382,9 +390,10 @@ else if ($id)
|
|||||||
// Public note
|
// Public note
|
||||||
print '<tr><td valign="top">'.$langs->trans("NotePublic").'</td>';
|
print '<tr><td valign="top">'.$langs->trans("NotePublic").'</td>';
|
||||||
print '<td valign="top" colspan="3">';
|
print '<td valign="top" colspan="3">';
|
||||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
|
||||||
$doleditor = new DolEditor('note_public', $object->note_public, 600, 200, 'dolibarr_notes', 'In', false, true, true, ROWS_8, '100');
|
$doleditor = new DolEditor('note_public', $object->note_public, 600, 200, 'dolibarr_notes', 'In', false, true, true, ROWS_8, '100');
|
||||||
print $doleditor->Create(1);
|
print $doleditor->Create(1);
|
||||||
|
|
||||||
print "</td></tr>";
|
print "</td></tr>";
|
||||||
|
|
||||||
// Private note
|
// Private note
|
||||||
@ -392,9 +401,10 @@ else if ($id)
|
|||||||
{
|
{
|
||||||
print '<tr><td valign="top">'.$langs->trans("NotePrivate").'</td>';
|
print '<tr><td valign="top">'.$langs->trans("NotePrivate").'</td>';
|
||||||
print '<td valign="top" colspan="3">';
|
print '<td valign="top" colspan="3">';
|
||||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
|
||||||
$doleditor = new DolEditor('note_private', $object->note_private, 600, 200, 'dolibarr_notes', 'In', false, true, true, ROWS_8, '100');
|
$doleditor = new DolEditor('note_private', $object->note_private, 600, 200, 'dolibarr_notes', 'In', false, true, true, ROWS_8, '100');
|
||||||
print $doleditor->Create(1);
|
print $doleditor->Create(1);
|
||||||
|
|
||||||
print "</td></tr>";
|
print "</td></tr>";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -1091,9 +1091,9 @@ function dol_set_user_param($db, $conf, &$user, $tab)
|
|||||||
{
|
{
|
||||||
$sql = "INSERT INTO ".MAIN_DB_PREFIX."user_param(fk_user,entity,param,value)";
|
$sql = "INSERT INTO ".MAIN_DB_PREFIX."user_param(fk_user,entity,param,value)";
|
||||||
$sql.= " VALUES (".$user->id.",".$conf->entity.",";
|
$sql.= " VALUES (".$user->id.",".$conf->entity.",";
|
||||||
$sql.= " '".$key."','".$db->escape($value)."');";
|
$sql.= " '".$key."','".$db->escape($value)."')";
|
||||||
dol_syslog("functions2.lib::dol_set_user_param sql=".$sql, LOG_DEBUG);
|
|
||||||
|
|
||||||
|
dol_syslog("functions2.lib::dol_set_user_param sql=".$sql, LOG_DEBUG);
|
||||||
$result=$db->query($sql);
|
$result=$db->query($sql);
|
||||||
if (! $result)
|
if (! $result)
|
||||||
{
|
{
|
||||||
|
|||||||
@ -40,7 +40,7 @@ function mailmanspip_admin_prepare_head($object)
|
|||||||
$h++;
|
$h++;
|
||||||
|
|
||||||
$head[$h][0] = DOL_URL_ROOT.'/adherents/admin/spip.php';
|
$head[$h][0] = DOL_URL_ROOT.'/adherents/admin/spip.php';
|
||||||
$head[$h][1] = $langs->trans("Spip");
|
$head[$h][1] = $langs->trans("SPIP");
|
||||||
$head[$h][2] = 'spip';
|
$head[$h][2] = 'spip';
|
||||||
$h++;
|
$h++;
|
||||||
|
|
||||||
|
|||||||
@ -43,14 +43,14 @@ function calcul_price_total($qty, $pu, $remise_percent_ligne, $txtva, $txlocalta
|
|||||||
|
|
||||||
$result=array();
|
$result=array();
|
||||||
|
|
||||||
//dol_syslog("price.lib::calcul_price_total $qty, $pu, $remise_percent_ligne, $txtva, $price_base_type $info_bits");
|
|
||||||
if ($price_base_type == 'HT')
|
|
||||||
{
|
|
||||||
// We work to define prices using the price without tax
|
// We work to define prices using the price without tax
|
||||||
$tot_sans_remise = $pu * $qty;
|
$tot_sans_remise = $pu * $qty;
|
||||||
$tot_avec_remise_ligne = $tot_sans_remise * (1 - ($remise_percent_ligne / 100));
|
$tot_avec_remise_ligne = $tot_sans_remise * (1 - ($remise_percent_ligne / 100));
|
||||||
$tot_avec_remise = $tot_avec_remise_ligne * (1 - ($remise_percent_global / 100));
|
$tot_avec_remise = $tot_avec_remise_ligne * (1 - ($remise_percent_global / 100));
|
||||||
|
|
||||||
|
//dol_syslog("price.lib::calcul_price_total $qty, $pu, $remise_percent_ligne, $txtva, $price_base_type $info_bits");
|
||||||
|
if ($price_base_type == 'HT')
|
||||||
|
{
|
||||||
$result[6] = price2num($tot_sans_remise, 'MT');
|
$result[6] = price2num($tot_sans_remise, 'MT');
|
||||||
$result[8] = price2num($tot_sans_remise * (1 + ( (($info_bits & 1)?0:$txtva) / 100)), 'MT'); // Selon TVA NPR ou non
|
$result[8] = price2num($tot_sans_remise * (1 + ( (($info_bits & 1)?0:$txtva) / 100)), 'MT'); // Selon TVA NPR ou non
|
||||||
$result8bis= price2num($tot_sans_remise * (1 + ( $txtva / 100)), 'MT'); // Si TVA consideree normale (non NPR)
|
$result8bis= price2num($tot_sans_remise * (1 + ( $txtva / 100)), 'MT'); // Si TVA consideree normale (non NPR)
|
||||||
@ -69,11 +69,6 @@ function calcul_price_total($qty, $pu, $remise_percent_ligne, $txtva, $txlocalta
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// We work to define prices using the price with tax
|
|
||||||
$tot_sans_remise = $pu * $qty;
|
|
||||||
$tot_avec_remise_ligne = $tot_sans_remise * (1 - ($remise_percent_ligne / 100));
|
|
||||||
$tot_avec_remise = $tot_avec_remise_ligne * (1 - ($remise_percent_global / 100));
|
|
||||||
|
|
||||||
$result[8] = price2num($tot_sans_remise, 'MT');
|
$result[8] = price2num($tot_sans_remise, 'MT');
|
||||||
$result[6] = price2num($tot_sans_remise / (1 + ((($info_bits & 1)?0:$txtva) / 100)), 'MT'); // Selon TVA NPR ou non
|
$result[6] = price2num($tot_sans_remise / (1 + ((($info_bits & 1)?0:$txtva) / 100)), 'MT'); // Selon TVA NPR ou non
|
||||||
$result6bis= price2num($tot_sans_remise / (1 + ($txtva / 100)), 'MT'); // Si TVA consideree normale (non NPR)
|
$result6bis= price2num($tot_sans_remise / (1 + ($txtva / 100)), 'MT'); // Si TVA consideree normale (non NPR)
|
||||||
|
|||||||
@ -101,6 +101,7 @@ function tree_showpad(&$fulltree,$key,$silent=0)
|
|||||||
if ($fulltree[$key2]['level'] > $pos)
|
if ($fulltree[$key2]['level'] > $pos)
|
||||||
{
|
{
|
||||||
$nbofdirinsub++;
|
$nbofdirinsub++;
|
||||||
|
if (! empty($fulltree[$key2]['cachenbofdoc']))
|
||||||
$nbofdocinsub+=$fulltree[$key2]['cachenbofdoc'];
|
$nbofdocinsub+=$fulltree[$key2]['cachenbofdoc'];
|
||||||
}
|
}
|
||||||
if ($fulltree[$key2]['level'] == $pos)
|
if ($fulltree[$key2]['level'] == $pos)
|
||||||
|
|||||||
@ -174,12 +174,21 @@ function show_theme($fuser,$edit=0,$foruserprofile=false)
|
|||||||
$thumbsbyrow=6;
|
$thumbsbyrow=6;
|
||||||
print '<table class="noborder" width="100%">';
|
print '<table class="noborder" width="100%">';
|
||||||
|
|
||||||
|
$var=false;
|
||||||
|
|
||||||
// Title
|
// Title
|
||||||
if ($foruserprofile)
|
if ($foruserprofile)
|
||||||
{
|
{
|
||||||
print '<tr class="liste_titre"><th width="25%">'.$langs->trans("Parameter").'</th><th width="25%">'.$langs->trans("DefaultValue").'</th>';
|
print '<tr class="liste_titre"><th width="25%">'.$langs->trans("Parameter").'</th><th width="25%">'.$langs->trans("DefaultValue").'</th>';
|
||||||
print '<th colspan="2"> </th>';
|
print '<th colspan="2"> </th>';
|
||||||
print '</tr>';
|
print '</tr>';
|
||||||
|
|
||||||
|
print '<tr '.$bc[$var].'>';
|
||||||
|
print '<td>'.$langs->trans("DefaultSkin").'</td>';
|
||||||
|
print '<td>'.$conf->global->MAIN_THEME.'</td>';
|
||||||
|
print '<td align="left" nowrap="nowrap" width="20%"><input '.$bc[$var].' name="check_MAIN_THEME"'.($edit?'':' disabled').' type="checkbox" '.($selected_theme?" checked":"").'> '.$langs->trans("UsePersonalValue").'</td>';
|
||||||
|
print '<td> </td>';
|
||||||
|
print '</tr>';
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -192,22 +201,7 @@ function show_theme($fuser,$edit=0,$foruserprofile=false)
|
|||||||
print $langs->trans('DownloadMoreSkins');
|
print $langs->trans('DownloadMoreSkins');
|
||||||
print '</a>';
|
print '</a>';
|
||||||
print '</th></tr>';
|
print '</th></tr>';
|
||||||
}
|
|
||||||
|
|
||||||
$var=false;
|
|
||||||
|
|
||||||
if ($foruserprofile)
|
|
||||||
{
|
|
||||||
print '<tr '.$bc[$var].'>';
|
|
||||||
print '<td>'.$langs->trans("DefaultSkin").'</td>';
|
|
||||||
print '<td>'.$conf->global->MAIN_THEME.'</td>';
|
|
||||||
print '<td align="left" nowrap="nowrap" width="20%"><input '.$bc[$var].' name="check_MAIN_THEME"'.($edit?'':' disabled').' type="checkbox" '.($selected_theme?" checked":"").'> '.$langs->trans("UsePersonalValue").'</td>';
|
|
||||||
print '<td> </td>';
|
|
||||||
print '</tr>';
|
|
||||||
}
|
|
||||||
|
|
||||||
if (! $foruserprofile)
|
|
||||||
{
|
|
||||||
print '<tr '.$bc[$var].'>';
|
print '<tr '.$bc[$var].'>';
|
||||||
print '<td>'.$langs->trans("ThemeDir").'</td>';
|
print '<td>'.$langs->trans("ThemeDir").'</td>';
|
||||||
print '<td>';
|
print '<td>';
|
||||||
|
|||||||
@ -680,7 +680,7 @@ function print_left_eldy_menu($db,$menu_array_before,$menu_array_after)
|
|||||||
$newmenu->add("/admin/limits.php?mainmenu=home", $langs->trans("MenuLimits"),1);
|
$newmenu->add("/admin/limits.php?mainmenu=home", $langs->trans("MenuLimits"),1);
|
||||||
$newmenu->add("/admin/pdf.php?mainmenu=home", $langs->trans("PDF"),1);
|
$newmenu->add("/admin/pdf.php?mainmenu=home", $langs->trans("PDF"),1);
|
||||||
$newmenu->add("/admin/mails.php?mainmenu=home", $langs->trans("Emails"),1);
|
$newmenu->add("/admin/mails.php?mainmenu=home", $langs->trans("Emails"),1);
|
||||||
$newmenu->add("/admin/sms.php?mainmenu=home", $langs->trans("Sms"),1);
|
$newmenu->add("/admin/sms.php?mainmenu=home", $langs->trans("SMS"),1);
|
||||||
$newmenu->add("/admin/dict.php?mainmenu=home", $langs->trans("DictionnarySetup"),1);
|
$newmenu->add("/admin/dict.php?mainmenu=home", $langs->trans("DictionnarySetup"),1);
|
||||||
$newmenu->add("/admin/const.php?mainmenu=home", $langs->trans("OtherSetup"),1);
|
$newmenu->add("/admin/const.php?mainmenu=home", $langs->trans("OtherSetup"),1);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1124,7 +1124,7 @@ else if ($id > 0 || ! empty($ref))
|
|||||||
$now=dol_now();
|
$now=dol_now();
|
||||||
$timearray=dol_getdate($now);
|
$timearray=dol_getdate($now);
|
||||||
if (!GETPOST('diday','int')) $timewithnohour=dol_mktime(0,0,0,$timearray['mon'],$timearray['mday'],$timearray['year']);
|
if (!GETPOST('diday','int')) $timewithnohour=dol_mktime(0,0,0,$timearray['mon'],$timearray['mday'],$timearray['year']);
|
||||||
else $timewithnohour=dol_mktime(GETPOST('dihour','int'),GETPOST('dimin','int'),GETPOST('disec','int'),GETPOST('dimonth','int'),GETPOST('diday','int'),GETPOST('diyear','int'));
|
else $timewithnohour=dol_mktime(GETPOST('dihour','int'),GETPOST('dimin','int'), 0,GETPOST('dimonth','int'),GETPOST('diday','int'),GETPOST('diyear','int'));
|
||||||
$form->select_date($timewithnohour,'di',1,1,0,"addinter");
|
$form->select_date($timewithnohour,'di',1,1,0,"addinter");
|
||||||
print '</td>';
|
print '</td>';
|
||||||
|
|
||||||
|
|||||||
@ -1408,6 +1408,9 @@ if ($id > 0 || ! empty($ref))
|
|||||||
*/
|
*/
|
||||||
if ($object->statut == 0 && $user->rights->fournisseur->commande->creer && $action <> 'editline')
|
if ($object->statut == 0 && $user->rights->fournisseur->commande->creer && $action <> 'editline')
|
||||||
{
|
{
|
||||||
|
//WYSIWYG Editor
|
||||||
|
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||||
|
|
||||||
print '<tr class="liste_titre">';
|
print '<tr class="liste_titre">';
|
||||||
print '<td>';
|
print '<td>';
|
||||||
print '<a name="add"></a>'; // ancre
|
print '<a name="add"></a>'; // ancre
|
||||||
@ -1434,8 +1437,6 @@ if ($id > 0 || ! empty($ref))
|
|||||||
if ($forceall || ($conf->product->enabled && $conf->service->enabled)
|
if ($forceall || ($conf->product->enabled && $conf->service->enabled)
|
||||||
|| (empty($conf->product->enabled) && empty($conf->service->enabled))) print '<br>';
|
|| (empty($conf->product->enabled) && empty($conf->service->enabled))) print '<br>';
|
||||||
|
|
||||||
// Editor wysiwyg
|
|
||||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
|
||||||
$nbrows=ROWS_2;
|
$nbrows=ROWS_2;
|
||||||
if (! empty($conf->global->MAIN_INPUT_DESC_HEIGHT)) $nbrows=$conf->global->MAIN_INPUT_DESC_HEIGHT;
|
if (! empty($conf->global->MAIN_INPUT_DESC_HEIGHT)) $nbrows=$conf->global->MAIN_INPUT_DESC_HEIGHT;
|
||||||
$doleditor = new DolEditor('dp_desc', GETPOST('dp_desc'), '', 100, 'dolibarr_details', '', false, true, $conf->global->FCKEDITOR_ENABLE_DETAILS, $nbrows, 70);
|
$doleditor = new DolEditor('dp_desc', GETPOST('dp_desc'), '', 100, 'dolibarr_details', '', false, true, $conf->global->FCKEDITOR_ENABLE_DETAILS, $nbrows, 70);
|
||||||
@ -1492,8 +1493,6 @@ if ($id > 0 || ! empty($ref))
|
|||||||
echo $hookmanager->executeHooks('formCreateProductSupplierOptions',$parameters,$object,$action);
|
echo $hookmanager->executeHooks('formCreateProductSupplierOptions',$parameters,$object,$action);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Editor wysiwyg
|
|
||||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
|
||||||
$nbrows=ROWS_2;
|
$nbrows=ROWS_2;
|
||||||
if (! empty($conf->global->MAIN_INPUT_DESC_HEIGHT)) $nbrows=$conf->global->MAIN_INPUT_DESC_HEIGHT;
|
if (! empty($conf->global->MAIN_INPUT_DESC_HEIGHT)) $nbrows=$conf->global->MAIN_INPUT_DESC_HEIGHT;
|
||||||
$doleditor = new DolEditor('np_desc', GETPOST('np_desc'), '', 100, 'dolibarr_details', '', false, true, $conf->global->FCKEDITOR_ENABLE_DETAILS, $nbrows, 70);
|
$doleditor = new DolEditor('np_desc', GETPOST('np_desc'), '', 100, 'dolibarr_details', '', false, true, $conf->global->FCKEDITOR_ENABLE_DETAILS, $nbrows, 70);
|
||||||
|
|||||||
@ -573,7 +573,6 @@ Port=الميناء
|
|||||||
VirtualServerName=اسم الخادم الافتراضي
|
VirtualServerName=اسم الخادم الافتراضي
|
||||||
AllParameters=جميع البارامترات
|
AllParameters=جميع البارامترات
|
||||||
OS=نظام التشغيل
|
OS=نظام التشغيل
|
||||||
Php=Php
|
|
||||||
PhpEnv=Env
|
PhpEnv=Env
|
||||||
PhpModules=وحدات
|
PhpModules=وحدات
|
||||||
PhpConf=Conf
|
PhpConf=Conf
|
||||||
|
|||||||
@ -383,8 +383,8 @@ Module85Name=Bancs i caixes
|
|||||||
Module85Desc=Gestió dels comptes financers de tipus comptes bancaris, postals o efectiu
|
Module85Desc=Gestió dels comptes financers de tipus comptes bancaris, postals o efectiu
|
||||||
Module100Name=External site
|
Module100Name=External site
|
||||||
Module100Desc=Inclou qualsevol lloc web extern en els menús de Dolibarr, veient-lo en un frame
|
Module100Desc=Inclou qualsevol lloc web extern en els menús de Dolibarr, veient-lo en un frame
|
||||||
Module105Name=Mailman i Sip
|
Module105Name=Mailman i SPIP
|
||||||
Module105Desc=Interface amb Mailman o Spip per al mòdul Membres
|
Module105Desc=Interface amb Mailman o SPIP per al mòdul Membres
|
||||||
Module200Name=LDAP
|
Module200Name=LDAP
|
||||||
Module200Desc=sincronització amb un anuari LDAP
|
Module200Desc=sincronització amb un anuari LDAP
|
||||||
Module210Name=PostNuke
|
Module210Name=PostNuke
|
||||||
@ -717,7 +717,6 @@ Port=Port
|
|||||||
VirtualServerName=Nom del servidor virtual
|
VirtualServerName=Nom del servidor virtual
|
||||||
AllParameters=Tots els paràmetres
|
AllParameters=Tots els paràmetres
|
||||||
OS=SO
|
OS=SO
|
||||||
Php=Php
|
|
||||||
PhpEnv=Env
|
PhpEnv=Env
|
||||||
PhpModules=Mòduls
|
PhpModules=Mòduls
|
||||||
PhpConf=Conf
|
PhpConf=Conf
|
||||||
@ -1302,7 +1301,7 @@ BankOrderGlobalDesc=Ordre de visualització general
|
|||||||
BankOrderES=Espanyol
|
BankOrderES=Espanyol
|
||||||
BankOrderESDesc=Ordre de visualització espanyol
|
BankOrderESDesc=Ordre de visualització espanyol
|
||||||
##### MailmanSpip #####
|
##### MailmanSpip #####
|
||||||
MailmanSpipSetup=Configuració del mòdul Mailman i Spip
|
MailmanSpipSetup=Configuració del mòdul Mailman i SPIP
|
||||||
##### Multicompany #####
|
##### Multicompany #####
|
||||||
MultiCompanySetup=Configuració del mòdul Multi-empresa
|
MultiCompanySetup=Configuració del mòdul Multi-empresa
|
||||||
##### Suppliers #####
|
##### Suppliers #####
|
||||||
|
|||||||
@ -503,7 +503,6 @@ Port=Port
|
|||||||
VirtualServerName=Virtual Server navn
|
VirtualServerName=Virtual Server navn
|
||||||
AllParameters=Alle parametre
|
AllParameters=Alle parametre
|
||||||
OS=OS
|
OS=OS
|
||||||
Php=Php
|
|
||||||
PhpEnv=Env
|
PhpEnv=Env
|
||||||
PhpModules=Moduler
|
PhpModules=Moduler
|
||||||
PhpConf=Conf
|
PhpConf=Conf
|
||||||
|
|||||||
@ -499,7 +499,6 @@ Port=Port
|
|||||||
VirtualServerName=Virtual Server Name
|
VirtualServerName=Virtual Server Name
|
||||||
AllParameters=Alle Parameter
|
AllParameters=Alle Parameter
|
||||||
OS=OS
|
OS=OS
|
||||||
Php=Php
|
|
||||||
PhpEnv=Env
|
PhpEnv=Env
|
||||||
PhpModules=Module
|
PhpModules=Module
|
||||||
PhpConf=Conf
|
PhpConf=Conf
|
||||||
|
|||||||
@ -383,8 +383,8 @@ Module85Name=Banken und Geld
|
|||||||
Module85Desc=Verwaltung von Bank- oder Bargeldkonten
|
Module85Desc=Verwaltung von Bank- oder Bargeldkonten
|
||||||
Module100Name=Externe Website
|
Module100Name=Externe Website
|
||||||
Module100Desc=Erlaubt die Einbindung einer externen Website in die Menüs von dolibarr und die Anzeige der Seite innerhalb eines Frames
|
Module100Desc=Erlaubt die Einbindung einer externen Website in die Menüs von dolibarr und die Anzeige der Seite innerhalb eines Frames
|
||||||
Module105Name=Mailman und Sip
|
Module105Name=Mailman und SPIP
|
||||||
Module105Desc=Mailman oder Spip Schnittstelle für die Mitgliedsmodul
|
Module105Desc=Mailman oder SPIP Schnittstelle für die Mitgliedsmodul
|
||||||
Module200Name=LDAP
|
Module200Name=LDAP
|
||||||
Module200Desc=LDAP-Verzeichnissynchronisation
|
Module200Desc=LDAP-Verzeichnissynchronisation
|
||||||
Module210Name=PostNuke
|
Module210Name=PostNuke
|
||||||
@ -711,7 +711,6 @@ Port=Port
|
|||||||
VirtualServerName=Name des Virtual-Server
|
VirtualServerName=Name des Virtual-Server
|
||||||
AllParameters=Alle Parameter
|
AllParameters=Alle Parameter
|
||||||
OS=OS
|
OS=OS
|
||||||
Php=PHP
|
|
||||||
PhpEnv=Env
|
PhpEnv=Env
|
||||||
PhpModules=Module
|
PhpModules=Module
|
||||||
PhpConf=Config
|
PhpConf=Config
|
||||||
@ -1290,7 +1289,7 @@ BankOrderGlobalDesc=Allgemeine Anzeige-Reihenfolge
|
|||||||
BankOrderES=Spanisch
|
BankOrderES=Spanisch
|
||||||
BankOrderESDesc=Spanisch Anzeigereihenfolge
|
BankOrderESDesc=Spanisch Anzeigereihenfolge
|
||||||
##### MailmanSpip #####
|
##### MailmanSpip #####
|
||||||
MailmanSpipSetup=Mailman und Spip Modul-Setup
|
MailmanSpipSetup=Mailman und SPIP Modul-Setup
|
||||||
##### Multicompany #####
|
##### Multicompany #####
|
||||||
MultiCompanySetup=Multi-Company-Moduleinstellungen
|
MultiCompanySetup=Multi-Company-Moduleinstellungen
|
||||||
##### Suppliers #####
|
##### Suppliers #####
|
||||||
|
|||||||
@ -507,7 +507,6 @@ Port=Θύρα
|
|||||||
VirtualServerName=Virtual server name
|
VirtualServerName=Virtual server name
|
||||||
AllParameters=Όλοι οι παράμετροι
|
AllParameters=Όλοι οι παράμετροι
|
||||||
OS=Λ.Σ.
|
OS=Λ.Σ.
|
||||||
Php=Php
|
|
||||||
PhpEnv=Περ/λλον
|
PhpEnv=Περ/λλον
|
||||||
PhpModules=Αρθρώματα
|
PhpModules=Αρθρώματα
|
||||||
PhpConf=Conf
|
PhpConf=Conf
|
||||||
|
|||||||
@ -384,8 +384,8 @@ Module85Name=Banks and cash
|
|||||||
Module85Desc=Management of bank or cash accounts
|
Module85Desc=Management of bank or cash accounts
|
||||||
Module100Name=External site
|
Module100Name=External site
|
||||||
Module100Desc=Include any external web site into Dolibarr menus and view it into a Dolibarr frame
|
Module100Desc=Include any external web site into Dolibarr menus and view it into a Dolibarr frame
|
||||||
Module105Name=Mailman and Spip
|
Module105Name=Mailman and SPIP
|
||||||
Module105Desc=Mailman or Spip interface for member module
|
Module105Desc=Mailman or SPIP interface for member module
|
||||||
Module200Name=LDAP
|
Module200Name=LDAP
|
||||||
Module200Desc=LDAP directory synchronisation
|
Module200Desc=LDAP directory synchronisation
|
||||||
Module210Name=PostNuke
|
Module210Name=PostNuke
|
||||||
@ -710,7 +710,6 @@ Port=Port
|
|||||||
VirtualServerName=Virtual server name
|
VirtualServerName=Virtual server name
|
||||||
AllParameters=All parameters
|
AllParameters=All parameters
|
||||||
OS=OS
|
OS=OS
|
||||||
Php=Php
|
|
||||||
PhpEnv=Env
|
PhpEnv=Env
|
||||||
PhpModules=Modules
|
PhpModules=Modules
|
||||||
PhpConf=Conf
|
PhpConf=Conf
|
||||||
@ -1292,7 +1291,8 @@ BankOrderGlobalDesc=General display order
|
|||||||
BankOrderES=Spanish
|
BankOrderES=Spanish
|
||||||
BankOrderESDesc=Spanish display order
|
BankOrderESDesc=Spanish display order
|
||||||
##### MailmanSpip #####
|
##### MailmanSpip #####
|
||||||
MailmanSpipSetup=Mailman and Spip module Setup
|
MailmanSpipSetup=Mailman and SPIP module Setup
|
||||||
|
MailmanTitle=Mailman mailing list system
|
||||||
##### Multicompany #####
|
##### Multicompany #####
|
||||||
MultiCompanySetup=Multi-company module setup
|
MultiCompanySetup=Multi-company module setup
|
||||||
##### Suppliers #####
|
##### Suppliers #####
|
||||||
|
|||||||
@ -61,7 +61,9 @@ PreviewNotAvailable=Vista previa no disponible
|
|||||||
ThemeCurrentlyActive=Tema actualmente activo
|
ThemeCurrentlyActive=Tema actualmente activo
|
||||||
CurrentTimeZone=Zona horaria PHP (Servidor)
|
CurrentTimeZone=Zona horaria PHP (Servidor)
|
||||||
Space=Área
|
Space=Área
|
||||||
|
Table=Tabla
|
||||||
Fields=Campos
|
Fields=Campos
|
||||||
|
Index=Índice
|
||||||
Mask=Máscara
|
Mask=Máscara
|
||||||
NextValue=Próximo valor
|
NextValue=Próximo valor
|
||||||
NextValueForInvoices=Próximo valor (facturas)
|
NextValueForInvoices=Próximo valor (facturas)
|
||||||
@ -88,7 +90,7 @@ NotConfigured=No configurado
|
|||||||
Setup=Configuración
|
Setup=Configuración
|
||||||
Activation=Activación
|
Activation=Activación
|
||||||
Active=Activo
|
Active=Activo
|
||||||
SetupShort=Config
|
SetupShort=Config.
|
||||||
OtherOptions=Otras opciones
|
OtherOptions=Otras opciones
|
||||||
OtherSetup=Varios
|
OtherSetup=Varios
|
||||||
CurrentValueSeparatorDecimal=Separador decimal
|
CurrentValueSeparatorDecimal=Separador decimal
|
||||||
@ -156,6 +158,7 @@ ImportPostgreSqlDesc=Para importar una copia de seguridad, debe usar el comando
|
|||||||
ImportMySqlCommand=%s %s < miarchivobackup.sql
|
ImportMySqlCommand=%s %s < miarchivobackup.sql
|
||||||
ImportPostgreSqlCommand=%s %s miarchivobackup.sql
|
ImportPostgreSqlCommand=%s %s miarchivobackup.sql
|
||||||
FileNameToGenerate=Nombre del archivo a generar
|
FileNameToGenerate=Nombre del archivo a generar
|
||||||
|
Compression=Compresión
|
||||||
CommandsToDisableForeignKeysForImport=Comando para desactivar las claves excluyentes a la importación
|
CommandsToDisableForeignKeysForImport=Comando para desactivar las claves excluyentes a la importación
|
||||||
ExportCompatibility=Compatibilidad del archivo de exportación generado
|
ExportCompatibility=Compatibilidad del archivo de exportación generado
|
||||||
MySqlExportParameters=Parámetros de la exportación MySql
|
MySqlExportParameters=Parámetros de la exportación MySql
|
||||||
@ -169,7 +172,7 @@ AddDropTable=Añadir órdenes DROP TABLE
|
|||||||
Datas=Datos
|
Datas=Datos
|
||||||
NameColumn=Nombre las columnas
|
NameColumn=Nombre las columnas
|
||||||
ExtendedInsert=Instrucciones INSERT extendidas
|
ExtendedInsert=Instrucciones INSERT extendidas
|
||||||
NoLockBeforeInsert=Sin intrucción LOCK antes del INSERT
|
NoLockBeforeInsert=Sin instrucción LOCK antes del INSERT
|
||||||
DelayedInsert=Inserciones con retraso
|
DelayedInsert=Inserciones con retraso
|
||||||
EncodeBinariesInHexa=Codificar los campos binarios en hexadecimal
|
EncodeBinariesInHexa=Codificar los campos binarios en hexadecimal
|
||||||
IgnoreDuplicateRecords=Ignorar los errores de duplicación (INSERT IGNORE)
|
IgnoreDuplicateRecords=Ignorar los errores de duplicación (INSERT IGNORE)
|
||||||
@ -363,8 +366,8 @@ Module53Name=Servicios
|
|||||||
Module53Desc=Gestión de servicios
|
Module53Desc=Gestión de servicios
|
||||||
Module54Name=Contratos
|
Module54Name=Contratos
|
||||||
Module54Desc=Gestión de contratos
|
Module54Desc=Gestión de contratos
|
||||||
Module55Name=Códigos de barra
|
Module55Name=Códigos de barras
|
||||||
Module55Desc=Gestión de los códigos de barra
|
Module55Desc=Gestión de los códigos de barras
|
||||||
Module56Name=Telefonía
|
Module56Name=Telefonía
|
||||||
Module56Desc=Gestión de la telefonía
|
Module56Desc=Gestión de la telefonía
|
||||||
Module57Name=Domiciliaciones
|
Module57Name=Domiciliaciones
|
||||||
@ -381,12 +384,12 @@ Module80Name=Expediciones
|
|||||||
Module80Desc=Gestión de expediciones y recepciones
|
Module80Desc=Gestión de expediciones y recepciones
|
||||||
Module85Name=Bancos y cajas
|
Module85Name=Bancos y cajas
|
||||||
Module85Desc=Gestión de las cuentas financieras de tipo cuentas bancarias, postales o efectivo
|
Module85Desc=Gestión de las cuentas financieras de tipo cuentas bancarias, postales o efectivo
|
||||||
Module100Name=External site
|
Module100Name=Sitio web externo
|
||||||
Module100Desc=Incluye cualquier sitio web externo en los menús de Dolibarr, viéndolo en un frame
|
Module100Desc=Incluye cualquier sitio web externo en los menús de Dolibarr, viéndolo en un frame
|
||||||
Module105Name=Mailman y Sip
|
Module105Name=Mailman y SPIP
|
||||||
Module105Desc=Interface con Mailman o Spip para el módulo Miembros
|
Module105Desc=Interfaz con Mailman o SPIP para el módulo Miembros
|
||||||
Module200Name=LDAP
|
Module200Name=LDAP
|
||||||
Module200Desc=sincronización con un anuario LDAP
|
Module200Desc=Sincronización con un anuario LDAP
|
||||||
Module210Name=PostNuke
|
Module210Name=PostNuke
|
||||||
Module210Desc=Integración con PostNuke
|
Module210Desc=Integración con PostNuke
|
||||||
Module240Name=Exportaciones de datos
|
Module240Name=Exportaciones de datos
|
||||||
@ -433,6 +436,7 @@ Module2600Name=WebServices
|
|||||||
Module2600Desc=Activa los servicios de servidor web services de Dolibarr
|
Module2600Desc=Activa los servicios de servidor web services de Dolibarr
|
||||||
Module2700Name=Gravatar
|
Module2700Name=Gravatar
|
||||||
Module2700Desc=Utiliza el servicio en línea de Gravatar (www.gravatar.com) para mostrar fotos de los usuarios/miembros (que se encuentran en sus mensajes de correo electrónico). Necesita un acceso a Internet
|
Module2700Desc=Utiliza el servicio en línea de Gravatar (www.gravatar.com) para mostrar fotos de los usuarios/miembros (que se encuentran en sus mensajes de correo electrónico). Necesita un acceso a Internet
|
||||||
|
Module2800Desc=Cliente FTP
|
||||||
Module2900Name=GeoIPMaxmind
|
Module2900Name=GeoIPMaxmind
|
||||||
Module2900Desc=Capacidades de conversión GeoIP Maxmind
|
Module2900Desc=Capacidades de conversión GeoIP Maxmind
|
||||||
Module5000Name=Multi-empresa
|
Module5000Name=Multi-empresa
|
||||||
@ -578,9 +582,9 @@ Permission286=Exportar los contactos
|
|||||||
Permission291=Consultar tarifas
|
Permission291=Consultar tarifas
|
||||||
Permission292=Definir permisos sobre las tarifas
|
Permission292=Definir permisos sobre las tarifas
|
||||||
Permission293=Modificar tarifas de clientes
|
Permission293=Modificar tarifas de clientes
|
||||||
Permission300=Consultar códigos de barra
|
Permission300=Consultar códigos de barras
|
||||||
Permission301=Crear/modificar códigos de barra
|
Permission301=Crear/modificar códigos de barras
|
||||||
Permission302=Eliminar código de barra
|
Permission302=Eliminar código de barras
|
||||||
Permission311=Consultar servicios
|
Permission311=Consultar servicios
|
||||||
Permission312=Asignar servicios a un contrato
|
Permission312=Asignar servicios a un contrato
|
||||||
Permission331=Consultar marcadores
|
Permission331=Consultar marcadores
|
||||||
@ -717,17 +721,17 @@ Port=Puerto
|
|||||||
VirtualServerName=Nombre del servidor virtual
|
VirtualServerName=Nombre del servidor virtual
|
||||||
AllParameters=Todos los parámetros
|
AllParameters=Todos los parámetros
|
||||||
OS=SO
|
OS=SO
|
||||||
Php=Php
|
|
||||||
PhpEnv=Env
|
PhpEnv=Env
|
||||||
PhpModules=Módulos
|
PhpModules=Módulos
|
||||||
PhpConf=Conf
|
PhpConf=Conf
|
||||||
PhpWebLink=Vínculo Web-PHP
|
PhpWebLink=Vínculo Web-PHP
|
||||||
Pear=Pear
|
Pear=Pear
|
||||||
PearPackages=Paquetes Pear
|
PearPackages=Paquetes Pear
|
||||||
|
+Browser=Navegador
|
||||||
Database=Base de datos
|
Database=Base de datos
|
||||||
DatabaseServer=Host de la base de datos
|
DatabaseServer=Host de la base de datos
|
||||||
DatabaseName=Nombre de la base de datos
|
DatabaseName=Nombre de la base de datos
|
||||||
DatabasePort=puerto de la base de datos
|
DatabasePort=Puerto de la base de datos
|
||||||
DatabaseUser=Login de la base de datos
|
DatabaseUser=Login de la base de datos
|
||||||
DatabasePassword=Contraseña de la base de datos
|
DatabasePassword=Contraseña de la base de datos
|
||||||
DatabaseConfiguration=Configuración de la base de datos
|
DatabaseConfiguration=Configuración de la base de datos
|
||||||
@ -1153,19 +1157,19 @@ ErrorUnknownSyslogConstant=La constante %s no es una constante syslog conocida
|
|||||||
DonationsSetup=Configuración del módulo subvenciones
|
DonationsSetup=Configuración del módulo subvenciones
|
||||||
DonationsReceiptModel=Modelo recepción de subvenciones
|
DonationsReceiptModel=Modelo recepción de subvenciones
|
||||||
##### Barcode #####
|
##### Barcode #####
|
||||||
BarcodeSetup=Configuración de los códigos de barra
|
BarcodeSetup=Configuración de los códigos de barras
|
||||||
PaperFormatModule=Módulos de formatos de impresión
|
PaperFormatModule=Módulos de formatos de impresión
|
||||||
BarcodeEncodeModule=Módulos de codificación de los códigos de barra
|
BarcodeEncodeModule=Módulos de codificación de los códigos de barras
|
||||||
UseBarcodeInProductModule=Utilizar los códigos de barra en los productos
|
UseBarcodeInProductModule=Utilizar los códigos de barras en los productos
|
||||||
CodeBarGenerator=Generador del código
|
CodeBarGenerator=Generador del código
|
||||||
ChooseABarCode=Ningún generador seleccionado
|
ChooseABarCode=Ningún generador seleccionado
|
||||||
FormatNotSupportedByGenerator=Formato no generado por este generador
|
FormatNotSupportedByGenerator=Formato no generado por este generador
|
||||||
BarcodeDescEAN8=Códigos de barra tipo EAN8
|
BarcodeDescEAN8=Códigos de barras tipo EAN8
|
||||||
BarcodeDescEAN13=Códigos de barra tipo EAN13
|
BarcodeDescEAN13=Códigos de barras tipo EAN13
|
||||||
BarcodeDescUPC=Códigos de barra tipo UPC
|
BarcodeDescUPC=Códigos de barras tipo UPC
|
||||||
BarcodeDescISBN=Códigos de barra tipo ISBN
|
BarcodeDescISBN=Códigos de barras tipo ISBN
|
||||||
BarcodeDescC39=Códigos de barra tipo C39
|
BarcodeDescC39=Códigos de barras tipo C39
|
||||||
BarcodeDescC128=Códigos de barra tipo C128
|
BarcodeDescC128=Códigos de barras tipo C128
|
||||||
##### Prelevements #####
|
##### Prelevements #####
|
||||||
WithdrawalsSetup=Configuración del módulo domiciliaciones
|
WithdrawalsSetup=Configuración del módulo domiciliaciones
|
||||||
##### ExternalRSS #####
|
##### ExternalRSS #####
|
||||||
@ -1297,7 +1301,8 @@ BankOrderGlobalDesc=Orden de visualización general
|
|||||||
BankOrderES=Español
|
BankOrderES=Español
|
||||||
BankOrderESDesc=Orden de visualización español
|
BankOrderESDesc=Orden de visualización español
|
||||||
##### MailmanSpip #####
|
##### MailmanSpip #####
|
||||||
MailmanSpipSetup=Configuración del módulo Mailman y Spip
|
MailmanSpipSetup=Configuración del módulo Mailman y SPIP
|
||||||
|
MailmanTitle=Sistema de listas de correo Mailman
|
||||||
##### Multicompany #####
|
##### Multicompany #####
|
||||||
MultiCompanySetup=Configuración del módulo Multi-empresa
|
MultiCompanySetup=Configuración del módulo Multi-empresa
|
||||||
##### Suppliers #####
|
##### Suppliers #####
|
||||||
@ -1319,3 +1324,5 @@ ProjectsModelModule=Modelo de documento para informes de proyectos
|
|||||||
ExternalSiteSetup=Configuración del enlace hacia el sitio externo
|
ExternalSiteSetup=Configuración del enlace hacia el sitio externo
|
||||||
##### Ecommerce #####
|
##### Ecommerce #####
|
||||||
EcommerceSiteSetup=Configuración del módulo e-commerce
|
EcommerceSiteSetup=Configuración del módulo e-commerce
|
||||||
|
View=Ver
|
||||||
|
Server=Servidor
|
||||||
@ -88,7 +88,7 @@ WrongCustomerCode=Código cliente incorrecto
|
|||||||
WrongSupplierCode=Código proveedor incorrecto
|
WrongSupplierCode=Código proveedor incorrecto
|
||||||
CustomerCodeModel=Modelo de código cliente
|
CustomerCodeModel=Modelo de código cliente
|
||||||
SupplierCodeModel=Modelo de código proveedor
|
SupplierCodeModel=Modelo de código proveedor
|
||||||
Gencod=Código de barra
|
Gencod=Código de barras
|
||||||
##### Professionnal ID #####=
|
##### Professionnal ID #####=
|
||||||
ProfId1Short=Prof. id 1
|
ProfId1Short=Prof. id 1
|
||||||
ProfId2Short=Prof. id 2
|
ProfId2Short=Prof. id 2
|
||||||
|
|||||||
@ -102,7 +102,7 @@ ErrorLoginDoesNotExists=La cuenta de usuario de <b>%s</b> no se ha encontrado.
|
|||||||
ErrorLoginHasNoEmail=Este usuario no tiene e-mail. Imposible continuar.
|
ErrorLoginHasNoEmail=Este usuario no tiene e-mail. Imposible continuar.
|
||||||
ErrorBadValueForCode=Valor incorrecto para el código. Vuelva a intentar con un nuevo valor...
|
ErrorBadValueForCode=Valor incorrecto para el código. Vuelva a intentar con un nuevo valor...
|
||||||
ErrorBothFieldCantBeNegative=Los campos %s y %s no pueden ser negativos
|
ErrorBothFieldCantBeNegative=Los campos %s y %s no pueden ser negativos
|
||||||
ErrorNoActivatedBarcode=Ningún tipo de código de barra activado
|
ErrorNoActivatedBarcode=Ningún tipo de código de barras activado
|
||||||
ErrorWebServerUserHasNotPermission=La cuenta de ejecución del servidor web <b>%s</b> no dispone de los permisos para esto
|
ErrorWebServerUserHasNotPermission=La cuenta de ejecución del servidor web <b>%s</b> no dispone de los permisos para esto
|
||||||
ErrorNoActivatedBarcode=No hay activado ningún tipo de código de barras
|
ErrorNoActivatedBarcode=No hay activado ningún tipo de código de barras
|
||||||
ErrUnzipFails=No se ha podido descomprimir el archivo %s con ZipArchive
|
ErrUnzipFails=No se ha podido descomprimir el archivo %s con ZipArchive
|
||||||
|
|||||||
@ -23,6 +23,7 @@ ConfirmModifyIntervention=¿Está seguro de querer modificar esta intervención?
|
|||||||
ConfirmDeleteInterventionLine=¿Está seguro de querer eliminar esta linea?
|
ConfirmDeleteInterventionLine=¿Está seguro de querer eliminar esta linea?
|
||||||
NameAndSignatureOfInternalContact=Nombre y firma del participante:
|
NameAndSignatureOfInternalContact=Nombre y firma del participante:
|
||||||
NameAndSignatureOfExternalContact=Nombre y firma del cliente:
|
NameAndSignatureOfExternalContact=Nombre y firma del cliente:
|
||||||
|
DocumentModelStandard=Documento modelo estándar para intervenciones
|
||||||
InterventionCardsAndInterventionLines=Fichas y líneas de intervención
|
InterventionCardsAndInterventionLines=Fichas y líneas de intervención
|
||||||
InterId=Id intervención
|
InterId=Id intervención
|
||||||
InterRef=Ref. intervención
|
InterRef=Ref. intervención
|
||||||
|
|||||||
@ -504,7 +504,7 @@ ShowCustomerPreview=Ver historial cliente
|
|||||||
ShowSupplierPreview=Ver historial proveedor
|
ShowSupplierPreview=Ver historial proveedor
|
||||||
ShowProspectPreview=Ver historial cliente potencial
|
ShowProspectPreview=Ver historial cliente potencial
|
||||||
ShowAccountancyPreview=Ver historial contable
|
ShowAccountancyPreview=Ver historial contable
|
||||||
RefCustomer=Ref. client
|
RefCustomer=Ref. cliente
|
||||||
Currency=Divisa
|
Currency=Divisa
|
||||||
InfoAdmin=Información para los administradores
|
InfoAdmin=Información para los administradores
|
||||||
Undo=Anular
|
Undo=Anular
|
||||||
|
|||||||
@ -65,7 +65,7 @@ UnvalidateOrder=Desvalidar el pedido
|
|||||||
DeleteOrder=Eliminar el pedido
|
DeleteOrder=Eliminar el pedido
|
||||||
CancelOrder=Anular el pedido
|
CancelOrder=Anular el pedido
|
||||||
AddOrder=Crear pedido
|
AddOrder=Crear pedido
|
||||||
AddToMyOrders=añadir a mis pedidos
|
AddToMyOrders=Añadir a mis pedidos
|
||||||
AddToOtherOrders=Añadir a otros pedidos
|
AddToOtherOrders=Añadir a otros pedidos
|
||||||
ShowOrder=Mostrar pedido
|
ShowOrder=Mostrar pedido
|
||||||
NoOpenedOrders=Níngun pedido borrador
|
NoOpenedOrders=Níngun pedido borrador
|
||||||
|
|||||||
@ -100,10 +100,10 @@ NoCat=Su producto no pertenece a ninguna categoría
|
|||||||
PrimaryWay=Ruta Primaria:
|
PrimaryWay=Ruta Primaria:
|
||||||
DeleteFromCat=Eliminar de la categoría
|
DeleteFromCat=Eliminar de la categoría
|
||||||
PriceRemoved=Precio eliminado
|
PriceRemoved=Precio eliminado
|
||||||
BarCode=Código de barra
|
BarCode=Código de barras
|
||||||
BarcodeType=Tipo de código de barras
|
BarcodeType=Tipo de código de barras
|
||||||
BarcodeValue=Valor del código de barras
|
BarcodeValue=Valor del código de barras
|
||||||
GenbarcodeLocation=Herramienta generación código de barra en línea de pedido (utilizado por el motor phpbar para determinados tipos de códigos barra)
|
GenbarcodeLocation=Herramienta generación código de barras en línea de pedido (utilizado por el motor phpbar para determinados tipos de códigos barras)
|
||||||
SetDefaultBarcodeType=Defina el tipo de código de barras
|
SetDefaultBarcodeType=Defina el tipo de código de barras
|
||||||
NoteNotVisibleOnBill=Nota (no visible en las facturas, presupuestos, etc.)
|
NoteNotVisibleOnBill=Nota (no visible en las facturas, presupuestos, etc.)
|
||||||
CreateCopy=Crear cópia
|
CreateCopy=Crear cópia
|
||||||
@ -156,7 +156,7 @@ ServiceNb=Servicio no %s
|
|||||||
ListProductServiceByPopularity=Listado de productos/servicios por popularidad
|
ListProductServiceByPopularity=Listado de productos/servicios por popularidad
|
||||||
ListProductByPopularity=Listado de productos/servicios por popularidad
|
ListProductByPopularity=Listado de productos/servicios por popularidad
|
||||||
ListServiceByPopularity=Listado de servicios por popularidad
|
ListServiceByPopularity=Listado de servicios por popularidad
|
||||||
Finished=Producto manofacturado
|
Finished=Producto manufacturado
|
||||||
RowMaterial=Materia prima
|
RowMaterial=Materia prima
|
||||||
CloneProduct=Clonar producto/servicio
|
CloneProduct=Clonar producto/servicio
|
||||||
ConfirmCloneProduct=¿Está seguro de querer clonar el producto o servicio <b>%s</b>?
|
ConfirmCloneProduct=¿Está seguro de querer clonar el producto o servicio <b>%s</b>?
|
||||||
|
|||||||
@ -380,8 +380,8 @@ Module85Name=Pangad ja raha
|
|||||||
Module85Desc=Juhtimine pangas või sularaha raamatupidamise
|
Module85Desc=Juhtimine pangas või sularaha raamatupidamise
|
||||||
Module100Name=Väline veebileht
|
Module100Name=Väline veebileht
|
||||||
Module100Desc=Sisalda mingeid väliseid WWW Dolibarr menüüd ja vaadata selle Dolibarr raam
|
Module100Desc=Sisalda mingeid väliseid WWW Dolibarr menüüd ja vaadata selle Dolibarr raam
|
||||||
Module105Name=Mailman ja Sip
|
Module105Name=Mailman ja SPIP
|
||||||
Module105Desc=Mailman või Spip liides liige moodul
|
Module105Desc=Mailman või SPIP liides liige moodul
|
||||||
Module200Name=LDAP
|
Module200Name=LDAP
|
||||||
Module200Desc=LDAP kataloogi sünkroniseerimine
|
Module200Desc=LDAP kataloogi sünkroniseerimine
|
||||||
Module210Name=PostNuke
|
Module210Name=PostNuke
|
||||||
@ -707,7 +707,6 @@ Port=Port
|
|||||||
VirtualServerName=Virtual server name
|
VirtualServerName=Virtual server name
|
||||||
AllParameters=Kõik parameetrid
|
AllParameters=Kõik parameetrid
|
||||||
OS=OS
|
OS=OS
|
||||||
Php=Php
|
|
||||||
PhpEnv=Env
|
PhpEnv=Env
|
||||||
PhpModules=Moodulid
|
PhpModules=Moodulid
|
||||||
PhpConf=Conf
|
PhpConf=Conf
|
||||||
@ -1247,7 +1246,7 @@ BankOrderGlobal=Üldine
|
|||||||
BankOrderGlobalDesc=General kuvamise
|
BankOrderGlobalDesc=General kuvamise
|
||||||
BankOrderES=Hispaania
|
BankOrderES=Hispaania
|
||||||
BankOrderESDesc=Hispaania kuvamise
|
BankOrderESDesc=Hispaania kuvamise
|
||||||
MailmanSpipSetup=Mailman ja Spip moodul Setup
|
MailmanSpipSetup=Mailman ja SPIP moodul Setup
|
||||||
MultiCompanySetup=Mitme firma moodul setup
|
MultiCompanySetup=Mitme firma moodul setup
|
||||||
SuppliersSetup=Tarnija moodul setup
|
SuppliersSetup=Tarnija moodul setup
|
||||||
SuppliersCommandModel=Täielik malli tarnija järjekorras (logo. ..)
|
SuppliersCommandModel=Täielik malli tarnija järjekorras (logo. ..)
|
||||||
|
|||||||
@ -581,7 +581,6 @@ Port=الميناء
|
|||||||
VirtualServerName=اسم الخادم الافتراضي
|
VirtualServerName=اسم الخادم الافتراضي
|
||||||
AllParameters=جميع البارامترات
|
AllParameters=جميع البارامترات
|
||||||
OS=نظام التشغيل
|
OS=نظام التشغيل
|
||||||
Php=Php
|
|
||||||
PhpEnv=Env
|
PhpEnv=Env
|
||||||
PhpModules=وحدات
|
PhpModules=وحدات
|
||||||
PhpConf=Conf
|
PhpConf=Conf
|
||||||
|
|||||||
@ -502,7 +502,6 @@ Port=Port
|
|||||||
VirtualServerName=Virtuaali-palvelimen nimi
|
VirtualServerName=Virtuaali-palvelimen nimi
|
||||||
AllParameters=Kaikki parametrit
|
AllParameters=Kaikki parametrit
|
||||||
OS=OS
|
OS=OS
|
||||||
Php=Php
|
|
||||||
PhpEnv=Env
|
PhpEnv=Env
|
||||||
PhpModules=Moduulit
|
PhpModules=Moduulit
|
||||||
PhpConf=Conf
|
PhpConf=Conf
|
||||||
|
|||||||
@ -387,8 +387,8 @@ Module85Name= Banques et caisses
|
|||||||
Module85Desc= Gestion des comptes financiers de type Comptes bancaires, postaux ou Caisses liquides
|
Module85Desc= Gestion des comptes financiers de type Comptes bancaires, postaux ou Caisses liquides
|
||||||
Module100Name=External site
|
Module100Name=External site
|
||||||
Module100Desc=Ajoute un site Web externe dans les menus Dolibarr et l'affiche dans un frame Dolibarr
|
Module100Desc=Ajoute un site Web externe dans les menus Dolibarr et l'affiche dans un frame Dolibarr
|
||||||
Module105Name=Mailman and Spip
|
Module105Name=Mailman and SPIP
|
||||||
Module105Desc=Interface vers Mailman ou Spip pour le module Adhérent
|
Module105Desc=Interface vers Mailman ou SPIP pour le module Adhérent
|
||||||
Module200Name= LDAP
|
Module200Name= LDAP
|
||||||
Module200Desc= Synchronisation avec un annuaire LDAP
|
Module200Desc= Synchronisation avec un annuaire LDAP
|
||||||
Module210Name= PostNuke
|
Module210Name= PostNuke
|
||||||
@ -719,7 +719,6 @@ Port= Port
|
|||||||
VirtualServerName= Nom du serveur virtuel
|
VirtualServerName= Nom du serveur virtuel
|
||||||
AllParameters= Tous les paramètres
|
AllParameters= Tous les paramètres
|
||||||
OS= OS
|
OS= OS
|
||||||
Php= Php
|
|
||||||
PhpEnv= Env
|
PhpEnv= Env
|
||||||
PhpModules= Modules
|
PhpModules= Modules
|
||||||
PhpConf= Conf
|
PhpConf= Conf
|
||||||
@ -1299,7 +1298,7 @@ BankOrderGlobalDesc=Ordre d'affichage général
|
|||||||
BankOrderES=Espagnol
|
BankOrderES=Espagnol
|
||||||
BankOrderESDesc=Ordre d'affichage Espagnol
|
BankOrderESDesc=Ordre d'affichage Espagnol
|
||||||
##### MailmanSpip #####
|
##### MailmanSpip #####
|
||||||
MailmanSpipSetup=Configuration du module Mailman et Spip
|
MailmanSpipSetup=Configuration du module Mailman et SPIP
|
||||||
##### Multicompany #####
|
##### Multicompany #####
|
||||||
MultiCompanySetup=Configuration du module Multi-société
|
MultiCompanySetup=Configuration du module Multi-société
|
||||||
##### Suppliers #####
|
##### Suppliers #####
|
||||||
|
|||||||
@ -381,7 +381,7 @@ Module85Desc=ניהול חשבונות בנק או במזומן
|
|||||||
Module100Name=באתר חיצוני
|
Module100Name=באתר חיצוני
|
||||||
Module100Desc=כולל כל אתר אינטרנט חיצוני בתפריטים Dolibarr ולצפות בו למסגרת Dolibarr
|
Module100Desc=כולל כל אתר אינטרנט חיצוני בתפריטים Dolibarr ולצפות בו למסגרת Dolibarr
|
||||||
Module105Name=הדוור וללגום
|
Module105Name=הדוור וללגום
|
||||||
Module105Desc=הדוור או Spip ממשק מודול חבר
|
Module105Desc=הדוור או SPIP ממשק מודול חבר
|
||||||
Module200Name=LDAP
|
Module200Name=LDAP
|
||||||
Module200Desc=במדריך LDAP סינכרון
|
Module200Desc=במדריך LDAP סינכרון
|
||||||
Module210Name=PostNuke
|
Module210Name=PostNuke
|
||||||
@ -707,7 +707,6 @@ Port=נמל
|
|||||||
VirtualServerName=שרת וירטואלי שם
|
VirtualServerName=שרת וירטואלי שם
|
||||||
AllParameters=כל הפרמטרים
|
AllParameters=כל הפרמטרים
|
||||||
OS=מערכת ההפעלה
|
OS=מערכת ההפעלה
|
||||||
Php=PHP
|
|
||||||
PhpEnv=Env
|
PhpEnv=Env
|
||||||
PhpModules=מודולים
|
PhpModules=מודולים
|
||||||
PhpConf=Conf
|
PhpConf=Conf
|
||||||
@ -1249,7 +1248,7 @@ BankOrderGlobal=כללי
|
|||||||
BankOrderGlobalDesc=התצוגה כללי סדר
|
BankOrderGlobalDesc=התצוגה כללי סדר
|
||||||
BankOrderES=ספרדית
|
BankOrderES=ספרדית
|
||||||
BankOrderESDesc=התצוגה ספרדית כדי
|
BankOrderESDesc=התצוגה ספרדית כדי
|
||||||
MailmanSpipSetup=הדוור ותוכנית ההתקנה Spip מודול
|
MailmanSpipSetup=הדוור ותוכנית ההתקנה SPIP מודול
|
||||||
MultiCompanySetup=רב החברה מודול ההתקנה
|
MultiCompanySetup=רב החברה מודול ההתקנה
|
||||||
SuppliersSetup=מודול הספק ההתקנה
|
SuppliersSetup=מודול הספק ההתקנה
|
||||||
SuppliersCommandModel=תבנית שלמה של הסדר הספק (logo. ..)
|
SuppliersCommandModel=תבנית שלמה של הסדר הספק (logo. ..)
|
||||||
|
|||||||
@ -707,7 +707,6 @@ Port=Kikötő
|
|||||||
VirtualServerName=Virtuális szerver neve
|
VirtualServerName=Virtuális szerver neve
|
||||||
AllParameters=Minden paraméter
|
AllParameters=Minden paraméter
|
||||||
OS=OS
|
OS=OS
|
||||||
Php=Php
|
|
||||||
PhpEnv=Env
|
PhpEnv=Env
|
||||||
PhpModules=Modulok
|
PhpModules=Modulok
|
||||||
PhpConf=Conf
|
PhpConf=Conf
|
||||||
|
|||||||
@ -634,7 +634,6 @@ Port=Port
|
|||||||
VirtualServerName=Raunverulegur framreiðslumaður nafn
|
VirtualServerName=Raunverulegur framreiðslumaður nafn
|
||||||
AllParameters=Allir þættir
|
AllParameters=Allir þættir
|
||||||
OS=OS
|
OS=OS
|
||||||
Php=Php
|
|
||||||
PhpEnv=Env
|
PhpEnv=Env
|
||||||
PhpModules=Modules
|
PhpModules=Modules
|
||||||
PhpConf=Conf
|
PhpConf=Conf
|
||||||
@ -1215,8 +1214,8 @@ UrlGenerationParameters=Breytur til að tryggja vefslóðir
|
|||||||
SecurityTokenIsUnique=Nota einstakt securekey breytu fyrir hvert slóð
|
SecurityTokenIsUnique=Nota einstakt securekey breytu fyrir hvert slóð
|
||||||
EnterRefToBuildUrl=Sláðu inn tilvísun til %s mótmæla
|
EnterRefToBuildUrl=Sláðu inn tilvísun til %s mótmæla
|
||||||
GetSecuredUrl=Fá reiknað slóð
|
GetSecuredUrl=Fá reiknað slóð
|
||||||
Module105Name=Mailman og Sip
|
Module105Name=Mailman og SPIP
|
||||||
Module105Desc=Mailman eða Spip tengi fyrir einingu aðildarríkja
|
Module105Desc=Mailman eða SPIP tengi fyrir einingu aðildarríkja
|
||||||
Module50000Name=PayBox
|
Module50000Name=PayBox
|
||||||
Module50000Desc=Module til að bjóða upp á netinu greiðslu síðu með kreditkorti með PayBox
|
Module50000Desc=Module til að bjóða upp á netinu greiðslu síðu með kreditkorti með PayBox
|
||||||
Module50200Name=Paypal
|
Module50200Name=Paypal
|
||||||
@ -1287,6 +1286,6 @@ BankOrderGlobal=Almennt
|
|||||||
BankOrderGlobalDesc=Almennt sýna til
|
BankOrderGlobalDesc=Almennt sýna til
|
||||||
BankOrderES=Spænska
|
BankOrderES=Spænska
|
||||||
BankOrderESDesc=Spænska sýna til
|
BankOrderESDesc=Spænska sýna til
|
||||||
MailmanSpipSetup=Mailman og Spip mát Skipulag
|
MailmanSpipSetup=Mailman og SPIP mát Skipulag
|
||||||
SuppliersInvoiceModel=Heill sniðmát af reikningi birgis (logo. ..)
|
SuppliersInvoiceModel=Heill sniðmát af reikningi birgis (logo. ..)
|
||||||
// STOP - Lines generated via autotranslator.php tool (2012-02-29 16:28:04).
|
// STOP - Lines generated via autotranslator.php tool (2012-02-29 16:28:04).
|
||||||
|
|||||||
@ -533,7 +533,7 @@ LogEvents =Eventi di audit di sicurezza
|
|||||||
MailingEMailError =Indirizzo email per le mail di errore (Errors-to)
|
MailingEMailError =Indirizzo email per le mail di errore (Errors-to)
|
||||||
MailingEMailFrom =Mittente email (Da) per le email inviate dal modulo mailing
|
MailingEMailFrom =Mittente email (Da) per le email inviate dal modulo mailing
|
||||||
MailingSetup =Impostazioni modulo mailing
|
MailingSetup =Impostazioni modulo mailing
|
||||||
MailmanSpipSetup =Impostazioni Mailman e modulo Spip
|
MailmanSpipSetup =Impostazioni Mailman e modulo SPIP
|
||||||
MainDbPasswordFileConfEncrypted =Password del database crittata in conf.php (raccomandato)
|
MainDbPasswordFileConfEncrypted =Password del database crittata in conf.php (raccomandato)
|
||||||
MAIN_DISABLE_ALL_MAILS =Disabilitare la spedizione di tutti i messaggi email (per test o demo)
|
MAIN_DISABLE_ALL_MAILS =Disabilitare la spedizione di tutti i messaggi email (per test o demo)
|
||||||
MAIN_DISABLE_ALL_SMS =Disabilitare tutti gli invii SMS (per scopi di test o demo)
|
MAIN_DISABLE_ALL_SMS =Disabilitare tutti gli invii SMS (per scopi di test o demo)
|
||||||
@ -617,8 +617,8 @@ Module10000Desc =Modulo per offrire il pagamento online con carta di c
|
|||||||
Module10000Name =Paybox
|
Module10000Name =Paybox
|
||||||
Module100Desc =Includi un sito esterno nei menu di Dolibarr e visualizzalo in un frame
|
Module100Desc =Includi un sito esterno nei menu di Dolibarr e visualizzalo in un frame
|
||||||
Module100Name =Sito esterno
|
Module100Name =Sito esterno
|
||||||
Module105Desc =Interfaccia Mailman o Spip per il modulo membri
|
Module105Desc =Interfaccia Mailman o SPIP per il modulo membri
|
||||||
Module105Name =Mailman e Spip
|
Module105Name =Mailman e SPIP
|
||||||
Module10Desc =Gestione contabile semplice (fatture e pagamenti)
|
Module10Desc =Gestione contabile semplice (fatture e pagamenti)
|
||||||
Module10Name =Contabilità
|
Module10Name =Contabilità
|
||||||
Module1200Desc =Integrazione Mantis
|
Module1200Desc =Integrazione Mantis
|
||||||
|
|||||||
@ -707,7 +707,6 @@ Port=ポート
|
|||||||
VirtualServerName=仮想サーバー名
|
VirtualServerName=仮想サーバー名
|
||||||
AllParameters=すべてのパラメータ
|
AllParameters=すべてのパラメータ
|
||||||
OS=OS
|
OS=OS
|
||||||
Php=PHP
|
|
||||||
PhpEnv=ENV
|
PhpEnv=ENV
|
||||||
PhpModules=モジュール
|
PhpModules=モジュール
|
||||||
PhpConf=confに
|
PhpConf=confに
|
||||||
|
|||||||
@ -495,7 +495,6 @@ Port=Port
|
|||||||
VirtualServerName=Virtual server name
|
VirtualServerName=Virtual server name
|
||||||
AllParameters=Alle parametere
|
AllParameters=Alle parametere
|
||||||
OS=OS
|
OS=OS
|
||||||
Php=Php
|
|
||||||
PhpEnv=Env
|
PhpEnv=Env
|
||||||
PhpModules=Moduler
|
PhpModules=Moduler
|
||||||
PhpConf=Conf
|
PhpConf=Conf
|
||||||
@ -1237,8 +1236,8 @@ UrlGenerationParameters=Parametre for å sikre nettadresser
|
|||||||
SecurityTokenIsUnique=Bruk en unik securekey parameter for hver webadresse
|
SecurityTokenIsUnique=Bruk en unik securekey parameter for hver webadresse
|
||||||
EnterRefToBuildUrl=Oppgi referanse for objektets %s
|
EnterRefToBuildUrl=Oppgi referanse for objektets %s
|
||||||
GetSecuredUrl=Få beregnet URL
|
GetSecuredUrl=Få beregnet URL
|
||||||
Module105Name=Mailman og Sip
|
Module105Name=Mailman og SPIP
|
||||||
Module105Desc=Mailman eller Spip grensesnitt for medlem modulen
|
Module105Desc=Mailman eller SPIP grensesnitt for medlem modulen
|
||||||
Module50000Name=PAYBOX
|
Module50000Name=PAYBOX
|
||||||
Module50000Desc=Modul å tilby en online betaling side med kredittkort med PAYBOX
|
Module50000Desc=Modul å tilby en online betaling side med kredittkort med PAYBOX
|
||||||
Module50200Name=Paypal
|
Module50200Name=Paypal
|
||||||
@ -1309,6 +1308,6 @@ BankOrderGlobal=Generelt
|
|||||||
BankOrderGlobalDesc=Generell visningsrekkefølgen
|
BankOrderGlobalDesc=Generell visningsrekkefølgen
|
||||||
BankOrderES=Spansk
|
BankOrderES=Spansk
|
||||||
BankOrderESDesc=Spansk visningsrekkefølgen
|
BankOrderESDesc=Spansk visningsrekkefølgen
|
||||||
MailmanSpipSetup=Mailman og Spip modul Setup
|
MailmanSpipSetup=Mailman og SPIP modul Setup
|
||||||
SuppliersInvoiceModel=Komplett mal av leverandør faktura (logo. ..)
|
SuppliersInvoiceModel=Komplett mal av leverandør faktura (logo. ..)
|
||||||
// STOP - Lines generated via autotranslator.php tool (2012-02-29 17:08:28).
|
// STOP - Lines generated via autotranslator.php tool (2012-02-29 17:08:28).
|
||||||
|
|||||||
@ -496,7 +496,6 @@ Port=Port
|
|||||||
VirtualServerName=Virtuele server naam
|
VirtualServerName=Virtuele server naam
|
||||||
AllParameters=Alle parameters
|
AllParameters=Alle parameters
|
||||||
OS=OS
|
OS=OS
|
||||||
Php=Php
|
|
||||||
PhpEnv=Env
|
PhpEnv=Env
|
||||||
PhpModules=Modules
|
PhpModules=Modules
|
||||||
PhpConf=Conf
|
PhpConf=Conf
|
||||||
|
|||||||
@ -1320,8 +1320,8 @@ GetSecuredUrl=Get berekend URL
|
|||||||
// Reference language: en_US -> nl_NL
|
// Reference language: en_US -> nl_NL
|
||||||
WebUserGroup=Webserver gebruiker / groep
|
WebUserGroup=Webserver gebruiker / groep
|
||||||
NoLockBeforeInsert=Geen lock-opdrachten rond INSERT
|
NoLockBeforeInsert=Geen lock-opdrachten rond INSERT
|
||||||
Module105Name=Mailman en Sip
|
Module105Name=Mailman en SPIP
|
||||||
Module105Desc=Mailman of Spip-interface voor leden-module
|
Module105Desc=Mailman of SPIP-interface voor leden-module
|
||||||
Permission50001=Gebruik Verkooppunten
|
Permission50001=Gebruik Verkooppunten
|
||||||
SecurityEventsPurged=Beveiliging gebeurtenissen verwijderd
|
SecurityEventsPurged=Beveiliging gebeurtenissen verwijderd
|
||||||
ExtraFieldHasWrongValue=Toe te schrijven %s heeft een verkeerde waarde.
|
ExtraFieldHasWrongValue=Toe te schrijven %s heeft een verkeerde waarde.
|
||||||
@ -1329,5 +1329,5 @@ SendmailOptionMayHurtBuggedMTA=Feature om e-mails met behulp van methode "P
|
|||||||
ServiceSetup=Services module setup
|
ServiceSetup=Services module setup
|
||||||
ProductServiceSetup=Producten en Diensten modules setup
|
ProductServiceSetup=Producten en Diensten modules setup
|
||||||
ViewProductDescInThirdpartyLanguageAbility=Visualisatie van producten die beschrijvingen in de thirdparty taal
|
ViewProductDescInThirdpartyLanguageAbility=Visualisatie van producten die beschrijvingen in de thirdparty taal
|
||||||
MailmanSpipSetup=Mailman en Spip module Setup
|
MailmanSpipSetup=Mailman en SPIP module Setup
|
||||||
// STOP - Lines generated via autotranslator.php tool (2012-02-29 17:12:32).
|
// STOP - Lines generated via autotranslator.php tool (2012-02-29 17:12:32).
|
||||||
|
|||||||
@ -504,7 +504,6 @@ Port=Port
|
|||||||
VirtualServerName=Wirtualne nazwy serwera
|
VirtualServerName=Wirtualne nazwy serwera
|
||||||
AllParameters=Wszystkie parametry
|
AllParameters=Wszystkie parametry
|
||||||
OS=OS
|
OS=OS
|
||||||
Php=Php
|
|
||||||
PhpEnv=Env
|
PhpEnv=Env
|
||||||
PhpModules=Moduły
|
PhpModules=Moduły
|
||||||
PhpConf=Conf.
|
PhpConf=Conf.
|
||||||
|
|||||||
@ -565,7 +565,6 @@ Port=Porta
|
|||||||
VirtualServerName=Nome do servidor virtual
|
VirtualServerName=Nome do servidor virtual
|
||||||
AllParameters=Todos os parâmetros
|
AllParameters=Todos os parâmetros
|
||||||
OS=SO
|
OS=SO
|
||||||
Php=Php
|
|
||||||
PhpEnv=Env
|
PhpEnv=Env
|
||||||
PhpModules=Módulos
|
PhpModules=Módulos
|
||||||
PhpConf=Conf
|
PhpConf=Conf
|
||||||
|
|||||||
@ -545,7 +545,6 @@ Port=Porta
|
|||||||
VirtualServerName=Nome do servidor virtual
|
VirtualServerName=Nome do servidor virtual
|
||||||
AllParameters=Todos os parâmetros
|
AllParameters=Todos os parâmetros
|
||||||
OS=SO
|
OS=SO
|
||||||
Php=Php
|
|
||||||
PhpEnv=Env
|
PhpEnv=Env
|
||||||
PhpModules=Módulos
|
PhpModules=Módulos
|
||||||
PhpConf=Conf
|
PhpConf=Conf
|
||||||
@ -1243,8 +1242,8 @@ UrlGenerationParameters=Parâmetros para garantir URLs
|
|||||||
SecurityTokenIsUnique=Use um parâmetro securekey exclusivo para cada URL
|
SecurityTokenIsUnique=Use um parâmetro securekey exclusivo para cada URL
|
||||||
EnterRefToBuildUrl=Digite referência para %s objeto
|
EnterRefToBuildUrl=Digite referência para %s objeto
|
||||||
GetSecuredUrl=Obter URL calculado
|
GetSecuredUrl=Obter URL calculado
|
||||||
Module105Name=Mailman e Sip
|
Module105Name=Mailman e SPIP
|
||||||
Module105Desc=Mailman ou Spip interface para o módulo membro
|
Module105Desc=Mailman ou SPIP interface para o módulo membro
|
||||||
Module50000Name=Paybox
|
Module50000Name=Paybox
|
||||||
Module50000Desc=Módulo para oferecer uma página de pagamento online por cartão de crédito com paybox
|
Module50000Desc=Módulo para oferecer uma página de pagamento online por cartão de crédito com paybox
|
||||||
Module50200Name=Paypal
|
Module50200Name=Paypal
|
||||||
@ -1315,6 +1314,6 @@ BankOrderGlobal=Geral
|
|||||||
BankOrderGlobalDesc=Ordem de exibição Geral
|
BankOrderGlobalDesc=Ordem de exibição Geral
|
||||||
BankOrderES=Espanhol
|
BankOrderES=Espanhol
|
||||||
BankOrderESDesc=Ordem de apresentação espanhol
|
BankOrderESDesc=Ordem de apresentação espanhol
|
||||||
MailmanSpipSetup=Mailman e Spip instalação do módulo
|
MailmanSpipSetup=Mailman e SPIP instalação do módulo
|
||||||
SuppliersInvoiceModel=Modelo completo da fatura do fornecedor (logo. ..)
|
SuppliersInvoiceModel=Modelo completo da fatura do fornecedor (logo. ..)
|
||||||
// STOP - Lines generated via autotranslator.php tool (2012-02-29 15:47:43).
|
// STOP - Lines generated via autotranslator.php tool (2012-02-29 15:47:43).
|
||||||
|
|||||||
@ -502,7 +502,6 @@ Port=Port
|
|||||||
VirtualServerName=Virtual server de nume
|
VirtualServerName=Virtual server de nume
|
||||||
AllParameters=Toţi parametrii
|
AllParameters=Toţi parametrii
|
||||||
OS=OS
|
OS=OS
|
||||||
Php=Php
|
|
||||||
PhpEnv=Env
|
PhpEnv=Env
|
||||||
PhpModules=Module
|
PhpModules=Module
|
||||||
PhpConf=Conf.
|
PhpConf=Conf.
|
||||||
|
|||||||
@ -654,7 +654,6 @@ Port=Port
|
|||||||
VirtualServerName=Wirtualne nazwy serwera
|
VirtualServerName=Wirtualne nazwy serwera
|
||||||
AllParameters=Wszystkie parametry
|
AllParameters=Wszystkie parametry
|
||||||
OS=OS
|
OS=OS
|
||||||
Php=Php
|
|
||||||
PhpEnv=Env
|
PhpEnv=Env
|
||||||
PhpModules=Moduły
|
PhpModules=Moduły
|
||||||
PhpConf=Conf.
|
PhpConf=Conf.
|
||||||
|
|||||||
@ -501,7 +501,6 @@ Port=Порт
|
|||||||
VirtualServerName=Виртуальный сервер Имя
|
VirtualServerName=Виртуальный сервер Имя
|
||||||
AllParameters=Все параметры
|
AllParameters=Все параметры
|
||||||
OS=OS
|
OS=OS
|
||||||
Php=Php
|
|
||||||
PhpEnv=Env
|
PhpEnv=Env
|
||||||
PhpModules=Модули
|
PhpModules=Модули
|
||||||
PhpConf=Conf
|
PhpConf=Conf
|
||||||
|
|||||||
@ -1287,8 +1287,8 @@ UrlGenerationParameters=Parametri za zagotovitev URL
|
|||||||
SecurityTokenIsUnique=Uporabite edinstven parameter securekey za vsako URL
|
SecurityTokenIsUnique=Uporabite edinstven parameter securekey za vsako URL
|
||||||
EnterRefToBuildUrl=Vnesite sklic za predmet %s
|
EnterRefToBuildUrl=Vnesite sklic za predmet %s
|
||||||
GetSecuredUrl=Get izračuna URL
|
GetSecuredUrl=Get izračuna URL
|
||||||
Module105Name=Mailman in Sip
|
Module105Name=Mailman in SPIP
|
||||||
Module105Desc=Mailman ali Spip vmesnik za modul člana
|
Module105Desc=Mailman ali SPIP vmesnik za modul člana
|
||||||
SecurityEventsPurged=Varnostni dogodki očistimo
|
SecurityEventsPurged=Varnostni dogodki očistimo
|
||||||
ExtraFieldHasWrongValue=Pripišejo %s ima napačno vrednost.
|
ExtraFieldHasWrongValue=Pripišejo %s ima napačno vrednost.
|
||||||
SendmailOptionMayHurtBuggedMTA=Funkcija za pošiljanje pošte z uporabo metode "PHP mail DIRECT" bo ustvarila poštno sporočilo, ki ga ni mogoče pravilno razčleniti z nekaterimi, ki so prejemali poštnih strežnikov. Posledica tega je, da so nekatere pošte ne berejo ljudje, ki jih gosti thoose bugged platforme. To je veljalo za nekaj internetnih ponudnikov (npr.: Orange v Franciji). To ni problem v Dolibarr niti v PHP, ampak na prejemanje poštni strežnik. Lahko pa dodate možnost MAIN_FIX_FOR_BUGGED_MTA 1. v setup - drugo spremeniti Dolibarr, da bi se temu izognili. Vendar pa lahko pride do težav z drugimi strežniki, ki spoštujejo strogo standardni SMTP. Druga rešitev (priporočile) je uporaba metode "SMTP socket knjižnice", ki nima slabosti.
|
SendmailOptionMayHurtBuggedMTA=Funkcija za pošiljanje pošte z uporabo metode "PHP mail DIRECT" bo ustvarila poštno sporočilo, ki ga ni mogoče pravilno razčleniti z nekaterimi, ki so prejemali poštnih strežnikov. Posledica tega je, da so nekatere pošte ne berejo ljudje, ki jih gosti thoose bugged platforme. To je veljalo za nekaj internetnih ponudnikov (npr.: Orange v Franciji). To ni problem v Dolibarr niti v PHP, ampak na prejemanje poštni strežnik. Lahko pa dodate možnost MAIN_FIX_FOR_BUGGED_MTA 1. v setup - drugo spremeniti Dolibarr, da bi se temu izognili. Vendar pa lahko pride do težav z drugimi strežniki, ki spoštujejo strogo standardni SMTP. Druga rešitev (priporočile) je uporaba metode "SMTP socket knjižnice", ki nima slabosti.
|
||||||
@ -1299,5 +1299,5 @@ ServiceSetup=Storitve modul nastavitev
|
|||||||
ProductServiceSetup=Izdelki in storitve moduli za nastavitev
|
ProductServiceSetup=Izdelki in storitve moduli za nastavitev
|
||||||
ViewProductDescInThirdpartyLanguageAbility=Vizualizacija Poimenovanja izdelkov v thirdparty jeziku
|
ViewProductDescInThirdpartyLanguageAbility=Vizualizacija Poimenovanja izdelkov v thirdparty jeziku
|
||||||
AccountancyCode=Računovodstvo zakonik
|
AccountancyCode=Računovodstvo zakonik
|
||||||
MailmanSpipSetup=Mailman in namestitveni modul Spip
|
MailmanSpipSetup=Mailman in namestitveni modul SPIP
|
||||||
// STOP - Lines generated via autotranslator.php tool (2012-02-29 17:31:09).
|
// STOP - Lines generated via autotranslator.php tool (2012-02-29 17:31:09).
|
||||||
|
|||||||
@ -640,7 +640,6 @@ Port=Port
|
|||||||
VirtualServerName=Virtuell server namn
|
VirtualServerName=Virtuell server namn
|
||||||
AllParameters=Alla parametrar
|
AllParameters=Alla parametrar
|
||||||
OS=OS
|
OS=OS
|
||||||
Php=Php
|
|
||||||
PhpEnv=Env
|
PhpEnv=Env
|
||||||
PhpModules=Moduler
|
PhpModules=Moduler
|
||||||
PhpConf=Conf
|
PhpConf=Conf
|
||||||
|
|||||||
@ -626,7 +626,6 @@ Port=Port
|
|||||||
VirtualServerName=Sanal sunucu adı
|
VirtualServerName=Sanal sunucu adı
|
||||||
AllParameters=Tüm parametreler
|
AllParameters=Tüm parametreler
|
||||||
OS=İşletim Sistemi
|
OS=İşletim Sistemi
|
||||||
Php=Php
|
|
||||||
PhpEnv=Ortam
|
PhpEnv=Ortam
|
||||||
PhpModules=Modüller
|
PhpModules=Modüller
|
||||||
PhpConf=Yapı
|
PhpConf=Yapı
|
||||||
@ -1271,7 +1270,7 @@ ProjectsModelModule=Proje raporu belge modeli
|
|||||||
Permission50001=Satış Noktası kullanın.
|
Permission50001=Satış Noktası kullanın.
|
||||||
WebUserGroup=Web sunucusu kullanıcısı/grubu
|
WebUserGroup=Web sunucusu kullanıcısı/grubu
|
||||||
NoLockBeforeInsert=ARAYAEKLE etrafında kilit komutu yok
|
NoLockBeforeInsert=ARAYAEKLE etrafında kilit komutu yok
|
||||||
Module105Name=Postacı (Mailman) ve Spip
|
Module105Name=Postacı (Mailman) ve SPIP
|
||||||
Module105Desc=Üye modülleri için Postacı (Mailman) ya da SPIP arayüzü
|
Module105Desc=Üye modülleri için Postacı (Mailman) ya da SPIP arayüzü
|
||||||
SecurityEventsPurged=Güvenlik eylemleri temizlendi
|
SecurityEventsPurged=Güvenlik eylemleri temizlendi
|
||||||
ExtraFieldHasWrongValue=Öznitelik %s yanlış bir değerdir.
|
ExtraFieldHasWrongValue=Öznitelik %s yanlış bir değerdir.
|
||||||
|
|||||||
@ -631,7 +631,6 @@ Port=港口
|
|||||||
VirtualServerName=虚拟服务器名称
|
VirtualServerName=虚拟服务器名称
|
||||||
AllParameters=所有参数
|
AllParameters=所有参数
|
||||||
OS=操作系统
|
OS=操作系统
|
||||||
Php=腓
|
|
||||||
PhpEnv=包膜
|
PhpEnv=包膜
|
||||||
PhpModules=模块
|
PhpModules=模块
|
||||||
PhpConf=机密档案
|
PhpConf=机密档案
|
||||||
|
|||||||
@ -665,7 +665,10 @@ $helpurl='';
|
|||||||
if (GETPOST("type") == '0') $helpurl='EN:Module_Products|FR:Module_Produits|ES:Módulo_Productos';
|
if (GETPOST("type") == '0') $helpurl='EN:Module_Products|FR:Module_Produits|ES:Módulo_Productos';
|
||||||
if (GETPOST("type") == '1') $helpurl='EN:Module_Services_En|FR:Module_Services|ES:Módulo_Servicios';
|
if (GETPOST("type") == '1') $helpurl='EN:Module_Services_En|FR:Module_Services|ES:Módulo_Servicios';
|
||||||
|
|
||||||
llxHeader('',$langs->trans("CardProduct".GETPOST("type")),$helpurl);
|
if (isset($_GET['type'])) $title = $langs->trans('CardProduct'.GETPOST('type'));
|
||||||
|
else $title = $langs->trans('ProductServiceCard');
|
||||||
|
|
||||||
|
llxHeader('', $title, $helpurl);
|
||||||
|
|
||||||
$form = new Form($db);
|
$form = new Form($db);
|
||||||
$formproduct = new FormProduct($db);
|
$formproduct = new FormProduct($db);
|
||||||
@ -691,6 +694,9 @@ else
|
|||||||
// -----------------------------------------
|
// -----------------------------------------
|
||||||
if ($action == 'create' && ($user->rights->produit->creer || $user->rights->service->creer))
|
if ($action == 'create' && ($user->rights->produit->creer || $user->rights->service->creer))
|
||||||
{
|
{
|
||||||
|
//WYSIWYG Editor
|
||||||
|
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||||
|
|
||||||
print '<form action="fiche.php" method="post">';
|
print '<form action="fiche.php" method="post">';
|
||||||
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
||||||
print '<input type="hidden" name="action" value="add">';
|
print '<input type="hidden" name="action" value="add">';
|
||||||
@ -741,8 +747,7 @@ else
|
|||||||
// Description (used in invoice, propal...)
|
// Description (used in invoice, propal...)
|
||||||
print '<tr><td valign="top">'.$langs->trans("Description").'</td><td>';
|
print '<tr><td valign="top">'.$langs->trans("Description").'</td><td>';
|
||||||
|
|
||||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
$doleditor = new DolEditor('desc', GETPOST('desc'), '', 160, 'dolibarr_notes', '', false, true, $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC, 4, 90);
|
||||||
$doleditor=new DolEditor('desc',GETPOST('desc'),'',160,'dolibarr_details','',false,true,$conf->global->FCKEDITOR_ENABLE_PRODUCTDESC,4,90);
|
|
||||||
$doleditor->Create();
|
$doleditor->Create();
|
||||||
|
|
||||||
print "</td></tr>";
|
print "</td></tr>";
|
||||||
@ -817,7 +822,7 @@ else
|
|||||||
|
|
||||||
// Note (private, no output on invoices, propales...)
|
// Note (private, no output on invoices, propales...)
|
||||||
print '<tr><td valign="top">'.$langs->trans("NoteNotVisibleOnBill").'</td><td>';
|
print '<tr><td valign="top">'.$langs->trans("NoteNotVisibleOnBill").'</td><td>';
|
||||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
|
||||||
$doleditor = new DolEditor('note', GETPOST('note'), '', 180, 'dolibarr_notes', '', false, true, $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC, 8, 70);
|
$doleditor = new DolEditor('note', GETPOST('note'), '', 180, 'dolibarr_notes', '', false, true, $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC, 8, 70);
|
||||||
$doleditor->Create();
|
$doleditor->Create();
|
||||||
|
|
||||||
@ -874,6 +879,9 @@ else
|
|||||||
// Fiche en mode edition
|
// Fiche en mode edition
|
||||||
if ($action == 'edit' && ($user->rights->produit->creer || $user->rights->service->creer))
|
if ($action == 'edit' && ($user->rights->produit->creer || $user->rights->service->creer))
|
||||||
{
|
{
|
||||||
|
//WYSIWYG Editor
|
||||||
|
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||||
|
|
||||||
$type = $langs->trans('Product');
|
$type = $langs->trans('Product');
|
||||||
if ($object->isservice()) $type = $langs->trans('Service');
|
if ($object->isservice()) $type = $langs->trans('Service');
|
||||||
print_fiche_titre($langs->trans('Modify').' '.$type.' : '.$object->ref, "");
|
print_fiche_titre($langs->trans('Modify').' '.$type.' : '.$object->ref, "");
|
||||||
@ -928,9 +936,10 @@ else
|
|||||||
|
|
||||||
// Description (used in invoice, propal...)
|
// Description (used in invoice, propal...)
|
||||||
print '<tr><td valign="top">'.$langs->trans("Description").'</td><td colspan="2">';
|
print '<tr><td valign="top">'.$langs->trans("Description").'</td><td colspan="2">';
|
||||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
|
||||||
$doleditor=new DolEditor('desc',$object->description,'',160,'dolibarr_details','',false,true,$conf->global->FCKEDITOR_ENABLE_PRODUCTDESC,4,90);
|
$doleditor = new DolEditor('desc', $object->description, '', 160, 'dolibarr_notes', '', false, true, $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC, 4, 90);
|
||||||
$doleditor->Create();
|
$doleditor->Create();
|
||||||
|
|
||||||
print "</td></tr>";
|
print "</td></tr>";
|
||||||
print "\n";
|
print "\n";
|
||||||
|
|
||||||
@ -1020,9 +1029,10 @@ else
|
|||||||
|
|
||||||
// Note
|
// Note
|
||||||
print '<tr><td valign="top">'.$langs->trans("NoteNotVisibleOnBill").'</td><td colspan="2">';
|
print '<tr><td valign="top">'.$langs->trans("NoteNotVisibleOnBill").'</td><td colspan="2">';
|
||||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
|
||||||
$doleditor = new DolEditor('note', $object->note, '', 200, 'dolibarr_notes', '', false, true, $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC, 8, 70);
|
$doleditor = new DolEditor('note', $object->note, '', 200, 'dolibarr_notes', '', false, true, $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC, 8, 70);
|
||||||
$doleditor->Create();
|
$doleditor->Create();
|
||||||
|
|
||||||
print "</td></tr>";
|
print "</td></tr>";
|
||||||
print '</table>';
|
print '</table>';
|
||||||
|
|
||||||
|
|||||||
@ -48,7 +48,7 @@ $transAreaType = $langs->trans("ProductsAndServicesArea");
|
|||||||
$helpurl='';
|
$helpurl='';
|
||||||
if (! isset($_GET["type"]))
|
if (! isset($_GET["type"]))
|
||||||
{
|
{
|
||||||
$transAreaType = $langs->trans("ProductsArea");
|
$transAreaType = $langs->trans("ProductsAndServicesArea");
|
||||||
$helpurl='EN:Module_Products|FR:Module_Produits|ES:Módulo_Productos';
|
$helpurl='EN:Module_Products|FR:Module_Produits|ES:Módulo_Productos';
|
||||||
}
|
}
|
||||||
if ((isset($_GET["type"]) && $_GET["type"] == 0) || empty($conf->service->enabled))
|
if ((isset($_GET["type"]) && $_GET["type"] == 0) || empty($conf->service->enabled))
|
||||||
|
|||||||
@ -160,6 +160,9 @@ print '</table>';
|
|||||||
|
|
||||||
if ($action == 'edit')
|
if ($action == 'edit')
|
||||||
{
|
{
|
||||||
|
//WYSIWYG Editor
|
||||||
|
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||||
|
|
||||||
print '<form action="" method="POST">';
|
print '<form action="" method="POST">';
|
||||||
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
||||||
print '<input type="hidden" name="action" value="vedit">';
|
print '<input type="hidden" name="action" value="vedit">';
|
||||||
@ -173,14 +176,16 @@ if ($action == 'edit')
|
|||||||
print '<table class="border" width="100%">';
|
print '<table class="border" width="100%">';
|
||||||
print '<tr><td valign="top" width="15%" class="fieldrequired">'.$langs->trans('Label').'</td><td><input name="libelle-'.$key.'" size="40" value="'.$product->multilangs[$key]["libelle"].'"></td></tr>';
|
print '<tr><td valign="top" width="15%" class="fieldrequired">'.$langs->trans('Label').'</td><td><input name="libelle-'.$key.'" size="40" value="'.$product->multilangs[$key]["libelle"].'"></td></tr>';
|
||||||
print '<tr><td valign="top" width="15%">'.$langs->trans('Description').'</td><td>';
|
print '<tr><td valign="top" width="15%">'.$langs->trans('Description').'</td><td>';
|
||||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
|
||||||
$doleditor=new DolEditor('desc-'.$key.'',$product->multilangs[$key]["description"],'',160,'dolibarr_notes','',false,true,$conf->global->FCKEDITOR_ENABLE_PRODUCTDESC,3,80);
|
$doleditor = new DolEditor("desc-$key", $product->multilangs[$key]["description"], '', 160, 'dolibarr_notes', '', false, true, $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC, 3, 80);
|
||||||
$doleditor->Create();
|
$doleditor->Create();
|
||||||
|
|
||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
print '<tr><td valign="top" width="15%">'.$langs->trans('Note').'</td><td>';
|
print '<tr><td valign="top" width="15%">'.$langs->trans('Note').'</td><td>';
|
||||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
|
||||||
$doleditor=new DolEditor('note-'.$key.'',$product->multilangs[$key]["note"],'',160,'dolibarr_notes','',false,true,$conf->global->FCKEDITOR_ENABLE_PRODUCTDESC,3,80);
|
$doleditor = new DolEditor("note-$key", $product->multilangs[$key]["note"], '', 160, 'dolibarr_notes', '', false, true, $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC, 3, 80);
|
||||||
$doleditor->Create();
|
$doleditor->Create();
|
||||||
|
|
||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
print '</tr>';
|
print '</tr>';
|
||||||
print '</table>';
|
print '</table>';
|
||||||
@ -241,6 +246,9 @@ print "\n</div>\n";
|
|||||||
|
|
||||||
if ($action == 'add' && ($user->rights->produit->creer || $user->rights->service->creer))
|
if ($action == 'add' && ($user->rights->produit->creer || $user->rights->service->creer))
|
||||||
{
|
{
|
||||||
|
//WYSIWYG Editor
|
||||||
|
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
||||||
|
|
||||||
print '<br>';
|
print '<br>';
|
||||||
print '<form action="" method="post">';
|
print '<form action="" method="post">';
|
||||||
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
||||||
@ -253,14 +261,16 @@ if ($action == 'add' && ($user->rights->produit->creer || $user->rights->service
|
|||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
print '<tr><td valign="top" width="15%" class="fieldrequired">'.$langs->trans('Label').'</td><td><input name="libelle" size="40"></td></tr>';
|
print '<tr><td valign="top" width="15%" class="fieldrequired">'.$langs->trans('Label').'</td><td><input name="libelle" size="40"></td></tr>';
|
||||||
print '<tr><td valign="top" width="15%">'.$langs->trans('Description').'</td><td>';
|
print '<tr><td valign="top" width="15%">'.$langs->trans('Description').'</td><td>';
|
||||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
|
||||||
$doleditor = new DolEditor('desc', '', '', 160, 'dolibarr_notes', '', false, true, $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC, 3, 80);
|
$doleditor = new DolEditor('desc', '', '', 160, 'dolibarr_notes', '', false, true, $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC, 3, 80);
|
||||||
$doleditor->Create();
|
$doleditor->Create();
|
||||||
|
|
||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
print '<tr><td valign="top" width="15%">'.$langs->trans('Note').'</td><td>';
|
print '<tr><td valign="top" width="15%">'.$langs->trans('Note').'</td><td>';
|
||||||
require_once(DOL_DOCUMENT_ROOT."/core/class/doleditor.class.php");
|
|
||||||
$doleditor = new DolEditor('note', '', '', 160, 'dolibarr_notes', '', false, true, $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC, 3, 80);
|
$doleditor = new DolEditor('note', '', '', 160, 'dolibarr_notes', '', false, true, $conf->global->FCKEDITOR_ENABLE_PRODUCTDESC, 3, 80);
|
||||||
$doleditor->Create();
|
$doleditor->Create();
|
||||||
|
|
||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
print '</tr>';
|
print '</tr>';
|
||||||
print '</table>';
|
print '</table>';
|
||||||
|
|||||||
@ -147,12 +147,12 @@ if ($action == 'edit')
|
|||||||
{
|
{
|
||||||
print '<script type="text/javascript" language="javascript">
|
print '<script type="text/javascript" language="javascript">
|
||||||
jQuery(document).ready(function() {
|
jQuery(document).ready(function() {
|
||||||
jQuery("#main_lang_default").change(function() {
|
$("#main_lang_default").change(function() {
|
||||||
jQuery("#check_MAIN_LANG_DEFAULT").attr(\'checked\', true);
|
$("#check_MAIN_LANG_DEFAULT").attr(\'checked\', true);
|
||||||
});
|
});
|
||||||
jQuery("#main_size_liste_limit").keyup(function() {
|
$("#main_size_liste_limit").keyup(function() {
|
||||||
if (jQuery("#main_size_liste_limit").val() == \'\') jQuery("#check_SIZE_LISTE_LIMIT").attr(\'checked\', false);
|
if ($(this).val().length) $("#check_SIZE_LISTE_LIMIT").attr(\'checked\', true);
|
||||||
else jQuery("#check_SIZE_LISTE_LIMIT").attr(\'checked\', true);
|
else $("#check_SIZE_LISTE_LIMIT").attr(\'checked\', false);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
</script>';
|
</script>';
|
||||||
|
|||||||
@ -317,7 +317,7 @@ if ($result)
|
|||||||
print '</td>';
|
print '</td>';
|
||||||
|
|
||||||
// Permission and tick
|
// Permission and tick
|
||||||
if ($fuser->admin && $objMod->rights_admin_allowed) // Permission own because admin
|
if (! empty($fuser->admin) && ! empty($objMod->rights_admin_allowed)) // Permission own because admin
|
||||||
{
|
{
|
||||||
if ($caneditperms)
|
if ($caneditperms)
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user