branch develop updated (4cc27889 -> 016cd029)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository echobase. See https://gitlab.nuiton.org/codelutin/echobase.git from 4cc27889 fixes #9687 : La suppression d'un voyage/transit/transect ne fonctionne pas. new 016cd029 fixes #9774 : Décalage dans ESDUs auxquels sont attribués les résultats NASC par echotypes en base et dans l'export xml acoustic 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 016cd029f37e1f69280ea1db0d137e6f8aaa0dff Author: Jean Couteau <jean.couteau@gmail.com> Date: Thu Mar 15 16:59:58 2018 +0100 fixes #9774 : Décalage dans ESDUs auxquels sont attribués les résultats NASC par echotypes en base et dans l'export xml acoustic Summary of changes: .../services/service/atlantos/xml/XmlAccousticExport.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) -- 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 develop in repository echobase. See https://gitlab.nuiton.org/codelutin/echobase.git commit 016cd029f37e1f69280ea1db0d137e6f8aaa0dff Author: Jean Couteau <jean.couteau@gmail.com> Date: Thu Mar 15 16:59:58 2018 +0100 fixes #9774 : Décalage dans ESDUs auxquels sont attribués les résultats NASC par echotypes en base et dans l'export xml acoustic --- .../services/service/atlantos/xml/XmlAccousticExport.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/echobase-services/src/main/java/fr/ifremer/echobase/services/service/atlantos/xml/XmlAccousticExport.java b/echobase-services/src/main/java/fr/ifremer/echobase/services/service/atlantos/xml/XmlAccousticExport.java index 7d549567..dffe67ca 100644 --- a/echobase-services/src/main/java/fr/ifremer/echobase/services/service/atlantos/xml/XmlAccousticExport.java +++ b/echobase-services/src/main/java/fr/ifremer/echobase/services/service/atlantos/xml/XmlAccousticExport.java @@ -351,10 +351,12 @@ public class XmlAccousticExport implements EchoBaseService { return value.getDataMetadata().getName(); } }); - - String prefix = "Start"; + + //Convention il all app, always take End as reference by default + //If no End information present, then take start + String prefix = "End"; if (!dataValues.containsKey("LatitudeStart")) { - prefix = "End"; + prefix = "Start"; } Data time = dataValues.get("Time" + prefix); -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
participants (1)
-
codelutin.com scm