Skip to content
Snippets Groups Projects
Commit b02d8add authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix a bug in install

parent b137d45b
No related branches found
No related tags found
No related merge requests found
...@@ -38,6 +38,7 @@ For developers: ...@@ -38,6 +38,7 @@ For developers:
- Removed som deprecated files. - Removed som deprecated files.
- Renamed all function dolibarr_xxx into dol_xxx to have same prefix everywhere. - Renamed all function dolibarr_xxx into dol_xxx to have same prefix everywhere.
- Rewrite clone feature for supplier invoice to work like other clone features. - Rewrite clone feature for supplier invoice to work like other clone features.
- First change to manage a future feature "stock PMP value".
***** Changelog for 2.5 compared to 2.4 ***** ***** Changelog for 2.5 compared to 2.4 *****
......
...@@ -153,7 +153,7 @@ $dolibarr_main_authentication="dolibarr"; ...@@ -153,7 +153,7 @@ $dolibarr_main_authentication="dolibarr";
# Examples: # Examples:
# $dolibarr_main_authentication=0; # $dolibarr_main_authentication=0;
# #
$dolibarr_main_force_https=0 $dolibarr_main_force_https="0"
# Parameters used to setup LDAP authentication. # Parameters used to setup LDAP authentication.
......
...@@ -24,7 +24,7 @@ create table llx_product_stock ...@@ -24,7 +24,7 @@ create table llx_product_stock
tms timestamp, tms timestamp,
fk_product integer NOT NULL, fk_product integer NOT NULL,
fk_entrepot integer NOT NULL, fk_entrepot integer NOT NULL,
reel integer -- physical stock reel integer, -- physical stock
pmp double(24,8) default 0 NOT NULL -- PMP value for product in this warehous pmp double(24,8) default 0 NOT NULL -- PMP value for product in this warehous
)type=innodb; )type=innodb;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment