From 0f77e3c05c45eb317c179fca259aaeb0ea392452 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Mon, 2 Jul 2018 17:57:32 +0200 Subject: [PATCH] Fix bad name of field --- htdocs/install/mysql/tables/llx_product_fournisseur_price.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/install/mysql/tables/llx_product_fournisseur_price.sql b/htdocs/install/mysql/tables/llx_product_fournisseur_price.sql index 14664225a9d..ab2efba1455 100755 --- a/htdocs/install/mysql/tables/llx_product_fournisseur_price.sql +++ b/htdocs/install/mysql/tables/llx_product_fournisseur_price.sql @@ -51,6 +51,6 @@ create table llx_product_fournisseur_price fk_multicurrency integer, multicurrency_code varchar(255), multicurrency_tx double(24,8) DEFAULT 1, - multicurrency_price double(24,8) DEFAULT NULL, - multicurrency_price_ttc double(24,8) DEFAULT NULL + multicurrency_unitprice double(24,8) DEFAULT NULL, -- unit price without tax + multicurrency_price double(24,8) DEFAULT NULL )ENGINE=innodb;