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
0f69c33a
Commit
0f69c33a
authored
17 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Fix: Champs obligatoires
parent
390e66d6
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
.settings/org.eclipse.core.resources.prefs
+1
-1
1 addition, 1 deletion
.settings/org.eclipse.core.resources.prefs
mysql/migration/2.1.0-2.2.0.sql
+2
-0
2 additions, 0 deletions
mysql/migration/2.1.0-2.2.0.sql
mysql/tables/llx_chargesociales.sql
+2
-2
2 additions, 2 deletions
mysql/tables/llx_chargesociales.sql
with
5 additions
and
3 deletions
.settings/org.eclipse.core.resources.prefs
+
1
−
1
View file @
0f69c33a
#
Sun
Nov 2
5 21:04:17
GMT 2007
#
Tue
Nov 2
7 03:47:02
GMT 2007
eclipse.preferences.version=1
encoding/<project>=ISO-8859-1
This diff is collapsed.
Click to expand it.
mysql/migration/2.1.0-2.2.0.sql
+
2
−
0
View file @
0f69c33a
...
...
@@ -76,6 +76,8 @@ update llx_c_chargesociales set actioncompta='TAXCSGND' where id = 3;
update
llx_c_chargesociales
set
actioncompta
=
'TAXAPP'
where
id
=
10
;
update
llx_c_chargesociales
set
actioncompta
=
'TAXPRO'
where
id
=
11
;
update
llx_c_chargesociales
set
actioncompta
=
'TAXFON'
where
id
=
20
;
alter
table
llx_chargesociales
modify
fk_type
integer
NOT
NULL
;
alter
table
llx_chargesociales
modify
libelle
varchar
(
80
)
NOT
NULL
;
insert
into
llx_rights_def
(
id
,
libelle
,
module
,
type
,
bydefault
,
subperms
,
perms
)
values
(
114
,
'Rapprocher transactions'
,
'banque'
,
'w'
,
0
,
null
,
'consolidate'
);
update
llx_rights_def
set
libelle
=
'Crer/modifier/supprimer criture bancaire'
where
perms
=
'modifier'
AND
module
=
'banque'
;
...
...
This diff is collapsed.
Click to expand it.
mysql/tables/llx_chargesociales.sql
+
2
−
2
View file @
0f69c33a
...
...
@@ -24,8 +24,8 @@ create table llx_chargesociales
(
rowid
integer
AUTO_INCREMENT
PRIMARY
KEY
,
date_ech
datetime
NOT
NULL
,
-- date d'echeance
libelle
varchar
(
80
),
fk_type
integer
,
libelle
varchar
(
80
)
NOT
NULL
,
fk_type
integer
NOT
NULL
,
amount
real
default
0
NOT
NULL
,
paye
smallint
default
0
NOT
NULL
,
periode
date
...
...
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