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
0bc46fac
Commit
0bc46fac
authored
7 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Add missing vat_src_code on recurring invoices
parent
c673d283
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/5.0.0-6.0.0.sql
+2
-0
2 additions, 0 deletions
htdocs/install/mysql/migration/5.0.0-6.0.0.sql
htdocs/install/mysql/tables/llx_facture_rec.sql
+1
-0
1 addition, 0 deletions
htdocs/install/mysql/tables/llx_facture_rec.sql
with
3 additions
and
0 deletions
htdocs/install/mysql/migration/5.0.0-6.0.0.sql
+
2
−
0
View file @
0bc46fac
...
...
@@ -141,6 +141,8 @@ ALTER TABLE llx_societe_remise_except ADD CONSTRAINT fk_soc_remise_fk_invoice_su
ALTER
TABLE
llx_societe_remise_except
ADD
CONSTRAINT
fk_societe_remise_fk_invoice_supplier
FOREIGN
KEY
(
fk_invoice_supplier
)
REFERENCES
llx_facture_fourn
(
rowid
);
ALTER
TABLE
llx_societe_remise_except
ADD
CONSTRAINT
fk_societe_remise_fk_invoice_supplier_source
FOREIGN
KEY
(
fk_invoice_supplier
)
REFERENCES
llx_facture_fourn
(
rowid
);
ALTER
TABLE
llx_facture_rec
ADD
COLUMN
vat_src_code
varchar
(
10
)
DEFAULT
''
;
UPDATE
llx_const
set
value
=
'moono-lisa'
where
value
=
'moono'
AND
name
=
'FCKEDITOR_SKIN'
;
ALTER
TABLE
llx_product_price
ADD
COLUMN
default_vat_code
varchar
(
10
)
after
tva_tx
;
...
...
This diff is collapsed.
Click to expand it.
htdocs/install/mysql/tables/llx_facture_rec.sql
+
1
−
0
View file @
0bc46fac
...
...
@@ -32,6 +32,7 @@ create table llx_facture_rec
remise_percent
real
DEFAULT
0
,
remise_absolue
real
DEFAULT
0
,
vat_src_code
varchar
(
10
)
DEFAULT
''
,
-- Vat code used as source of vat fields. Not strict foreign key here.
tva
double
(
24
,
8
)
DEFAULT
0
,
localtax1
double
(
24
,
8
)
DEFAULT
0
,
-- amount localtax1
localtax2
double
(
24
,
8
)
DEFAULT
0
,
-- amount localtax2
...
...
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