Ajoute la variable canvas

This commit is contained in:
Rodolphe Quiedeville 2006-11-30 14:23:38 +00:00
parent 9eb28a0d85
commit 3490f15084

View File

@ -1,8 +1,9 @@
<?php <?php
/* Copyright (C) 2001-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org> /* Copyright (C) 2001-2006 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2004-2006 Laurent Destailleur <eldy@users.sourceforge.net> * Copyright (C) 2004-2006 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2005-2006 Regis Houssin <regis.houssin@cap-networks.com> * Copyright (C) 2005-2006 Regis Houssin <regis.houssin@cap-networks.com>
* Copyright (C) 2006 Andre Cianfarani <acianfa@free.fr> * Copyright (C) 2006 Andre Cianfarani <acianfa@free.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
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or * the Free Software Foundation; either version 2 of the License, or
@ -28,7 +29,6 @@
\version $Revision$ \version $Revision$
*/ */
/** /**
\class Product \class Product
\brief Classe permettant la gestion des produits prédéfinis \brief Classe permettant la gestion des produits prédéfinis
@ -59,7 +59,7 @@ class Product
var $typeprodserv; var $typeprodserv;
var $error; var $error;
var $canvas; // Canevas a utiliser si le produit n'est pas un produit generique
/** /**
* \brief Constructeur de la classe * \brief Constructeur de la classe
@ -77,6 +77,7 @@ class Product
$this->typeprodser[0]=$langs->trans("Product"); $this->typeprodser[0]=$langs->trans("Product");
$this->typeprodser[1]=$langs->trans("Service"); $this->typeprodser[1]=$langs->trans("Service");
$this->canvas = '';
} }