Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
sygal
Manage
Activity
Members
Labels
Plan
Wiki
Redmine
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
open-source
sygal
Commits
3022cac5
Commit
3022cac5
authored
Mar 10, 2020
by
Bertrand Gauthier
Browse files
Options
Downloads
Patches
Plain Diff
Doc de version
parent
1cde817f
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+6
-0
6 additions, 0 deletions
CHANGELOG.md
doc/release-notes/v1.4.3.md
+54
-0
54 additions, 0 deletions
doc/release-notes/v1.4.3.md
with
60 additions
and
0 deletions
CHANGELOG.md
+
6
−
0
View file @
3022cac5
Journal des modifications
Journal des modifications
=========================
=========================
1.
4.3 (11/03/2020)
------------------
-
Import des types de financement de thèse.
1.4.2 (14/02/2020)
1.4.2 (14/02/2020)
------------------
------------------
...
...
This diff is collapsed.
Click to expand it.
doc/release-notes/v1.4.3.md
0 → 100644
+
54
−
0
View file @
3022cac5
# Version 1.4.3
## 1. Sur le serveur d'application
-
Placez-vous dans le répertoire de l'application puis lancez la commande suivante
pour installer la nouvelle version :
```
bash
git fetch
--tags
&&
git checkout
--force
1.4.3
&&
\
bash ./install.sh
```
-
Selon le moteur PHP que vous avez installé, rechargez le service, exemple :
-
php7.0-fpm :
`service php7.0-fpm reload`
-
apache2-mod-php7.0 :
`service apache2 reload`
## 2. Dans la base de données
Les tables
`TMP_FINANCEMENT`
et
`FINANCEMENT`
doivent être modifiées pour pouvoir accueillir les codes/libellés
des types de financement fournis par le web service v1.3.3 :
```
sql
alter
table
TMP_FINANCEMENT
add
CODE_TYPE_FINANCEMENT
varchar2
(
8
)
;
alter
table
TMP_FINANCEMENT
add
LIBELLE_TYPE_FINANCEMENT
varchar2
(
100
)
;
alter
table
FINANCEMENT
add
CODE_TYPE_FINANCEMENT
varchar2
(
8
)
;
alter
table
FINANCEMENT
add
LIBELLE_TYPE_FINANCEMENT
varchar2
(
100
)
;
```
Ainsi que la vue
`SRC_FINANCEMENT`
:
```
sql
create
or
replace
view
SRC_FINANCEMENT
as
SELECT
NULL
AS
id
,
tmp
.
SOURCE_CODE
AS
SOURCE_CODE
,
src
.
ID
AS
source_id
,
--e.id AS etablissement_id,
t
.
id
AS
THESE_ID
,
to_number
(
tmp
.
ANNEE
)
AS
ANNEE
,
ofi
.
id
AS
ORIGINE_FINANCEMENT_ID
,
tmp
.
COMPLEMENT_FINANCEMENT
,
tmp
.
QUOTITE_FINANCEMENT
,
tmp
.
DATE_DEBUT_FINANCEMENT
as
DATE_DEBUT
,
tmp
.
DATE_FIN_FINANCEMENT
as
DATE_FIN
,
tmp
.
CODE_TYPE_FINANCEMENT
,
tmp
.
LIBELLE_TYPE_FINANCEMENT
FROM
TMP_FINANCEMENT
tmp
JOIN
SOURCE
src
ON
src
.
CODE
=
tmp
.
SOURCE_ID
JOIN
THESE
t
on
t
.
SOURCE_CODE
=
tmp
.
THESE_ID
JOIN
ORIGINE_FINANCEMENT
ofi
on
ofi
.
SOURCE_CODE
=
tmp
.
ORIGINE_FINANCEMENT_ID
;
```
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