Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
open-source
OSE
Commits
d44a22ba
Commit
d44a22ba
authored
May 27, 2019
by
Laurent Lécluse
Browse files
Correction du bug
https://redmine.unicaen.fr/Etablissement/issues/22406
parent
9f96f2e5
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.md
View file @
d44a22ba
...
...
@@ -3,6 +3,12 @@ title: "Changements intervenus sur OSE"
author
:
Laurent Lécluse - DSI - Unicaen
---
# OSE 8.1.2 (à venir)
## Corrections de bugs
*
Depuis l'offre de formation, lorsqu'un élément a plusieurs centres de coûts associés, les historiques ne sont plus pris en compte
# OSE 8.1.1
## Corrections de bugs
...
...
module/Application/src/Application/Entity/Db/ElementPedagogique.php
View file @
d44a22ba
...
...
@@ -151,7 +151,7 @@ class ElementPedagogique implements HistoriqueAwareInterface, AnneeAwareInterfac
public
function
__toString
()
{
return
$this
->
get
Source
Code
()
.
' - '
.
$this
->
getLibelle
();
return
$this
->
getCode
()
.
' - '
.
$this
->
getLibelle
();
}
...
...
@@ -739,7 +739,7 @@ class ElementPedagogique implements HistoriqueAwareInterface, AnneeAwareInterfac
}
$f
=
function
(
CentreCoutEp
$ccEp
)
use
(
$th
)
{
return
$ccEp
->
getTypeHeures
()
===
$th
;
return
(
$ccEp
->
getTypeHeures
()
===
$th
)
&&
empty
(
$ccEp
->
getHistoDestruction
())
;
};
$slice
=
$this
->
centreCoutEp
->
filter
(
$f
);
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment