Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dolibarr
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
b02d8add
Commit
b02d8add
authored
16 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Fix a bug in install
parent
b137d45b
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
ChangeLog
+1
-0
1 addition, 0 deletions
ChangeLog
htdocs/conf/conf.php.example
+1
-1
1 addition, 1 deletion
htdocs/conf/conf.php.example
mysql/tables/llx_product_stock.sql
+1
-1
1 addition, 1 deletion
mysql/tables/llx_product_stock.sql
with
3 additions
and
2 deletions
ChangeLog
+
1
−
0
View file @
b02d8add
...
@@ -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 *****
...
...
This diff is collapsed.
Click to expand it.
htdocs/conf/conf.php.example
+
1
−
1
View file @
b02d8add
...
@@ -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.
...
...
This diff is collapsed.
Click to expand it.
mysql/tables/llx_product_stock.sql
+
1
−
1
View file @
b02d8add
...
@@ -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
;
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment