forked from Wavyzz/dolibarr
Doc
This commit is contained in:
@@ -1,9 +1,10 @@
|
|||||||
--------------------------------------------------------------
|
--------------------------------------------------------------
|
||||||
English Dolibarr ChangeLog
|
English Dolibarr ChangeLog
|
||||||
$Id: ChangeLog,v 1.423 2011/07/07 16:03:53 simnandez Exp $
|
$Id: ChangeLog,v 1.424 2011/07/13 14:16:39 eldy Exp $
|
||||||
--------------------------------------------------------------
|
--------------------------------------------------------------
|
||||||
|
|
||||||
***** ChangeLog for 3.1 compared to 3.0 *****
|
***** ChangeLog for 3.1 compared to 3.0 *****
|
||||||
|
WARNING: IE6 browser is no more supported in this version.
|
||||||
For users:
|
For users:
|
||||||
- New: War against number of clicks:
|
- New: War against number of clicks:
|
||||||
- When adding a free bank transaction, form to add next one is still
|
- When adding a free bank transaction, form to add next one is still
|
||||||
|
|||||||
@@ -20,7 +20,7 @@
|
|||||||
/**
|
/**
|
||||||
* \file htdocs/admin/system/dolibarr.php
|
* \file htdocs/admin/system/dolibarr.php
|
||||||
* \brief Page to show Dolibarr informations
|
* \brief Page to show Dolibarr informations
|
||||||
* \version $Id$
|
* \version $Id: dolibarr.php,v 1.58 2011/07/13 13:15:17 eldy Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require("../../main.inc.php");
|
require("../../main.inc.php");
|
||||||
@@ -163,7 +163,7 @@ if (function_exists('date_default_timezone_get'))
|
|||||||
print '<tr '.$bc[$var].'><td width="300">'.$langs->trans("CurrentTimeZone").'</td><td>'; // Timezone server PHP
|
print '<tr '.$bc[$var].'><td width="300">'.$langs->trans("CurrentTimeZone").'</td><td>'; // Timezone server PHP
|
||||||
$a=date_default_timezone_get();
|
$a=date_default_timezone_get();
|
||||||
$a.=' ('.(-dol_mktime(0,0,0,1,1,1970)>0?'+':'').(-dol_mktime(0,0,0,1,1,1970)).')';
|
$a.=' ('.(-dol_mktime(0,0,0,1,1,1970)>0?'+':'').(-dol_mktime(0,0,0,1,1,1970)).')';
|
||||||
print $form->textwithtooltip($a,$txt,2,1,img_info());
|
print $form->textwithtooltip($a,$txt,2,1,img_info(''));
|
||||||
print '</td></tr>'."\n"; // value defined in http://fr3.php.net/manual/en/timezones.europe.php
|
print '</td></tr>'."\n"; // value defined in http://fr3.php.net/manual/en/timezones.europe.php
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
@@ -171,7 +171,7 @@ else
|
|||||||
$var=!$var;
|
$var=!$var;
|
||||||
print '<tr '.$bc[$var].'><td width="300">'.$langs->trans("PHPServerOffsetWithGreenwich").'</td><td>';
|
print '<tr '.$bc[$var].'><td width="300">'.$langs->trans("PHPServerOffsetWithGreenwich").'</td><td>';
|
||||||
$a=(-dol_mktime(0,0,0,1,1,1970)>0?'+':'').(-dol_mktime(0,0,0,1,1,1970));
|
$a=(-dol_mktime(0,0,0,1,1,1970)>0?'+':'').(-dol_mktime(0,0,0,1,1,1970));
|
||||||
print $form->textwithtooltip($a,$txt,2,1,img_info());
|
print $form->textwithtooltip($a,$txt,2,1,img_info(''));
|
||||||
print '</td></tr>'."\n";
|
print '</td></tr>'."\n";
|
||||||
}
|
}
|
||||||
$var=!$var;
|
$var=!$var;
|
||||||
@@ -213,5 +213,5 @@ print '<tr '.$bc[$var].'><td width="300">=> '.$langs->trans("File encoding").'</
|
|||||||
print '</table>';
|
print '</table>';
|
||||||
print '<br>';
|
print '<br>';
|
||||||
|
|
||||||
llxFooter('$Date$ - $Revision$');
|
llxFooter('$Date: 2011/07/13 13:15:17 $ - $Revision: 1.58 $');
|
||||||
?>
|
?>
|
||||||
|
|||||||
@@ -31,7 +31,7 @@
|
|||||||
* \file htdocs/core/class/html.form.class.php
|
* \file htdocs/core/class/html.form.class.php
|
||||||
* \ingroup core
|
* \ingroup core
|
||||||
* \brief File of class with all html predefined components
|
* \brief File of class with all html predefined components
|
||||||
* \version $Id: html.form.class.php,v 1.188 2011/07/10 17:28:09 hregis Exp $
|
* \version $Id: html.form.class.php,v 1.189 2011/07/13 14:03:15 eldy Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
@@ -1771,12 +1771,14 @@ class Form
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Retourne la liste deroulante des differents etats d'une propal.
|
* Return combo list of differents status of a proposal
|
||||||
* Les valeurs de la liste sont les id de la table c_propalst
|
* Values are id of table c_propalst
|
||||||
* \param selected etat pre-selectionne
|
* @param selected etat pre-selectionne
|
||||||
*/
|
*/
|
||||||
function select_propal_statut($selected='')
|
function select_propal_statut($selected='')
|
||||||
{
|
{
|
||||||
|
global $langs;
|
||||||
|
|
||||||
$sql = "SELECT id, code, label, active FROM ".MAIN_DB_PREFIX."c_propalst";
|
$sql = "SELECT id, code, label, active FROM ".MAIN_DB_PREFIX."c_propalst";
|
||||||
$sql .= " WHERE active = 1";
|
$sql .= " WHERE active = 1";
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
/* Copyright (C) 2002-2006 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
/* Copyright (C) 2002-2006 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||||
* Copyright (C) 2004-2010 Laurent Destailleur <eldy@users.sourceforge.net>
|
* Copyright (C) 2004-2011 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||||
* Copyright (C) 2005-2009 Regis Houssin <regis@dolibarr.fr>
|
* Copyright (C) 2005-2009 Regis Houssin <regis@dolibarr.fr>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
@@ -22,7 +22,7 @@
|
|||||||
* \file htdocs/fourn/facture/index.php
|
* \file htdocs/fourn/facture/index.php
|
||||||
* \ingroup fournisseur,facture
|
* \ingroup fournisseur,facture
|
||||||
* \brief List of suppliers invoices
|
* \brief List of suppliers invoices
|
||||||
* \version $Id$
|
* \version $Id: index.php,v 1.84 2011/07/13 13:10:51 eldy Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require("../../main.inc.php");
|
require("../../main.inc.php");
|
||||||
@@ -35,6 +35,7 @@ if (!$user->rights->fournisseur->facture->lire)
|
|||||||
accessforbidden();
|
accessforbidden();
|
||||||
|
|
||||||
$langs->load("companies");
|
$langs->load("companies");
|
||||||
|
$langs->load("bills");
|
||||||
|
|
||||||
$socid = $_GET["socid"];
|
$socid = $_GET["socid"];
|
||||||
|
|
||||||
@@ -292,5 +293,5 @@ else
|
|||||||
$db->close();
|
$db->close();
|
||||||
|
|
||||||
|
|
||||||
llxFooter('$Date$ - $Revision$');
|
llxFooter('$Date: 2011/07/13 13:10:51 $ - $Revision: 1.84 $');
|
||||||
?>
|
?>
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
* \file htdocs/includes/modules/fichinter/pdf_soleil.modules.php
|
* \file htdocs/includes/modules/fichinter/pdf_soleil.modules.php
|
||||||
* \ingroup ficheinter
|
* \ingroup ficheinter
|
||||||
* \brief Fichier de la classe permettant de generer les fiches d'intervention au modele Soleil
|
* \brief Fichier de la classe permettant de generer les fiches d'intervention au modele Soleil
|
||||||
* \version $Id$
|
* \version $Id: pdf_soleil.modules.php,v 1.101 2011/07/13 14:09:35 eldy Exp $
|
||||||
*/
|
*/
|
||||||
require_once(DOL_DOCUMENT_ROOT."/includes/modules/fichinter/modules_fichinter.php");
|
require_once(DOL_DOCUMENT_ROOT."/includes/modules/fichinter/modules_fichinter.php");
|
||||||
require_once(DOL_DOCUMENT_ROOT."/lib/company.lib.php");
|
require_once(DOL_DOCUMENT_ROOT."/lib/company.lib.php");
|
||||||
@@ -105,7 +105,7 @@ class pdf_soleil extends ModelePDFFicheinter
|
|||||||
$result=$fichinter->fetch($id);
|
$result=$fichinter->fetch($id);
|
||||||
if ($result < 0)
|
if ($result < 0)
|
||||||
{
|
{
|
||||||
dol_print_error($db,$fichinter->error);
|
dol_print_error($this->db,$fichinter->error);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -193,4 +193,4 @@ Associations=Foundations
|
|||||||
Collectivités=Organizations
|
Collectivités=Organizations
|
||||||
Particuliers=Personal
|
Particuliers=Personal
|
||||||
Entreprises=Companies
|
Entreprises=Companies
|
||||||
DOLIBARRFOUNDATION_PAYMENT_FORM=To make your subscription payment using a bank transfer, see page <a href="http://wiki.dolibarr.org/index.php/Subscribe#To_subscribe_making_a_bank_transfer">http://wiki.dolibarr.org/index.php/Subscribe</a>.<br>To pay using a Credit Card or Paypal, click on button at bottom of this page.<br><br>
|
DOLIBARRFOUNDATION_PAYMENT_FORM=To make your subscription payment using a bank transfer, see page <a target="_blank" href="http://wiki.dolibarr.org/index.php/Subscribe#To_subscribe_making_a_bank_transfer">http://wiki.dolibarr.org/index.php/Subscribe</a>.<br>To pay using a Credit Card or Paypal, click on button at bottom of this page.<br>
|
||||||
|
|||||||
@@ -197,4 +197,4 @@ Associations=Associations
|
|||||||
Collectivités=Collectivités
|
Collectivités=Collectivités
|
||||||
Particuliers=Particuliers
|
Particuliers=Particuliers
|
||||||
Entreprises=Entreprises
|
Entreprises=Entreprises
|
||||||
DOLIBARRFOUNDATION_PAYMENT_FORM=Pour réaliser le paiement de votre cotisation par virement bancaire ou par chèque, consulter la page <a href="http://wiki.dolibarr.org/index.php/Adh%C3%A9rer#Pour_une_adh.C3.A9sion_par_ch.C3.A8que">http://wiki.dolibarr.org/index.php/Adhérer</a>.<br>Pour payer dès maintenant par Carte Bancaire ou Paypal, cliquer sur le bouton au bas de cette page.<br><br>
|
DOLIBARRFOUNDATION_PAYMENT_FORM=Pour réaliser le paiement de votre cotisation par virement bancaire ou par chèque, consulter la page <a target="_blank" href="http://wiki.dolibarr.org/index.php/Adh%C3%A9rer#Pour_une_adh.C3.A9sion_par_ch.C3.A8que">http://wiki.dolibarr.org/index.php/Adhérer</a>.<br>Pour payer dès maintenant par Carte Bancaire ou Paypal, cliquer sur le bouton au bas de cette page.<br>
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
* \ingroup paybox
|
* \ingroup paybox
|
||||||
* \brief File to offer a way to make a payment for a particular Dolibarr entity
|
* \brief File to offer a way to make a payment for a particular Dolibarr entity
|
||||||
* \author Laurent Destailleur
|
* \author Laurent Destailleur
|
||||||
* \version $Id: newpayment.php,v 1.59 2011/07/13 12:00:18 eldy Exp $
|
* \version $Id: newpayment.php,v 1.60 2011/07/13 12:03:30 eldy Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
define("NOLOGIN",1); // This means this output page does not require to be logged.
|
define("NOLOGIN",1); // This means this output page does not require to be logged.
|
||||||
@@ -193,6 +193,7 @@ if (! empty($conf->global->PAYBOX_NEWFORM_TEXT))
|
|||||||
$langs->load("members");
|
$langs->load("members");
|
||||||
if (preg_match('/^\((.*)\)$/',$conf->global->PAYBOX_NEWFORM_TEXT,$reg)) $text.=$langs->trans($reg[1])."<br>\n";
|
if (preg_match('/^\((.*)\)$/',$conf->global->PAYBOX_NEWFORM_TEXT,$reg)) $text.=$langs->trans($reg[1])."<br>\n";
|
||||||
else $text.=$conf->global->PAYBOX_NEWFORM_TEXT."<br>\n";
|
else $text.=$conf->global->PAYBOX_NEWFORM_TEXT."<br>\n";
|
||||||
|
$text='<tr><td align="center"><br>'.$text.'<br></td></tr>'."\n";
|
||||||
}
|
}
|
||||||
if (empty($text))
|
if (empty($text))
|
||||||
{
|
{
|
||||||
@@ -728,5 +729,5 @@ html_print_paybox_footer($mysoc,$langs);
|
|||||||
|
|
||||||
$db->close();
|
$db->close();
|
||||||
|
|
||||||
llxFooterPayBox('$Date: 2011/07/13 12:00:18 $ - $Revision: 1.59 $');
|
llxFooterPayBox('$Date: 2011/07/13 12:03:30 $ - $Revision: 1.60 $');
|
||||||
?>
|
?>
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
* \ingroup paypal
|
* \ingroup paypal
|
||||||
* \brief File to offer a way to make a payment for a particular Dolibarr entity
|
* \brief File to offer a way to make a payment for a particular Dolibarr entity
|
||||||
* \author Laurent Destailleur
|
* \author Laurent Destailleur
|
||||||
* \version $Id: newpayment.php,v 1.25 2011/07/13 12:03:29 eldy Exp $
|
* \version $Id: newpayment.php,v 1.24 2011/07/13 12:00:18 eldy Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
define("NOLOGIN",1); // This means this output page does not require to be logged.
|
define("NOLOGIN",1); // This means this output page does not require to be logged.
|
||||||
@@ -287,7 +287,6 @@ if (! empty($conf->global->PAYPAL_NEWFORM_TEXT))
|
|||||||
$langs->load("members");
|
$langs->load("members");
|
||||||
if (preg_match('/^\((.*)\)$/',$conf->global->PAYPAL_NEWFORM_TEXT,$reg)) $text.=$langs->trans($reg[1])."<br>\n";
|
if (preg_match('/^\((.*)\)$/',$conf->global->PAYPAL_NEWFORM_TEXT,$reg)) $text.=$langs->trans($reg[1])."<br>\n";
|
||||||
else $text.=$conf->global->PAYPAL_NEWFORM_TEXT."<br>\n";
|
else $text.=$conf->global->PAYPAL_NEWFORM_TEXT."<br>\n";
|
||||||
$text='<tr><td align="center"><br>'.$text.'<br></td></tr>'."\n";
|
|
||||||
}
|
}
|
||||||
if (empty($text))
|
if (empty($text))
|
||||||
{
|
{
|
||||||
@@ -947,5 +946,5 @@ html_print_paypal_footer($mysoc,$langs);
|
|||||||
|
|
||||||
$db->close();
|
$db->close();
|
||||||
|
|
||||||
llxFooterPaypal('$Date: 2011/07/13 12:03:29 $ - $Revision: 1.25 $');
|
llxFooterPaypal('$Date: 2011/07/13 12:00:18 $ - $Revision: 1.24 $');
|
||||||
?>
|
?>
|
||||||
|
|||||||
Reference in New Issue
Block a user