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 ed19cfccb75ac50cab30a38dbd2ec436a529a0dc Author: Jean Couteau <jean.couteau@gmail.com> Date: Wed Feb 28 15:49:43 2018 +0100 fixes #9737 : Le champ "Frequency" n'est pas bien renseigné dans le chapitre "Instrument" de l'export acoustic --- .../echobase/services/service/atlantos/xml/XmlAccousticExport.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 4d8c240b..dd8204c0 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 @@ -194,7 +194,7 @@ public class XmlAccousticExport implements EchoBaseService { "ID", XmlAccousticExport.getFormatedTopiaId(instrument)); xml.create("Frequency", - instrument.getTransducerFrequency()); + Integer.parseInt(instrument.getFrequency())/1000); xml.create("TransducerLocation", "IDREF", vocabulary.getVocabularyCode(instrument.getTransducerLocation(), "AC_TransducerLocation_AA")); -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.