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
c9d63238
Commit
c9d63238
authored
9 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Add fields at bank account description to manage corretly sepa
generation.
parent
e9687cbc
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.7.0-3.8.0.sql
+3
-0
3 additions, 0 deletions
htdocs/install/mysql/migration/3.7.0-3.8.0.sql
htdocs/install/mysql/tables/llx_societe_rib.sql
+4
-2
4 additions, 2 deletions
htdocs/install/mysql/tables/llx_societe_rib.sql
with
7 additions
and
2 deletions
htdocs/install/mysql/migration/3.7.0-3.8.0.sql
+
3
−
0
View file @
c9d63238
...
...
@@ -29,7 +29,10 @@ insert into llx_c_tva(rowid,fk_pays,taux,recuperableonly,localtax1,localtax1_typ
-- Taiwan VAT Rates
insert
into
llx_c_tva
(
rowid
,
fk_pays
,
taux
,
recuperableonly
,
note
,
active
)
values
(
2131
,
213
,
'5'
,
'0'
,
'VAT 5%'
,
1
);
ALTER
TABLE
llx_societe_rib
ADD
COLUMN
rum
varchar
(
32
)
after
default_rib
;
ALTER
TABLE
llx_societe_rib
ADD
COLUMN
frstrecur
varchar
(
16
)
default
'FRST'
after
rum
;
-- Loan
create
table
llx_loan
(
...
...
This diff is collapsed.
Click to expand it.
htdocs/install/mysql/tables/llx_societe_rib.sql
+
4
−
2
View file @
c9d63238
...
...
@@ -37,7 +37,9 @@ create table llx_societe_rib
proprio
varchar
(
60
),
owner_address
varchar
(
255
),
default_rib
smallint
NOT
NULL
DEFAULT
0
,
import_key
varchar
(
14
)
-- import key
rum
varchar
(
32
),
-- RUM value to use for SEPA generation
frstrecur
varchar
(
16
)
default
'FRST'
,
-- 'FRST' or 'RECUR'
import_key
varchar
(
14
)
-- import key
)
ENGINE
=
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