cvsimport

This commit is contained in:
Laurent Destailleur 2011-08-08 16:14:48 +00:00
commit ae61fc3dc0
5 changed files with 17 additions and 13 deletions

View File

@ -19,9 +19,9 @@
/** /**
* \file htdocs/comm/clients.php * \file htdocs/comm/clients.php
* \ingroup commercial, societe * \ingroup commercial societe
* \brief List of customers * \brief List of customers
* \version $Id: clients.php,v 1.79 2011/08/03 00:46:26 eldy Exp $ * \version $Id: clients.php,v 1.80 2011/08/08 16:15:05 eldy Exp $
*/ */
require("../main.inc.php"); require("../main.inc.php");
@ -249,5 +249,5 @@ else
$db->close(); $db->close();
llxFooter('$Date: 2011/08/03 00:46:26 $ - $Revision: 1.79 $'); llxFooter('$Date: 2011/08/08 16:15:05 $ - $Revision: 1.80 $');
?> ?>

View File

@ -23,9 +23,9 @@
/** /**
* \file htdocs/comm/fiche.php * \file htdocs/comm/fiche.php
* \ingroup commercial, compta * \ingroup commercial compta
* \brief Page to show customer card of a third party * \brief Page to show customer card of a third party
* \version $Id: fiche.php,v 1.282 2011/08/03 00:46:27 eldy Exp $ * \version $Id: fiche.php,v 1.283 2011/08/08 16:15:05 eldy Exp $
*/ */
require("../main.inc.php"); require("../main.inc.php");
@ -891,5 +891,5 @@ else
$db->close(); $db->close();
llxFooter('$Date: 2011/08/03 00:46:27 $ - $Revision: 1.282 $'); llxFooter('$Date: 2011/08/08 16:15:05 $ - $Revision: 1.283 $');
?> ?>

View File

@ -1,5 +1,5 @@
-- --
-- $Id: 3.0.0-3.1.0.sql,v 1.86 2011/08/08 16:07:33 hregis Exp $ -- $Id: 3.0.0-3.1.0.sql,v 1.87 2011/08/08 16:13:28 hregis Exp $
-- --
-- Be carefull to requests order. -- Be carefull to requests order.
-- This file must be loaded by calling /install/index.php page -- This file must be loaded by calling /install/index.php page
@ -486,3 +486,5 @@ ALTER TABLE llx_user ADD civilite varchar(6) after entity;
ALTER TABLE llx_advanced_extrafields_options DROP COLUMN tms; ALTER TABLE llx_advanced_extrafields_options DROP COLUMN tms;
ALTER TABLE llx_advanced_extrafields_options CHANGE COLUMN rang pos integer; ALTER TABLE llx_advanced_extrafields_options CHANGE COLUMN rang pos integer;
ALTER TABLE llx_advanced_extrafields CHANGE COLUMN rang pos integer; ALTER TABLE llx_advanced_extrafields CHANGE COLUMN rang pos integer;
ALTER TABLE llx_advanced_extrafields CHANGE COLUMN format type varchar(8) NOT NULL;
ALTER TABLE llx_advanced_extrafields CHANGE COLUMN fieldsize size integer;

View File

@ -14,7 +14,7 @@
-- You should have received a copy of the GNU General Public License -- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>. -- along with this program. If not, see <http://www.gnu.org/licenses/>.
-- --
-- $Id: llx_advanced_extrafields.sql,v 1.3 2011/08/08 16:07:33 hregis Exp $ -- $Id: llx_advanced_extrafields.sql,v 1.4 2011/08/08 16:13:29 hregis Exp $
-- =================================================================== -- ===================================================================
create table llx_advanced_extrafields create table llx_advanced_extrafields
@ -27,7 +27,7 @@ create table llx_advanced_extrafields
name varchar(64) NOT NULL, -- code name of field name varchar(64) NOT NULL, -- code name of field
label varchar(64) NOT NULL, label varchar(64) NOT NULL,
type varchar(8) NOT NULL, -- date, string, integer, float type varchar(8) NOT NULL, -- date, string, integer, float
fieldsize integer, size integer,
maxlength integer, maxlength integer,
options varchar(255), options varchar(255),

View File

@ -18,16 +18,18 @@
*/ */
/** /**
* \mainpage Dolibarr project
* \file htdocs/lib/doxygen.php * \file htdocs/lib/doxygen.php
* \ingroup core * \ingroup core
* \brief Page used as doxygen documentation header * \version $Id: doxygen.php,v 1.8 2011/08/08 16:14:48 eldy Exp $
* \version $Id: doxygen.php,v 1.7 2011/08/08 16:07:48 eldy Exp $ * \mainpage Dolibarr project
* *
* This is source documentation for Dolibarr ERP/CRM.<br> * This is source documentation for Dolibarr ERP/CRM.<br>
* This documentation can be built or updated running the script <b>dolibarr-doxygen-build.pl</b> or from Eclipse with Doxygen plugin.<br> * This documentation can be built or updated running the script <b>dolibarr-doxygen-build.pl</b> or from Eclipse with Doxygen plugin.<br>
* <br> * <br>
* Dolibarr official web site: <a href="http://www.dolibarr.org">www.dolibarr.org</a><br> * Dolibarr official web site: <a href="http://www.dolibarr.org">www.dolibarr.org</a><br>
* Dolibarr site francophone: <a href="http://www.dolibarr.fr">www.dolibarr.fr</a><br> * <br>
* Dolibarr french portal: <a href="http://www.dolibarr.fr">www.dolibarr.fr</a><br>
* Dolibarr spanish portal: <a href="http://www.dolibarr.es">www.dolibarr.es</a><br>
* <br>
*/ */
?> ?>