Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
open-source
OSE
Commits
4b8c4a6a
Commit
4b8c4a6a
authored
Apr 24, 2018
by
Laurent Lécluse
Browse files
TBL amélioration mise à jour globale
parent
8e1c9d66
Changes
6
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
4b8c4a6a
...
...
@@ -3,6 +3,13 @@ title: "Changements intervenus sur OSE"
author: Laurent Lécluse - DSI - Unicaen
...
#OSE 6.3.2 (en développement)
## Corrections de bugs
* Mise à jour des tableaux de bord lancée depuis le CRON plus fiable : si un tableau de bord plante,
les autres sont tout de même mis à jour.
#OSE 6.3.1
## Corrections de bugs
...
...
code/test6.php
View file @
4b8c4a6a
...
...
@@ -7,15 +7,11 @@
* @var $sl \Zend\ServiceManager\ServiceLocatorInterface
*/
use
UnicaenImport\Service\QueryGenerator
Service
;
use
Application\Service\Workflow
Service
;
/** @var QueryGeneratorService $qg */
$qg
=
$sl
->
get
(
QueryGeneratorService
::
class
);
$sm
=
$qg
->
getEntityManager
()
->
getConnection
()
->
getSchemaManager
();
/** @var WorkflowService $s */
$s
=
$sl
->
get
(
WorkflowService
::
class
);
//$r = $qg->makeDiffView('VOLUME_HORAIRE_ENS');
var_dump
(
$sm
->
listViews
());
\ No newline at end of file
$s
->
calculerTousTableauxBord
();
\ No newline at end of file
data/Déploiement/Changements.pdf
View file @
4b8c4a6a
No preview for this file type
data/Déploiement/Procédure d'installation.pdf
View file @
4b8c4a6a
No preview for this file type
data/Déploiement/Procédure de mise à jour.pdf
View file @
4b8c4a6a
No preview for this file type
data/Sql/Volumes horaires Services.sql
View file @
4b8c4a6a
...
...
@@ -31,9 +31,9 @@ from
LEFT
JOIN
periode
epp
on
epp
.
id
=
ep
.
periode_id
where
1
=
1
AND
i
.
id
=
1
0344
--
AND s.id =
3208
AND
vh
.
histo_destruction
IS
NULL
AND
i
.
id
=
1
7147
--
AND s.id =
84722
--
AND vh.histo_destruction IS NULL
AND
tvh
.
code
=
'PREVU'
--AND contrat_id = 341
--AND tvh.id = 2
...
...
@@ -46,13 +46,16 @@ order by
select
*
from
utilisateur
where
id
in
(
3
,
234
);
--
INSERT INTO VALIDATION_VOL_HORAIRE (VALIDATION_ID,VOLUME_HORAIRE_ID) VALUES (
42, 725
);
--
DELETE FROM VALIDATION_VOL_HORAIRE WHERE
VALIDATION_ID in (158,175) AND
VOLUME_HORAIRE_ID in (
634
);
INSERT
INTO
VALIDATION_VOL_HORAIRE
(
VALIDATION_ID
,
VOLUME_HORAIRE_ID
)
VALUES
(
101723
,
239374
);
DELETE
FROM
VALIDATION_VOL_HORAIRE
WHERE
VOLUME_HORAIRE_ID
in
(
239374
,
244921
,
244923
);
SELECT
COUNT
(
*
)
FROM
VALIDATION_VOL_HORAIRE
WHERE
VOLUME_HORAIRE_ID
=
187
;
--DELETE FROM volume_horaire WHERE id IN (727);
--update volume_horaire set heures = 89 where id=29293;
--update volume_horaire set histo_destruction = null, histo_destructeur_id = null where id = 24883;
DELETE
FROM
volume_horaire
WHERE
id
IN
(
239374
,
244921
,
244923
);
update
volume_horaire
set
heures
=
-
6
where
id
=
244923
;
update
volume_horaire
set
histo_destruction
=
sysdate
,
histo_destructeur_id
=
4
where
id
in
(
219902
,
233875
);
...
...
@@ -85,3 +88,7 @@ where
--AND validation_id is not null
order
by
s_id
,
type_volume_horaire
;
/
BEGIN
UNICAEN_TBL
.
CALCULER
(
'formule'
,
UNICAEN_TBL
.
MAKE_PARAMS
(
'intervenant_id'
,
19711
));
END
;
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment