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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
1fa43379
Commit
1fa43379
authored
9 years ago
by
Maxime Kohlhaas
Browse files
Options
Downloads
Plain Diff
Merge branch 'develop' of github.com:atm-maxime/dolibarr into develop
parents
7aba52c8
07fd6a3a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
htdocs/install/mysql/migration/3.6.0-3.7.0.sql
+2
-0
2 additions, 0 deletions
htdocs/install/mysql/migration/3.6.0-3.7.0.sql
htdocs/install/mysql/tables/llx_livraison.sql
+1
-1
1 addition, 1 deletion
htdocs/install/mysql/tables/llx_livraison.sql
with
3 additions
and
1 deletion
htdocs/install/mysql/migration/3.6.0-3.7.0.sql
+
2
−
0
View file @
1fa43379
...
...
@@ -1177,3 +1177,5 @@ ALTER TABLE llx_extrafields ADD COLUMN list integer DEFAULT 0 after perms;
-- IVORY COST (id country=21)
insert
into
llx_c_tva
(
rowid
,
fk_pays
,
taux
,
recuperableonly
,
localtax1
,
localtax1_type
,
localtax2
,
localtax2_type
,
note
,
active
)
values
(
211
,
21
,
'0'
,
'0'
,
0
,
0
,
0
,
0
,
'IVA Rate 0'
,
1
);
insert
into
llx_c_tva
(
rowid
,
fk_pays
,
taux
,
recuperableonly
,
localtax1
,
localtax1_type
,
localtax2
,
localtax2_type
,
note
,
active
)
values
(
212
,
21
,
'18'
,
'0'
,
7
.
5
,
2
,
0
,
0
,
'IVA standard rate'
,
1
);
ALTER
TABLE
llx_livraison
MODIFY
COLUMN
date_delivery
DATETIME
NULL
DEFAULT
NULL
;
This diff is collapsed.
Click to expand it.
htdocs/install/mysql/tables/llx_livraison.sql
+
1
−
1
View file @
1fa43379
...
...
@@ -33,7 +33,7 @@ create table llx_livraison
fk_user_author
integer
,
-- createur du bon de livraison
date_valid
datetime
,
-- date de validation
fk_user_valid
integer
,
-- valideur du bon de livraison
date_delivery
date
DEFAULT
NULL
,
-- delivery date
date_delivery
date
time
DEFAULT
NULL
,
-- delivery date
fk_address
integer
,
-- delivery address (deprecated)
fk_statut
smallint
DEFAULT
0
,
total_ht
double
(
24
,
8
)
DEFAULT
0
,
...
...
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