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
42f5ca15
Commit
42f5ca15
authored
11 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Fix: Add missing field info_bits into predefined invoices.
parent
3d62303d
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.4.0-3.5.0.sql
+4
-0
4 additions, 0 deletions
htdocs/install/mysql/migration/3.4.0-3.5.0.sql
htdocs/install/mysql/tables/llx_facturedet_rec.sql
+1
-0
1 addition, 0 deletions
htdocs/install/mysql/tables/llx_facturedet_rec.sql
with
5 additions
and
0 deletions
htdocs/install/mysql/migration/3.4.0-3.5.0.sql
+
4
−
0
View file @
42f5ca15
...
...
@@ -46,6 +46,10 @@ create table llx_commandedet_extrafields
ALTER
TABLE
llx_commandedet_extrafields
ADD
INDEX
idx_commandedet_extrafields
(
fk_object
);
ALTER
TABLE
llx_facturedet_rec
ADD
COLUMN
info_bits
integer
DEFAULT
0
after
total_ttc
;
-- TVA NPR ou non
create
table
llx_facturedet_extrafields
(
rowid
integer
AUTO_INCREMENT
PRIMARY
KEY
,
...
...
This diff is collapsed.
Click to expand it.
htdocs/install/mysql/tables/llx_facturedet_rec.sql
+
1
−
0
View file @
42f5ca15
...
...
@@ -43,6 +43,7 @@ create table llx_facturedet_rec
total_localtax1
double
(
24
,
8
)
DEFAULT
0
,
-- Total LocalTax1 for total quantity of line
total_localtax2
double
(
24
,
8
)
DEFAULT
0
,
-- total LocalTax2 for total quantity of line
total_ttc
double
(
24
,
8
),
-- Total TTC de la ligne toute quantity et incluant remise ligne et globale
info_bits
integer
DEFAULT
0
,
-- TVA NPR ou non
special_code
integer
UNSIGNED
DEFAULT
0
,
-- code pour les lignes speciales
rang
integer
DEFAULT
0
-- ordre d'affichage
...
...
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