Je remet llx_product_price car elle est aussi utilisée qd multiprix n'est pas actif.
Par contre je supprime la création dans activation multiprix car elle doit toujours exister.
This commit is contained in:
parent
6a7ba4ca5e
commit
b1378a8805
@ -52,15 +52,6 @@ if ($_POST["action"] == 'multiprix')
|
|||||||
{
|
{
|
||||||
$res=$db -> desc_table(MAIN_DB_PREFIX."product_price","price_level");
|
$res=$db -> desc_table(MAIN_DB_PREFIX."product_price","price_level");
|
||||||
if(! $db -> fetch_row())
|
if(! $db -> fetch_row())
|
||||||
{
|
|
||||||
// on ajoute le champ price_level dans la table product_price
|
|
||||||
$field_desc = array('type'=>'TINYINT','value'=>'4','default'=>'1');
|
|
||||||
if(! $db -> add_field(MAIN_DB_PREFIX."product_price","price_level",$field_desc,"after date_price"))
|
|
||||||
{
|
|
||||||
dolibarr_print_error($db);
|
|
||||||
print "<script language='JavaScript'>setTimeout(\"document.location='./produit.php'\",5000);</script>";
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
{
|
||||||
// on ajoute le champ price_level dans la table societe
|
// on ajoute le champ price_level dans la table societe
|
||||||
if(! $db -> add_field(MAIN_DB_PREFIX."societe","price_level",$field_desc))
|
if(! $db -> add_field(MAIN_DB_PREFIX."societe","price_level",$field_desc))
|
||||||
@ -91,7 +82,6 @@ if ($_POST["action"] == 'multiprix')
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
dolibarr_set_const($db, "PRODUIT_MULTIPRICES", $_POST["activate_multiprix"]);
|
dolibarr_set_const($db, "PRODUIT_MULTIPRICES", $_POST["activate_multiprix"]);
|
||||||
|
|||||||
35
mysql/tables/llx_product_price.sql
Normal file
35
mysql/tables/llx_product_price.sql
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
-- ============================================================================
|
||||||
|
-- Copyright (C) 2002-2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||||
|
--
|
||||||
|
-- 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
|
||||||
|
-- the Free Software Foundation; either version 2 of the License, or
|
||||||
|
-- (at your option) any later version.
|
||||||
|
--
|
||||||
|
-- This program is distributed in the hope that it will be useful,
|
||||||
|
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
-- GNU General Public License for more details.
|
||||||
|
--
|
||||||
|
-- You should have received a copy of the GNU General Public License
|
||||||
|
-- along with this program; if not, write to the Free Software
|
||||||
|
-- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
--
|
||||||
|
-- $Id$
|
||||||
|
-- $Source$
|
||||||
|
--
|
||||||
|
-- ============================================================================
|
||||||
|
|
||||||
|
create table llx_product_price
|
||||||
|
(
|
||||||
|
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
||||||
|
tms timestamp,
|
||||||
|
fk_product integer NOT NULL,
|
||||||
|
date_price datetime NOT NULL,
|
||||||
|
price_level tinyint(4) NULL DEFAULT 1,
|
||||||
|
price double,
|
||||||
|
tva_tx double NOT NULL,
|
||||||
|
fk_user_author integer,
|
||||||
|
envente tinyint DEFAULT 1
|
||||||
|
)type=innodb;
|
||||||
|
|
||||||
Loading…
Reference in New Issue
Block a user