branch feature/23 created (now 27142ba)
This is an automated email from the git hooks/post-receive script. New change to branch feature/23 in repository observe. See https://gitlab.nuiton.org/codelutin/observe.git at 27142ba La plage de date n'est pas persisté sur l'écran d'édition des RTP (closes #23) This branch includes the following new commits: new 27142ba La plage de date n'est pas persisté sur l'écran d'édition des RTP (closes #23) The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit 27142bab3199795a8c436257f659e430b4da76b5 Author: Tony CHEMIT <chemit@codelutin.com> Date: Wed Dec 21 18:09:49 2016 +0100 La plage de date n'est pas persisté sur l'écran d'édition des RTP (closes #23) -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch feature/23 in repository observe. See https://gitlab.nuiton.org/codelutin/observe.git commit 27142bab3199795a8c436257f659e430b4da76b5 Author: Tony CHEMIT <chemit@codelutin.com> Date: Wed Dec 21 18:09:49 2016 +0100 La plage de date n'est pas persisté sur l'écran d'édition des RTP (closes #23) --- .../topia/binder/referential/common/LengthWeightParameterBinder.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/services-topia-binder/src/main/java/fr/ird/observe/services/topia/binder/referential/common/LengthWeightParameterBinder.java b/services-topia-binder/src/main/java/fr/ird/observe/services/topia/binder/referential/common/LengthWeightParameterBinder.java index 00c0e57..1aff7a8 100644 --- a/services-topia-binder/src/main/java/fr/ird/observe/services/topia/binder/referential/common/LengthWeightParameterBinder.java +++ b/services-topia-binder/src/main/java/fr/ird/observe/services/topia/binder/referential/common/LengthWeightParameterBinder.java @@ -56,6 +56,8 @@ public class LengthWeightParameterBinder extends ReferentialBinderSupport<Length entity.setSex(toEntity(dto.getSex(), Sex.class)); entity.setCoefficients(dto.getCoefficients()); entity.setSource(dto.getSource()); + entity.setStartDate(dto.getStartDate()); + entity.setEndDate(dto.getEndDate()); } @@ -70,6 +72,8 @@ public class LengthWeightParameterBinder extends ReferentialBinderSupport<Length dto.setSex(toReferentialReference(referentialLocale, entity.getSex(), SexDto.class)); dto.setCoefficients(entity.getCoefficients()); dto.setSource(entity.getSource()); + dto.setStartDate(entity.getStartDate()); + dto.setEndDate(entity.getEndDate()); } -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
participants (1)
-
codelutin.com scm