r1432 - in trunk: . tutti-persistence/src/main/java/fr/ifremer/tutti tutti-persistence/src/main/resources/i18n tutti-service tutti-service/src/main/java/fr/ifremer/tutti/service tutti-service/src/main/java/fr/ifremer/tutti/service/report tutti-service/src/test/java/fr/ifremer/tutti/service tutti-service/src/test/java/fr/ifremer/tutti/service/export/pdf tutti-service/src/test/java/fr/ifremer/tutti/service/report tutti-service/src/test/resources tutti-service/src/test/resources/report tutti-se
Author: tchemit Date: 2013-12-05 18:37:15 +0100 (Thu, 05 Dec 2013) New Revision: 1432 Url: http://forge.codelutin.com/projects/tutti/repository/revisions/1432 Log: refs #3624: [Rapport] Int?\195?\169gration de rapports g?\195?\169n?\195?\169r?\195?\169s par Birt Added: trunk/tutti-service/src/test/java/fr/ifremer/tutti/service/report/ trunk/tutti-service/src/test/java/fr/ifremer/tutti/service/report/ReportServiceTest.java trunk/tutti-service/src/test/resources/report/ trunk/tutti-service/src/test/resources/report/2013.12.05/ trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/ trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/ trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/css/ trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/css/common.css trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/images/ trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/images/logo-ifremer.PNG trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/js/ trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/js/common.js trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/js/messages.js trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/nls/ trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/nls/common.properties trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/reports/ trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/reports/controle_data_allegro_campagne.rptdesign trunk/tutti-service/src/test/resources/report/2013.12.05/version.appup Removed: trunk/tutti-service/src/main/java/fr/ifremer/tutti/service/sumatra/ trunk/tutti-service/src/test/java/fr/ifremer/tutti/service/sumatra/ Modified: trunk/pom.xml trunk/tutti-persistence/src/main/java/fr/ifremer/tutti/TuttiConfiguration.java trunk/tutti-persistence/src/main/java/fr/ifremer/tutti/TuttiConfigurationOption.java trunk/tutti-persistence/src/main/resources/i18n/tutti-persistence_en_GB.properties trunk/tutti-persistence/src/main/resources/i18n/tutti-persistence_fr_FR.properties trunk/tutti-service/pom.xml trunk/tutti-service/src/main/java/fr/ifremer/tutti/service/report/ReportModel.java trunk/tutti-service/src/main/java/fr/ifremer/tutti/service/report/ReportService.java trunk/tutti-service/src/test/java/fr/ifremer/tutti/service/export/pdf/CatchesPdfExportServiceTest.java trunk/tutti-service/src/test/resources/log4j.properties trunk/tutti-ui-swing/src/main/java/fr/ifremer/tutti/ui/swing/content/report/ReportUIModel.java Modified: trunk/pom.xml =================================================================== --- trunk/pom.xml 2013-12-04 13:15:03 UTC (rev 1431) +++ trunk/pom.xml 2013-12-05 17:37:15 UTC (rev 1432) @@ -453,6 +453,12 @@ <version>9.0.2</version> </dependency> + <dependency> + <groupId>com.itextpdf</groupId> + <artifactId>itextpdf</artifactId> + <version>5.4.1</version> + </dependency> + <!-- FreeMarker --> <dependency> <groupId>org.freemarker</groupId> Modified: trunk/tutti-persistence/src/main/java/fr/ifremer/tutti/TuttiConfiguration.java =================================================================== --- trunk/tutti-persistence/src/main/java/fr/ifremer/tutti/TuttiConfiguration.java 2013-12-04 13:15:03 UTC (rev 1431) +++ trunk/tutti-persistence/src/main/java/fr/ifremer/tutti/TuttiConfiguration.java 2013-12-05 17:37:15 UTC (rev 1432) @@ -445,6 +445,12 @@ return result; } + /** @return {@link TuttiConfigurationOption#REPORT_HOME_DIRECTORY} value */ + public File getReportHomeDirectory() { + File result = applicationConfig.getOptionAsFile(TuttiConfigurationOption.REPORT_HOME_DIRECTORY.getKey()); + return result; + } + /** @return {@link TuttiConfigurationOption#REPORT_DIRECTORY} value */ public File getReportDirectory() { File result = applicationConfig.getOptionAsFile(TuttiConfigurationOption.REPORT_DIRECTORY.getKey()); @@ -453,7 +459,7 @@ /** @return {@link TuttiConfigurationOption#REPORT_BACKUP_DIRECTORY} value */ public File getReportBackupDirectory() { - File result = applicationConfig.getOptionAsFile(TuttiConfigurationOption.REPORT_DIRECTORY.getKey()); + File result = applicationConfig.getOptionAsFile(TuttiConfigurationOption.REPORT_BACKUP_DIRECTORY.getKey()); return result; } Modified: trunk/tutti-persistence/src/main/java/fr/ifremer/tutti/TuttiConfigurationOption.java =================================================================== --- trunk/tutti-persistence/src/main/java/fr/ifremer/tutti/TuttiConfigurationOption.java 2013-12-04 13:15:03 UTC (rev 1431) +++ trunk/tutti-persistence/src/main/java/fr/ifremer/tutti/TuttiConfigurationOption.java 2013-12-05 17:37:15 UTC (rev 1432) @@ -84,10 +84,15 @@ "${tutti.data.directory}/temp", File.class), + REPORT_HOME_DIRECTORY( + "tutti.report.home.directory", + n_("tutti.config.option.report.home.directory.description"), + "${tutti.basedir}/report", + File.class), REPORT_DIRECTORY( "tutti.report.directory", n_("tutti.config.option.report.directory.description"), - "${tutti.basedir}/report", + "${tutti.report.home.directory}/allegro-tutti/reports", File.class), DB_DIRECTORY( Modified: trunk/tutti-persistence/src/main/resources/i18n/tutti-persistence_en_GB.properties =================================================================== --- trunk/tutti-persistence/src/main/resources/i18n/tutti-persistence_en_GB.properties 2013-12-04 13:15:03 UTC (rev 1431) +++ trunk/tutti-persistence/src/main/resources/i18n/tutti-persistence_en_GB.properties 2013-12-05 17:37:15 UTC (rev 1432) @@ -31,6 +31,7 @@ tutti.config.option.protocolId.description= tutti.config.option.report.backup.directory.description= tutti.config.option.report.directory.description= +tutti.config.option.report.home.directory.description= tutti.config.option.samplingCategoryOrderIds.description= tutti.config.option.site.url.description= tutti.config.option.startActionFile.description= Modified: trunk/tutti-persistence/src/main/resources/i18n/tutti-persistence_fr_FR.properties =================================================================== --- trunk/tutti-persistence/src/main/resources/i18n/tutti-persistence_fr_FR.properties 2013-12-04 13:15:03 UTC (rev 1431) +++ trunk/tutti-persistence/src/main/resources/i18n/tutti-persistence_fr_FR.properties 2013-12-05 17:37:15 UTC (rev 1432) @@ -161,6 +161,7 @@ tutti.config.option.protocolId.description=Identifiant du dernier protocole utilisé tutti.config.option.report.backup.directory.description=Répertoire contenant les rapports générés tutti.config.option.report.directory.description=Répertoire contenant les modèles de rapports +tutti.config.option.report.home.directory.description=Répertoire contenant la structure nécessaire pour les rapport tutti.config.option.samplingCategoryOrderIds.description=Ordre des catégories d'échantillonnage tutti.config.option.service.report.backup.directory.shortLabel=Répertoire des sauvegardes de rapport tutti.config.option.service.report.directory.shortLabel=Répertoire des modèles de rapport Modified: trunk/tutti-service/pom.xml =================================================================== --- trunk/tutti-service/pom.xml 2013-12-04 13:15:03 UTC (rev 1431) +++ trunk/tutti-service/pom.xml 2013-12-05 17:37:15 UTC (rev 1432) @@ -137,16 +137,16 @@ </dependency> <!-- Birt --> - <!--dependency> + <dependency> <groupId>org.eclipse.birt.runtime</groupId> <artifactId>org.eclipse.birt.runtime</artifactId> - </dependency--> + </dependency> <!-- fix a m-license-p bug ... --> - <!--dependency> + <dependency> <groupId>org.milyn</groupId> <artifactId>flute</artifactId> <scope>runtime</scope> - </dependency--> + </dependency> <!-- Logging --> <dependency> Modified: trunk/tutti-service/src/main/java/fr/ifremer/tutti/service/report/ReportModel.java =================================================================== --- trunk/tutti-service/src/main/java/fr/ifremer/tutti/service/report/ReportModel.java 2013-12-04 13:15:03 UTC (rev 1431) +++ trunk/tutti-service/src/main/java/fr/ifremer/tutti/service/report/ReportModel.java 2013-12-05 17:37:15 UTC (rev 1432) @@ -24,6 +24,9 @@ * #L% */ + +import fr.ifremer.tutti.persistence.entities.data.FishingOperation; + import java.io.File; import java.io.Serializable; @@ -46,6 +49,11 @@ /** Where to generate the report. */ protected File outputFile; + /** + * Selected + */ + protected FishingOperation fishingOperation; + public File getReport() { return report; } @@ -69,4 +77,12 @@ public void setOutputFile(File outputFile) { this.outputFile = outputFile; } + + public FishingOperation getFishingOperation() { + return fishingOperation; + } + + public void setFishingOperation(FishingOperation fishingOperation) { + this.fishingOperation = fishingOperation; + } } Modified: trunk/tutti-service/src/main/java/fr/ifremer/tutti/service/report/ReportService.java =================================================================== --- trunk/tutti-service/src/main/java/fr/ifremer/tutti/service/report/ReportService.java 2013-12-04 13:15:03 UTC (rev 1431) +++ trunk/tutti-service/src/main/java/fr/ifremer/tutti/service/report/ReportService.java 2013-12-05 17:37:15 UTC (rev 1432) @@ -24,17 +24,36 @@ * #L% */ +import com.google.common.base.Preconditions; import com.google.common.collect.Lists; +import com.google.common.collect.Maps; +import fr.ifremer.shared.application.ApplicationIOUtil; +import fr.ifremer.shared.application.ApplicationTechnicalException; import fr.ifremer.tutti.service.AbstractTuttiService; +import fr.ifremer.tutti.service.TuttiServiceContext; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; +import org.eclipse.birt.core.exception.BirtException; +import org.eclipse.birt.core.framework.Platform; +import org.eclipse.birt.report.engine.api.EngineConfig; +import org.eclipse.birt.report.engine.api.EngineConstants; +import org.eclipse.birt.report.engine.api.EngineException; +import org.eclipse.birt.report.engine.api.IRenderOption; +import org.eclipse.birt.report.engine.api.IReportEngine; +import org.eclipse.birt.report.engine.api.IReportEngineFactory; +import org.eclipse.birt.report.engine.api.IReportRunnable; +import org.eclipse.birt.report.engine.api.IRunAndRenderTask; +import org.eclipse.birt.report.engine.api.RenderOption; import java.io.File; import java.io.FileFilter; +import java.io.IOException; import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Arrays; import java.util.List; +import java.util.Map; +import java.util.logging.Level; /** * To generate some reports. @@ -59,14 +78,116 @@ public static final DateFormat df = new SimpleDateFormat("yyy-MM-dd_HH-mm"); + private static final int RENDER_DPI = 300; + + protected IReportEngineFactory factory; + + protected EngineConfig engineConfig; + + @Override + public void setServiceContext(TuttiServiceContext context) { + super.setServiceContext(context); + // Configure engine + + engineConfig = new EngineConfig(); + engineConfig.setBIRTHome(context.getConfig().getReportHomeDirectory().getAbsolutePath()); + engineConfig.setResourcePath(context.getConfig().getReportHomeDirectory().getAbsolutePath()); + engineConfig.setLogConfig(null, Level.FINE); + + // Get the instance of the engine + try { + Platform.startup(engineConfig); + } catch (BirtException e) { + throw new ApplicationTechnicalException("Could not init birt", e); + } + + factory = (IReportEngineFactory) Platform.createFactoryObject( + IReportEngineFactory.EXTENSION_REPORT_ENGINE_FACTORY); + + + } + + public ReportModel createModel() { + + File defaultOutputFile = getDefaultOutputFile(); + ReportModel model = new ReportModel(); + model.setOutputFile(defaultOutputFile); + return model; + } + public void generateReport(ReportModel model) { + Preconditions.checkNotNull(model); + Preconditions.checkNotNull(model.getFishingOperation()); + Preconditions.checkNotNull(model.getReport()); + Preconditions.checkNotNull(model.getInputFile()); + Preconditions.checkNotNull(model.getOutputFile()); + Preconditions.checkState(model.getReport().exists()); + Preconditions.checkState(model.getInputFile().exists()); + + // explode input zip file + File dataDirectory = ApplicationIOUtil.explodeZip( + context.getConfig().getTmpDirectory(), + model.getInputFile(), + "Could not explode data zip file"); if (log.isInfoEnabled()) { - log.info("Will generate report using report " + model.getReport()); + log.info("Will generate report using report " + model.getReport().getName()); } - // TODO + + IReportEngine engine = factory.createReportEngine(engineConfig); + + try { + + // Get the report document + IReportRunnable rptDoc = + engine.openReportDesign(model.getReport().getAbsolutePath()); + + // Report context + Map<String, Object> context = Maps.newHashMap(); + context.put(EngineConstants.APPCONTEXT_CHART_RESOLUTION, RENDER_DPI); + context.put("rpt-param_dirfile", dataDirectory.getAbsolutePath()); + context.put("rpt-param_codestation", model.getFishingOperation().getStationNumber()); + context.put("rpt-param_numerotrait", model.getFishingOperation().getFishingOperationNumber()); + + /** + * rpt-param_dirfile : répertoire contant les fichiers + + rpt-param_codestation : code de la station (ex: G101) + + rpt-param_numerotrait : code du trait (ex: 53) + */ + + // Configure the render options + IRenderOption renderOption = new RenderOption(); + renderOption.setOutputFileName(model.getOutputFile().getAbsolutePath()); + renderOption.setOutputFormat(IRenderOption.OUTPUT_FORMAT_PDF); + + // Create the render task + IRunAndRenderTask task = engine.createRunAndRenderTask(rptDoc); + task.setRenderOption(renderOption); + task.setAppContext(context); + + // render + task.run(); + + // close task + task.close(); + + if (log.isInfoEnabled()) { + log.info("Report generated at " + model.getOutputFile()); + } + + } catch (Exception e) { + throw new ApplicationTechnicalException("Could not generate report", e); + } finally { + engine.destroy(); + } } + @Override + public void close() throws IOException { + Platform.shutdown(); + super.close(); + } + public List<File> getAvailableReports() { List<File> result = Lists.newArrayList(); File reportDirectory = context.getConfig().getReportDirectory(); Modified: trunk/tutti-service/src/test/java/fr/ifremer/tutti/service/export/pdf/CatchesPdfExportServiceTest.java =================================================================== --- trunk/tutti-service/src/test/java/fr/ifremer/tutti/service/export/pdf/CatchesPdfExportServiceTest.java 2013-12-04 13:15:03 UTC (rev 1431) +++ trunk/tutti-service/src/test/java/fr/ifremer/tutti/service/export/pdf/CatchesPdfExportServiceTest.java 2013-12-05 17:37:15 UTC (rev 1432) @@ -24,10 +24,8 @@ * #L% */ -import fr.ifremer.tutti.service.PersistenceService; import fr.ifremer.tutti.service.ServiceDbResource; import fr.ifremer.tutti.service.TuttiServiceContext; -import org.junit.After; import org.junit.Assert; import org.junit.Before; import org.junit.ClassRule; @@ -56,8 +54,6 @@ protected CatchesPdfExportService exportService; - protected PersistenceService persistenceService; - protected File dataDirectory; @Before @@ -67,17 +63,11 @@ TuttiServiceContext serviceContext = dbResource.getServiceContext(); - persistenceService = serviceContext.getService(PersistenceService.class); + dbResource.openDataContext(); - serviceContext.getDataContext().open(serviceContext.getConfig(), persistenceService); exportService = serviceContext.getService(CatchesPdfExportService.class); } - @After - public void tearDown() throws Exception { - - } - @Test public void generateFishingOperationPDFFile() throws Exception { Added: trunk/tutti-service/src/test/java/fr/ifremer/tutti/service/report/ReportServiceTest.java =================================================================== --- trunk/tutti-service/src/test/java/fr/ifremer/tutti/service/report/ReportServiceTest.java (rev 0) +++ trunk/tutti-service/src/test/java/fr/ifremer/tutti/service/report/ReportServiceTest.java 2013-12-05 17:37:15 UTC (rev 1432) @@ -0,0 +1,103 @@ +package fr.ifremer.tutti.service.report; + +import fr.ifremer.shared.application.ApplicationIOUtil; +import fr.ifremer.shared.application.ApplicationTechnicalException; +import fr.ifremer.tutti.persistence.ProgressionModel; +import fr.ifremer.tutti.persistence.entities.data.FishingOperation; +import fr.ifremer.tutti.service.ServiceDbResource; +import fr.ifremer.tutti.service.TuttiServiceContext; +import fr.ifremer.tutti.service.export.generic.TuttiExportService; +import org.apache.commons.logging.Log; +import org.apache.commons.logging.LogFactory; +import org.junit.Assert; +import org.junit.Before; +import org.junit.ClassRule; +import org.junit.Test; +import org.nuiton.util.FileUtil; + +import java.io.File; +import java.util.List; + +/** + * Created on 12/5/13. + * + * @author Tony Chemit <chemit@codelutin.com> + * @since 3.0-rc-2 + */ +public class ReportServiceTest { + + @ClassRule + public static final ServiceDbResource dbResource = + ServiceDbResource.readDb("dbMedits"); + + /** Logger. */ + private static final Log log = LogFactory.getLog(ReportServiceTest.class); + + public static final String PROGRAM_ID = "CAM-MEDITS"; + + public static final String CRUISE_ID = "100001"; + + public static final String OPERATION_1_ID = "100106"; + + protected ReportService service; + + protected ServiceDbResource.DataContext dataContext; + + @Before + public void setUp() throws Exception { + + TuttiServiceContext serviceContext = dbResource.getServiceContext(); + + dbResource.setCountryInConfig("12"); + dbResource.openDataContext(); + + dataContext = dbResource.loadContext(PROGRAM_ID, CRUISE_ID, 1, OPERATION_1_ID); + + service = serviceContext.getService(ReportService.class); + + } + + // remove exception when it will work + @Test(expected = ApplicationTechnicalException.class) + public void testGenerateReport() throws Exception { + + // export campaign data + File exportFile = new File(dbResource.getConfig().getTmpDirectory(), "exportMEDITS-2013.zip"); + if (log.isInfoEnabled()) { + log.info("Export to " + exportFile); + } + ProgressionModel progressionModel = new ProgressionModel(); + progressionModel.setTotal(9); + dbResource.getServiceContext().getService(TuttiExportService.class).exportCruise(CRUISE_ID, exportFile, progressionModel); + + // copy report resources from class-path + File sourceDirectory = FileUtil.getFileFromPaths(new File("src"), "test", "resources", "report", "2013.12.05"); + File targetDirectory = dbResource.getConfig().getReportHomeDirectory(); + if (log.isInfoEnabled()) { + log.info("Prepare report birt home at " + targetDirectory); + } + ApplicationIOUtil.copyDirectory(sourceDirectory, targetDirectory, "Could not copy report directory"); + + ReportModel model = service.createModel(); + List<File> availableReports = service.getAvailableReports(); + Assert.assertNotNull(availableReports); + Assert.assertFalse(availableReports.isEmpty()); + Assert.assertEquals(1, availableReports.size()); + + // get unique report file + File reportFileName = availableReports.get(0); + model.setReport(reportFileName); + model.setInputFile(exportFile); + + // set fishing operation + FishingOperation fishingOperation = dataContext.operations.get(0); + model.setFishingOperation(fishingOperation); + + // generate report + Assert.assertFalse(model.getOutputFile().exists()); + service.generateReport(model); + + // report must exist + Assert.assertTrue(model.getOutputFile().exists()); + } +} Property changes on: trunk/tutti-service/src/test/java/fr/ifremer/tutti/service/report/ReportServiceTest.java ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision Added: svn:eol-style + native Modified: trunk/tutti-service/src/test/resources/log4j.properties =================================================================== --- trunk/tutti-service/src/test/resources/log4j.properties 2013-12-04 13:15:03 UTC (rev 1431) +++ trunk/tutti-service/src/test/resources/log4j.properties 2013-12-05 17:37:15 UTC (rev 1432) @@ -29,7 +29,7 @@ log4j.appender.A1.layout.ConversionPattern=%d %-4r [%t] %-5p %c %x - %m%n log4j.logger.fr.ifremer.tutti=INFO -#log4j.logger.org.nuiton=INFO +log4j.logger.org.nuiton.i18n=ERROR #See https://forum.hibernate.org/viewtopic.php?p=2404391 log4j.logger.org.hibernate.engine.StatefulPersistenceContext.ProxyWarnLog=ERROR \ No newline at end of file Added: trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/css/common.css =================================================================== --- trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/css/common.css (rev 0) +++ trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/css/common.css 2013-12-05 17:37:15 UTC (rev 1432) @@ -0,0 +1,380 @@ +/** + * ================================================= + * GENERAL + * ================================================= + */ + +.report { + font-family: "Verdana"; + font-size: 7pt; +} + +.page { + font-family: "Verdana"; + font-size: 7pt; +} + +.cell { + padding:1px; + vertical-align: middle; +} + +.cell-left { + padding-left:1px; + text-align: left; +} + +.cell-right { + padding-right:1px; + text-align: right; +} + +.inline { + display: inline; +} + + +/** + * ================================================= + * TEXTE + * ================================================= + */ + +.text, .label, .data { + font-size: 7pt; + font-family: "Verdana"; + padding: 0px; +} + +.label-general { + font-size: 7pt; + font-family: "Verdana"; + padding: 0px; + margin-right: 5px; + /*font-weight: bold;*/ + /*color : silver;*/ +} + +.label-sous-title { + font-size: 9pt; + font-family: "Verdana"; + padding: 0px; + margin-right: 5px; + font-weight: bold; + font-style: italic; + text-decoration: underline; +} + +.text-of-content-esp { + font-size: 6pt; + font-family: "Verdana"; + font-style:italic; + } + +.data { + text-align: center; +} + +.data-calcule { + style: italic; + color : blue; + font-style:italic; +} + +.text-important { + font-weight: bold; +} + +.text-important-couleur { + font-weight: bold; + color : #0080C0; +} + +.report-title { + font-size: 17pt; + font-family: "Verdana"; + font-weight: bold; + color: #000000; +} + +.paragraphe { + font-size:10pt; + font-family: "Verdana"; + color: #000000; + text-align: justify; + /*line-height: 90%;*/ +} + +.paragraphe2 { + font-size:8pt; + font-family: "Verdana"; + color: #000000; + text-align: justify; + margin-bottom: 10px +} + +.mtp-header-text { + font-size: 7pt; + font-family: "Verdana"; + font-weight:bold; + font-style:italic; + color: #888888; +} + +.mtp-footer-text { + font-size: 7pt; + font-family: "Verdana"; + font-style:italic; +} + + +/** + * ================================================= + * GRILLE (= GRID) + * ================================================= + */ + +.grid { + padding:0px; + vertical-align: middle; + text-align:left; +} + +.grid-cell { + font-size: 7pt; + padding:0px; + vertical-align: middle; +} + +/** + * ------------------------------------------------- + * Styles particuliers (� appliquer de mani�re explicite dans le rapport) + * ------------------------------------------------- + */ +.grid-contacts { + padding:15px; + border: 1px solid black /*white*/; + background-color: white /*#49bc7c*/; +} +.grid-header-cell { + text-align:center; + color: black /*white*/; + font-weight: bold; + background-color: white /*#49bc7c*/; + border: 1px solid black /*white*/; +} +.grid-detail-cell { + font-size: 7pt; + font-family: "Verdana"; + text-align:left; + border: 1px solid black /*white*/; +} +.grid-header-cell, .grid-detail-cell { + padding-left:2px; + padding-right:2px; + padding-bottom:1px; + padding-top:1px; + vertical-align: middle; +} + + +/** + * ================================================= + * TABLEAU (= TABLE) + * ================================================= + */ + + +.table { + font-family: "Verdana"; + text-align:left; + /*padding: 0px;*/ + margin-bottom: 10px; + border: 0px; + border-bottom: 1px solid black /*white*/; +} + +.table-header { + font-size: 7pt; + /*padding: 0px;*/ + margin: 0px; + border: 0px; + text-align:center; + color: black /*white*/; + font-weight: bold; +} + +.table-header-cell { + background-color: white /*#49bc7c*/; + border: 1px solid black /*white*/; +} + +.table-detail-cell { + font-size: 7pt; + border-left: 1px solid black /*white*/; + border-right: 1px solid black /*white*/; + line-height: 4px; +} + +.table-footer { + background-color: white /*#49bc7c*/; + font-weight: bold; + color: black /*white*/ +} + +.table-footer-cell { + border: 1px solid black /*white*/; +} + +.table-header-cell, .table-footer-cell , .table-detail-cell { + padding-left:2px; + padding-right:2px; + padding-bottom:1px; + padding-top:1px; + vertical-align: middle; +} + +/** + * ------------------------------------------------- + * Styles particuliers (� appliquer de mani�re explicite dans le rapport) + * ------------------------------------------------- + */ + +.table-detail-highlight, .table-detail-border-highlight { + background-color: #d1f0e1; +} +.table-detail-border, .table-detail-border-highlight { + border-bottom: 1px solid black /*white*/; +} + +/** + * ================================================= + * TABLEAU CROISE (= CROSS TAB) + * ================================================= + */ + +.crosstab { + text-align:left; +} + +.crosstab-header-col-up { + border-left: 1px solid black /*white*/; + border-right: 1px solid black /*white*/; + border-top: 1px solid black /*white*/; + background-color: white /*#49bc7c*/; + text-align:center; + color: black /*white*/; + font-weight: bold; +} + +.crosstab-header-col-down { + border-left: 1px solid black /*white*/; + border-right: 1px solid black /*white*/; + border-bottom: 1px solid black /*white*/; + background-color: white /*#49bc7c*/; +} + +.crosstab-header-line { + border-left: 1px solid black /*white*/; + border-right: 1px solid black /*white*/; + /*border-top: 1px solid #0080C0; + border-bottom: 1px solid #FFFFFF;*/ + padding-left:5px; + text-align:left; + font-weight:bold; + color: black; +} + +.crosstab-header-line-first { + border-left: 1px solid black /*white*/; + border-right: 1px solid black /*white*/; + border-top: 1px solid black /*white*/; + padding-left:5px; + text-align:left; + font-weight:bold; + color: black; + /*background-color: #FF0000;*/ +} + +.crosstab-header-line-left { + border-left: 1px solid black /*white*/; + /*border-bottom: 1px solid #0080C0;*/ + border-top: 1px solid black /*white*/; + padding-left:5px; + text-align:left; + font-weight:bold; + color: black; +} + +.crosstab-header-line-right { + border-right: 1px solid black /*white*/; + /*border-bottom: 1px solid #0080C0;*/ + border-top: 1px solid black /*white*/; + font-weight:bold; + color: black; +} + +.crosstab-total-line-header { + background-color: white /*#49bc7c*/; + border: 1px solid black /*white*/; + padding-left:5px; + text-align:left; + font-weight:bold; + color: black; +} + +.crosstab-total-line-cell { + background-color: white /*#49bc7c*/; + border: 1px solid black /*white*/; + text-align:center; + font-weight:bold; + color: black; +} + +.crosstab-total-col-header { + border: 1px solid black /*white*/; + background-color: white /*#49bc7c*/; + color: black /*white*/; + text-align:center; + font-weight:bold; +} + +.crosstab-total-col-cell { + text-align:center; + font-weight:bold; + color: #000000; +} + +.crosstab-detail { + border-left: 1px solid black /*white*/; + border-right: 1px solid black /*white*/; + text-align:center; +} + +.crosstab-cell { + vertical-align: middle; +} + + + + + + + + + /** + * ================================================= + * GRAPHIQUE (= CHART) + * ================================================= + */ + +.chart { + font-family: "Arial"; + font-size: 6pt; +} + + +.chart-resize { + font-family: "Arial"; + font-size: 6pt; +} \ No newline at end of file Property changes on: trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/css/common.css ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision Added: svn:eol-style + native Added: trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/images/logo-ifremer.PNG =================================================================== (Binary files differ) Property changes on: trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/images/logo-ifremer.PNG ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/js/common.js =================================================================== --- trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/js/common.js (rev 0) +++ trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/js/common.js 2013-12-05 17:37:15 UTC (rev 1432) @@ -0,0 +1,20 @@ +/* =================================================================== + * common.js + * ------------------------------------------------------------------- + * + * ------------------------------------------------------------------- + * @Author : + * @Version : + * =================================================================== */ + +/** parametres de connexion **/ +//var cnxHOME="C:\\DevSih\\Allegro_campagnes\\exportCruise-100001"; +//var cnxHOME="C:\\DevSih\\Allegro_campagnes\\exportCruise-CGFS2010\\exportCruise-100000"; +var cnxDELIMTYPE="SEMICOLON"; +var cnxCHARSET="UTF-8"; +var cnxINCLCOLUMNNAME="YES"; +var cnxINCLTYPELINE="NO"; + +/** parametres existance capture accident et macro dechets **/ +var existsCapAcc=0; +var existsMacDech=0; Property changes on: trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/js/common.js ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision Added: svn:eol-style + native Added: trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/js/messages.js =================================================================== --- trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/js/messages.js (rev 0) +++ trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/js/messages.js 2013-12-05 17:37:15 UTC (rev 1432) @@ -0,0 +1,213 @@ +/* =================================================================== + * message.js + * ------------------------------------------------------------------- + * Management messages (internationalization) + * ------------------------------------------------------------------- + * @Author : BODERE Erwan + * @Version : 1.0 - 19/03/2008 + * =================================================================== */ + + +/** + * Get a message with parameters + * @param messageKey key of the message + * @param params Array of values + */ +getMessageWithParameters = function(messageKey, params) { + return reportContext.getMessage(messageKey, reportContext.getLocale(), params); +} + +/** + * Get a "simple" message + * @param messageKey key of the message + */ +getMessage = function(messageKey) { + return reportContext.getMessage(messageKey, reportContext.getLocale()); +} + +/** + * Get a message with 1 parameter + * @param messageKey key of the message + * @param param1 value of the parameter + */ +getMessage = function(messageKey, param1) { + var params = new Array(1); + params[0] = "" + param1; + return getMessageWithParameters(messageKey, params); +} + +/** + * Get a message with 2 parameters + * @param messageKey key of the message + * @param param1 value of the parameter + * @param param2 value of the parameter + */ +getMessage = function(messageKey, param1, param2) { + var params = new Array(2); + params[0] = "" + param1; + params[1] = "" + param2; + return getMessageWithParameters(messageKey, params); +} + +/** + * Get a message with 3 parameters + * @param messageKey key of the message + * @param param1 value of the parameter + * @param param2 value of the parameter + * @param param3 value of the parameter + */ +getMessage = function(messageKey, param1, param2, param3) { + var params = new Array(3); + params[0] = "" + param1; + params[1] = "" + param2; + params[2] = "" + param3; + return getMessageWithParameters(messageKey, params); +} + +/** + * Get a message with 4 parameters + * @param messageKey key of the message + * @param param1 value of the parameter + * @param param2 value of the parameter + * @param param3 value of the parameter + * @param param4 value of the parameter + */ +getMessage = function(messageKey, param1, param2, param3, param4) { + var params = new Array(4); + params[0] = "" + param1; + params[1] = "" + param2; + params[2] = "" + param3; + params[3] = "" + param4; + return getMessageWithParameters(messageKey, params); +} + +/** + * Get a message with 5 parameters + * @param messageKey key of the message + * @param param1 value of the parameter + * @param param2 value of the parameter + * @param param3 value of the parameter + * @param param4 value of the parameter + * @param param5 value of the parameter + */ +getMessage = function(messageKey, param1, param2, param3, param4, param5) { + var params = new Array(5); + params[0] = "" + param1; + params[1] = "" + param2; + params[2] = "" + param3; + params[3] = "" + param4; + params[4] = "" + param5; + return getMessageWithParameters(messageKey, params); +} + +/** + * Get a message with 6 parameters + * @param messageKey key of the message + * @param param1 value of the parameter + * @param param2 value of the parameter + * @param param3 value of the parameter + * @param param4 value of the parameter + * @param param5 value of the parameter + * @param param6 value of the parameter + */ +getMessage = function(messageKey, param1, param2, param3, param4, param5, param6) { + var params = new Array(6); + params[0] = "" + param1; + params[1] = "" + param2; + params[2] = "" + param3; + params[3] = "" + param4; + params[4] = "" + param5; + params[5] = "" + param6; + return getMessageWithParameters(messageKey, params); +} + +/** + * Get a message with 7 parameters + * @param messageKey key of the message + * @param param1 value of the parameter + * @param param2 value of the parameter + * @param param3 value of the parameter + * @param param4 value of the parameter + * @param param5 value of the parameter + * @param param6 value of the parameter + * @param param7 value of the parameter + */ +getMessage = function(messageKey, param1, param2, param3, param4, param5, param6, param7) { + var params = new Array(7); + params[0] = "" + param1; + params[1] = "" + param2; + params[2] = "" + param3; + params[3] = "" + param4; + params[4] = "" + param5; + params[5] = "" + param6; + params[6] = "" + param7; + return getMessageWithParameters(messageKey, params); +} + + +/** + * Get a message with 8 parameters + * @param messageKey key of the message + * @param param1 value of the parameter + * @param param2 value of the parameter + * @param param3 value of the parameter + * @param param4 value of the parameter + * @param param5 value of the parameter + * @param param6 value of the parameter + * @param param7 value of the parameter + * @param param8 value of the parameter + */ +getMessage = function(messageKey, param1, param2, param3, param4, param5, param6, param7, param8) { + var params = new Array(8); + params[0] = "" + param1; + params[1] = "" + param2; + params[2] = "" + param3; + params[3] = "" + param4; + params[4] = "" + param5; + params[5] = "" + param6; + params[6] = "" + param7; + params[7] = "" + param8; + return getMessageWithParameters(messageKey, params); +} + +/** + * Get a message with 9 parameters + * @param messageKey key of the message + * @param param1 value of the parameter + * @param param2 value of the parameter + * @param param3 value of the parameter + * @param param4 value of the parameter + * @param param5 value of the parameter + * @param param6 value of the parameter + * @param param7 value of the parameter + * @param param8 value of the parameter + * @param param9 value of the parameter + */ +getMessage = function(messageKey, param1, param2, param3, param4, param5, param6, param7, param8, param9) { + var params = new Array(9); + params[0] = "" + param1; + params[1] = "" + param2; + params[2] = "" + param3; + params[3] = "" + param4; + params[4] = "" + param5; + params[5] = "" + param6; + params[6] = "" + param7; + params[7] = "" + param8; + params[8] = "" + param9; + return getMessageWithParameters(messageKey, params); +} + + +/** + * Convert a Boolean to a a local message + * @param booleanObject the boolean object to convert + * @param trueMessageKey message key for true value + * @param falseMessageKey message key for false value + */ +translateBoolean = function(booleanObject, trueMessageKey, falseMessageKey) { + var result = eval(booleanObject); + if (result){ + return getMessage(trueMessageKey); + } + return getMessage(falseMessageKey); +} \ No newline at end of file Property changes on: trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/js/messages.js ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision Added: svn:eol-style + native Added: trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/nls/common.properties =================================================================== --- trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/nls/common.properties (rev 0) +++ trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/nls/common.properties 2013-12-05 17:37:15 UTC (rev 1432) @@ -0,0 +1,135 @@ + +annee = Ann\u00E9e : + +campagne = Campagne : + +caracteristique = Caract\u00E9ristique + +carroussel-observ = Carroussel observ\u00E9 (kg) : + +categ-lot = Cat\u00E9gorisation du lot : + +categorie = Cat\u00E9gorie + +categorie-taille = Cat\u00E9gorie de taille + +classe-taille = Classe de taille + +code-station = Code station : + +commentaire = Commentaire : + +commentaire_bis = Commentaire + +controle = Contr\u00F4le + +date = Date + +date-debut-trait = Date d\u00E9but trait : + +date-generation = Date de g\u00E9n\u00E9ration + +date-heure = Date heure + +debut-traine = D\u00E9but de tra\u00EEne + +distance-chalute = Distance chalut\u00E9e : + +engin = Engin : + +espece = Esp\u00E8ce : + +espece_bis = Esp\u00E8ce + +fin-traine = Fin de tra\u00EEne + +footer-copyright = \u00A9 2008 Ifremer - Syst\u00E8me d'Informations Halieutiques + +header-title = SIH{0} + +instruction-ctrl = Contr\u00F4le\u00A0: pour chaque page, apr\u00E8s contr\u00F4le, cocher la case en bas \u00E0 droite des pages. En cas d'erreur de saisie, barrer les valeurs en erreur et noter \u00E0 c\u00F4t\u00E9 la valeur corrig\u00E9e. Apr\u00E8s correction des valeurs dans le logiciel, entourer les valeurs saisies. + +latitude = Latitude + +localite = Locatit\u00E9 : + +longitude = Longitude + +longueur-moy = Longueur moyenne : + +mode-mensuration = Mode de mensuration : + +navire = Navire : + +nbre = Nombre + +nbre-indiv = Nombre d'individus + +nbre-indiv-capt = Nombre d'individus captur\u00E9s : + +nbre-indiv-kg = Nombre d'individus / kg : + +num-poche = N\u00B0 poche : + +num-trait = N\u00B0 trait : + +ouverture-horiz-ailes = Ouverture horizontale aux ailes : + +ouverture-horiz-panneaux = Ouverture horizontale aux panneaux : + +ouverture-verticale = Ouverture verticale : + +page = page + +pas-mesure = Pas de mesure : + +poids = Poids (kg) + +poids.moyen = Poids moyen (g) : +poids.sans-unite = Poids +poids.total = Poids TOTAL (kg) : +poids.total-dans-la-capture = Poids total dans la capture (kg) : +poids.total-hors-vrac = Poids total HORS VRAC (kg) : +poids.total-inerte-trie = Poids total inerte tri\u00E9 (kg) : +poids.total-non-trie = Poids total NON TRIE (kg) : +poids.total-vivant-non-detail-trie = Poids total vivant non d\u00E9taill\u00E9 tri\u00E9 (kg) : +poids.total-vrac = Poids Total VRAC (kg) : +poids.vrac-trie = Poids VRAC tri\u00E9 (kg) : + +qui = Qui ? + +saisisseur = Saisisseur(s) : + +serie = S\u00E9rie : + +serie-partielle = S\u00E9rie partielle : + +sous-strate = Sous strate : + +sous-title.benthos = Benthos : +sous-title.capture = Capture : +sous-title.caracteristique-general-trait = Caract\u00E9ristiques g\u00E9n\u00E9rales du trait : +sous-title.caracteristique-mo = Caract\u00E9ristiques de mise en oeuvre de l'engin : +sous-title.caracteristiques = Caract\u00E9ristiques : +sous-title.especes = Esp\u00E8ces : +sous-title.macro-dechets = Macro d\u00E9chets : + +strate = Strate : + +title.bilan-capture = BILAN CAPTURE +title.caracteristique-trait = CARACTERISTIQUE DU TRAIT +title.rapport = RAPPORT DE SAISIE ALLEGRO CAMPAGNE +title.rapport-capture-accidentelles = RAPPORT CAPTURE ACCIDENTELLES +title.rapport-espece-benthos = RAPPORT sur les esp\u00E8ces du BENTHOS +title.rapport-macro-dechets = RAPPORT MACRO DECHETS +title.rapport-par-espece = RAPPORT PAR ESPECE + +total = Total + +trait-rectiligne = Trait rectiligne : + +trait-valide = Trait valide : + +tremis = Tr\u00E9mis (kg) : + +valeur = Valeur Property changes on: trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/common/nls/common.properties ___________________________________________________________________ Added: svn:keywords + Author Date Id Revision Added: svn:eol-style + native Added: trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/reports/controle_data_allegro_campagne.rptdesign =================================================================== --- trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/reports/controle_data_allegro_campagne.rptdesign (rev 0) +++ trunk/tutti-service/src/test/resources/report/2013.12.05/allegro-tutti/reports/controle_data_allegro_campagne.rptdesign 2013-12-05 17:37:15 UTC (rev 1432) @@ -0,0 +1,10847 @@ +<?xml version="1.0" encoding="UTF-8"?> +<report xmlns="http://www.eclipse.org/birt/2005/design" version="3.2.23" id="1"> + <property name="createdBy">Eclipse BIRT Designer Version 4.2.1.v201209101448 Build <4.2.1.v20120918-1113></property> + <simple-property-list name="includeResource"> + <value>allegro-tutti/common/nls/common</value> + </simple-property-list> + <list-property name="includeScripts"> + <property>allegro-tutti/common/js/common.js</property> + <property>allegro-tutti/common/js/messages.js</property> + </list-property> + <list-property name="propertyBindings"> + <structure> + <property name="name">HOME</property> + <property name="id">2421</property> + <expression name="value" type="javascript">params["rpt-param_dirfile"].value;</expression> + </structure> + <structure> + <property name="name">DELIMTYPE</property> + <property name="id">2421</property> + <expression name="value" type="javascript">cnxDELIMTYPE;</expression> + </structure> + <structure> + <property name="name">CHARSET</property> + <property name="id">2421</property> + <expression name="value" type="javascript">cnxCHARSET;</expression> + </structure> + <structure> + <property name="name">INCLCOLUMNNAME</property> + <property name="id">2421</property> + <expression name="value" type="javascript">cnxINCLCOLUMNNAME;</expression> + </structure> + <structure> + <property name="name">INCLTYPELINE</property> + <property name="id">2421</property> + <expression name="value" type="javascript">cnxINCLTYPELINE;</expression> + </structure> + </list-property> + <property name="units">in</property> + <method name="initialize"><![CDATA[reportContext.getAppContext().put("CHART_RESOLUTION", 300 );]]></method> + <property name="iconFile">/templates/blank_report.gif</property> + <property name="layoutPreference">auto layout</property> + <list-property name="cssStyleSheets"> + <structure> + <property name="fileName">allegro-tutti/common/css/common.css</property> + </structure> + </list-property> + <parameters> + <scalar-parameter name="rpt-param_codestation" id="3608"> + <property name="valueType">static</property> + <property name="isRequired">true</property> + <property name="dataType">string</property> + <property name="distinct">true</property> + <simple-property-list name="defaultValue"> + <value type="constant">0</value> + </simple-property-list> + <list-property name="selectionList"/> + <property name="paramType">simple</property> + <property name="controlType">text-box</property> + <structure name="format"> + <property name="category">Unformatted</property> + </structure> + </scalar-parameter> + <scalar-parameter name="rpt-param_numerotrait" id="3609"> + <property name="valueType">static</property> + <property name="isRequired">true</property> + <property name="dataType">integer</property> + <property name="distinct">true</property> + <simple-property-list name="defaultValue"> + <value type="constant">0</value> + </simple-property-list> + <list-property name="selectionList"/> + <property name="paramType">simple</property> + <property name="controlType">text-box</property> + <structure name="format"> + <property name="category">Unformatted</property> + </structure> + </scalar-parameter> + <scalar-parameter name="rpt-param_dirfile" id="3610"> + <property name="valueType">static</property> + <property name="dataType">string</property> + <property name="distinct">true</property> + <simple-property-list name="defaultValue"> + <value type="constant">C:\\DevSih\\Allegro_campagnes\\basetest</value> + </simple-property-list> + <list-property name="selectionList"/> + <property name="paramType">simple</property> + <property name="controlType">text-box</property> + <structure name="format"> + <property name="category">Unformatted</property> + </structure> + </scalar-parameter> + </parameters> + <data-sources> + <oda-data-source extensionID="org.eclipse.datatools.connectivity.oda.flatfile" name="FlatFileDataSource" id="2421"> + <method name="beforeOpen"><![CDATA[ + +]]></method> + <property name="HOME">C:\DevSih\Allegro_campagnes\basetest</property> + <property name="DELIMTYPE">SEMICOLON</property> + <property name="CHARSET">UTF-8</property> + <property name="INCLCOLUMNNAME">YES</property> + <property name="INCLTYPELINE">NO</property> + <property name="TRAILNULLCOLS">NO</property> + </oda-data-source> + </data-sources> + <data-sets> + <oda-data-set extensionID="org.eclipse.datatools.connectivity.oda.flatfile.dataSet" name="operation" id="2422"> + <list-property name="columnHints"> + <structure> + <property name="columnName">Annee</property> + <property name="analysis">measure</property> + <text-property name="heading">Annee</text-property> + </structure> + <structure> + <property name="columnName">Serie</property> + <property name="analysis">dimension</property> + <text-property name="heading">Serie</text-property> + </structure> + <structure> + <property name="columnName">Serie_Partielle</property> + <property name="analysis">dimension</property> + <text-property name="heading">Serie_Partielle</text-property> + </structure> + <structure> + <property name="columnName">Code_Station</property> + <property name="analysis">dimension</property> + <text-property name="heading">Code_Station</text-property> + </structure> + <structure> + <property name="columnName">Numero_Trait</property> + <property name="analysis">measure</property> + <text-property name="heading">Numero_Trait</text-property> + </structure> + <structure> + <property name="columnName">Poche</property> + <property name="analysis">dimension</property> + <text-property name="heading">Poche</text-property> + </structure> + <structure> + <property name="columnName">Engin</property> + <property name="analysis">dimension</property> + <text-property name="heading">Engin</text-property> + </structure> + <structure> + <property name="columnName">Navire</property> + <property name="analysis">dimension</property> + <text-property name="heading">Navire</text-property> + </structure> + <structure> + <property name="columnName">DateDeb_Op</property> + <property name="analysis">dimension</property> + <text-property name="heading">DateDeb_Op</text-property> + </structure> + <structure> + <property name="columnName">LatDeb</property> + <property name="analysis">dimension</property> + <text-property name="heading">LatDeb</text-property> + </structure> + <structure> + <property name="columnName">LongDeb</property> + <property name="analysis">dimension</property> + <text-property name="heading">LongDeb</text-property> + </structure> + <structure> + <property name="columnName">DateFin_Op</property> + <property name="analysis">dimension</property> + <text-property name="heading">DateFin_Op</text-property> + </structure> + <structure> + <property name="columnName">LatFin</property> + <property name="analysis">dimension</property> + <text-property name="heading">LatFin</text-property> + </structure> + <structure> + <property name="columnName">LongFin</property> + <property name="analysis">dimension</property> + <text-property name="heading">LongFin</text-property> + </structure> + <structure> + <property name="columnName">Duree</property> + <property name="analysis">dimension</property> + <text-property name="heading">Duree</text-property> + </structure> + <structure> + <property name="columnName">Strate</property> + <property name="analysis">dimension</property> + <text-property name="heading">Strate</text-property> + </structure> + <structure> + <property name="columnName">Sous-Strate</property> + <property name="analysis">dimension</property> + <text-property name="heading">Sous-Strate</text-property> + </structure> + <structure> + <property name="columnName">Localite</property> + <property name="analysis">dimension</property> + <text-property name="heading">Localite</text-property> + </structure> + <structure> + <property name="columnName">Validite_OP</property> + <property name="analysis">dimension</property> + <text-property name="heading">Validite_OP</text-property> + </structure> + <structure> + <property name="columnName">Rectiligne</property> + <property name="analysis">dimension</property> + <text-property name="heading">Rectiligne</text-property> + </structure> + <structure> + <property name="columnName">Distance</property> + <property name="analysis">measure</property> + <text-property name="heading">Distance</text-property> + </structure> + <structure> + <property name="columnName">Ouv_Verticale</property> + <property name="analysis">dimension</property> + <text-property name="heading">Ouv_Verticale</text-property> + </structure> + <structure> + <property name="columnName">Ouv_Horizontale_Ailes</property> + <property name="analysis">dimension</property> + <text-property name="heading">Ouv_Horizontale_Ailes</text-property> + </structure> + <structure> + <property name="columnName">Ouv_Horizontale_Panneaux</property> + <property name="analysis">dimension</property> + <text-property name="heading">Ouv_Horizontale_Panneaux</text-property> + </structure> + <structure> + <property name="columnName">Saisisseur</property> + <property name="analysis">dimension</property> + <text-property name="heading">Saisisseur</text-property> + </structure> + <structure> + <property name="columnName">NavireAssocie</property> + <property name="analysis">dimension</property> + <text-property name="heading">NavireAssocie</text-property> + </structure> + <structure> + <property name="columnName">Commentaire</property> + <property name="analysis">dimension</property> + <text-property name="heading">Commentaire</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total</property> + <property name="analysis">measure</property> + <text-property name="heading">Poids_Total</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Calcule</property> + <property name="analysis">dimension</property> + <text-property name="heading">Poids_Total_Calcule</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Vrac</property> + <property name="analysis">measure</property> + <text-property name="heading">Poids_Total_Vrac</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Vrac_Calcule</property> + <property name="analysis">dimension</property> + <text-property name="heading">Poids_Total_Vrac_Calcule</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_HorsVrac</property> + <property name="analysis">measure</property> + <text-property name="heading">Poids_Total_HorsVrac</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_HorsVrac_Calcule</property> + <property name="analysis">dimension</property> + <text-property name="heading">Poids_Total_HorsVrac_Calcule</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Non_Trie</property> + <property name="analysis">measure</property> + <text-property name="heading">Poids_Total_Non_Trie</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Non_Trie_Calcule</property> + <property name="analysis">dimension</property> + <text-property name="heading">Poids_Total_Non_Trie_Calcule</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Tremis</property> + <property name="analysis">measure</property> + <text-property name="heading">Poids_Total_Tremis</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Tremis_Calcule</property> + <property name="analysis">dimension</property> + <text-property name="heading">Poids_Total_Tremis_Calcule</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Carroussel</property> + <property name="analysis">measure</property> + <text-property name="heading">Poids_Total_Carroussel</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Carroussel_Calcule</property> + <property name="analysis">dimension</property> + <text-property name="heading">Poids_Total_Carroussel_Calcule</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Espece</property> + <property name="analysis">measure</property> + <text-property name="heading">Poids_Total_Espece</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Espece_Calcule</property> + <property name="analysis">dimension</property> + <text-property name="heading">Poids_Total_Espece_Calcule</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Espece_Vrac</property> + <property name="analysis">measure</property> + <text-property name="heading">Poids_Total_Espece_Vrac</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Espece_Vrac_Calcule</property> + <property name="analysis">dimension</property> + <text-property name="heading">Poids_Total_Espece_Vrac_Calcule</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Espece_Vrac_Trie</property> + <property name="analysis">measure</property> + <text-property name="heading">Poids_Total_Espece_Vrac_Trie</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Espece_Vrac_Trie_Calcule</property> + <property name="analysis">dimension</property> + <text-property name="heading">Poids_Total_Espece_Vrac_Trie_Calcule</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Espece_HorsVrac</property> + <property name="analysis">measure</property> + <text-property name="heading">Poids_Total_Espece_HorsVrac</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Espece_HorsVrac_Calcule</property> + <property name="analysis">dimension</property> + <text-property name="heading">Poids_Total_Espece_HorsVrac_Calcule</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Espece_Inerte_Trie</property> + <property name="analysis">measure</property> + <text-property name="heading">Poids_Total_Espece_Inerte_Trie</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Espece_Inerte_Trie_Calcule</property> + <property name="analysis">dimension</property> + <text-property name="heading">Poids_Total_Espece_Inerte_Trie_Calcule</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Espece_Vivant_non_detaille_trie</property> + <property name="analysis">measure</property> + <text-property name="heading">Poids_Total_Espece_Vivant_non_detaille_trie</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Espece_Vivant_non_detaille_trie_Calcule</property> + <property name="analysis">dimension</property> + <text-property name="heading">Poids_Total_Espece_Vivant_non_detaille_trie_Calcule</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Benthos</property> + <property name="analysis">measure</property> + <text-property name="heading">Poids_Total_Benthos</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Benthos_Calcule</property> + <property name="analysis">dimension</property> + <text-property name="heading">Poids_Total_Benthos_Calcule</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Benthos_Vrac</property> + <property name="analysis">measure</property> + <text-property name="heading">Poids_Total_Benthos_Vrac</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Benthos_Vrac_Calcule</property> + <property name="analysis">dimension</property> + <text-property name="heading">Poids_Total_Benthos_Vrac_Calcule</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Benthos_Vrac_Trie</property> + <property name="analysis">measure</property> + <text-property name="heading">Poids_Total_Benthos_Vrac_Trie</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Benthos_Vrac_Trie_Calcule</property> + <property name="analysis">dimension</property> + <text-property name="heading">Poids_Total_Benthos_Vrac_Trie_Calcule</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Benthos_HorsVrac</property> + <property name="analysis">measure</property> + <text-property name="heading">Poids_Total_Benthos_HorsVrac</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Benthos_HorsVrac_Calcule</property> + <property name="analysis">dimension</property> + <text-property name="heading">Poids_Total_Benthos_HorsVrac_Calcule</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Benthos_Inerte_Trie</property> + <property name="analysis">measure</property> + <text-property name="heading">Poids_Total_Benthos_Inerte_Trie</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Benthos_Inerte_Trie_Calcule</property> + <property name="analysis">dimension</property> + <text-property name="heading">Poids_Total_Benthos_Inerte_Trie_Calcule</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Benthos_Vivant_non_detaille_trie</property> + <property name="analysis">measure</property> + <text-property name="heading">Poids_Total_Benthos_Vivant_non_detaille_trie</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Benthos_Vivant_non_detaille_trie_Calcule</property> + <property name="analysis">dimension</property> + <text-property name="heading">Poids_Total_Benthos_Vivant_non_detaille_trie_Calcule</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Macro_Dechet</property> + <property name="analysis">measure</property> + <text-property name="heading">Poids_Total_Macro_Dechet</text-property> + </structure> + <structure> + <property name="columnName">Poids_Total_Macro_Dechet_Calcule</property> + <property name="analysis">dimension</property> + <text-property name="heading">Poids_Total_Macro_Dechet_Calcule</text-property> + </structure> + </list-property> + <list-property name="filter"> + <structure> + <property name="operator">eq</property> + <expression name="expr" type="javascript">if (params["rpt-param_codestation"].value=="0") { + "0"; +} else { +row["Code_Station"] +}</expression> + <simple-property-list name="value1"> + <value>params["rpt-param_codestation"].value</value> + </simple-property-list> + <property name="updateAggregation">true</property> + </structure> + <structure> + <property name="operator">eq</property> + <expression name="expr" type="javascript">if (params["rpt-param_numerotrait"].value==0) { + 0; +} else { +row["Numero_Trait"] +}</expression> + <simple-property-list name="value1"> + <value>params["rpt-param_numerotrait"].value</value> + </simple-property-list> + <property name="updateAggregation">true</property> + </structure> + </list-property> + <list-property name="parameters"/> + <structure name="cachedMetaData"> + <list-property name="resultSet"> + <structure> + <property name="position">1</property> + <property name="name">Annee</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">2</property> + <property name="name">Serie</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">3</property> + <property name="name">Serie_Partielle</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">4</property> + <property name="name">Code_Station</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">5</property> + <property name="name">Numero_Trait</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">6</property> + <property name="name">Poche</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">7</property> + <property name="name">Engin</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">8</property> + <property name="name">Navire</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">9</property> + <property name="name">DateDeb_Op</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">10</property> + <property name="name">LatDeb</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">11</property> + <property name="name">LongDeb</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">12</property> + <property name="name">DateFin_Op</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">13</property> + <property name="name">LatFin</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">14</property> + <property name="name">LongFin</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">15</property> + <property name="name">Duree</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">16</property> + <property name="name">Strate</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">17</property> + <property name="name">Sous-Strate</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">18</property> + <property name="name">Localite</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">19</property> + <property name="name">Validite_OP</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">20</property> + <property name="name">Rectiligne</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">21</property> + <property name="name">Distance</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">22</property> + <property name="name">Ouv_Verticale</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">23</property> + <property name="name">Ouv_Horizontale_Ailes</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">24</property> + <property name="name">Ouv_Horizontale_Panneaux</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">25</property> + <property name="name">Saisisseur</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">26</property> + <property name="name">NavireAssocie</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">27</property> + <property name="name">Commentaire</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">28</property> + <property name="name">Poids_Total</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">29</property> + <property name="name">Poids_Total_Calcule</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">30</property> + <property name="name">Poids_Total_Vrac</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">31</property> + <property name="name">Poids_Total_Vrac_Calcule</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">32</property> + <property name="name">Poids_Total_HorsVrac</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">33</property> + <property name="name">Poids_Total_HorsVrac_Calcule</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">34</property> + <property name="name">Poids_Total_Non_Trie</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">35</property> + <property name="name">Poids_Total_Non_Trie_Calcule</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">36</property> + <property name="name">Poids_Total_Tremis</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">37</property> + <property name="name">Poids_Total_Tremis_Calcule</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">38</property> + <property name="name">Poids_Total_Carroussel</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">39</property> + <property name="name">Poids_Total_Carroussel_Calcule</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">40</property> + <property name="name">Poids_Total_Espece</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">41</property> + <property name="name">Poids_Total_Espece_Calcule</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">42</property> + <property name="name">Poids_Total_Espece_Vrac</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">43</property> + <property name="name">Poids_Total_Espece_Vrac_Calcule</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">44</property> + <property name="name">Poids_Total_Espece_Vrac_Trie</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">45</property> + <property name="name">Poids_Total_Espece_Vrac_Trie_Calcule</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">46</property> + <property name="name">Poids_Total_Espece_HorsVrac</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">47</property> + <property name="name">Poids_Total_Espece_HorsVrac_Calcule</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">48</property> + <property name="name">Poids_Total_Espece_Inerte_Trie</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">49</property> + <property name="name">Poids_Total_Espece_Inerte_Trie_Calcule</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">50</property> + <property name="name">Poids_Total_Espece_Vivant_non_detaille_trie</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">51</property> + <property name="name">Poids_Total_Espece_Vivant_non_detaille_trie_Calcule</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">52</property> + <property name="name">Poids_Total_Benthos</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">53</property> + <property name="name">Poids_Total_Benthos_Calcule</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">54</property> + <property name="name">Poids_Total_Benthos_Vrac</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">55</property> + <property name="name">Poids_Total_Benthos_Vrac_Calcule</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">56</property> + <property name="name">Poids_Total_Benthos_Vrac_Trie</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">57</property> + <property name="name">Poids_Total_Benthos_Vrac_Trie_Calcule</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">58</property> + <property name="name">Poids_Total_Benthos_HorsVrac</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">59</property> + <property name="name">Poids_Total_Benthos_HorsVrac_Calcule</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">60</property> + <property name="name">Poids_Total_Benthos_Inerte_Trie</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">61</property> + <property name="name">Poids_Total_Benthos_Inerte_Trie_Calcule</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">62</property> + <property name="name">Poids_Total_Benthos_Vivant_non_detaille_trie</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">63</property> + <property name="name">Poids_Total_Benthos_Vivant_non_detaille_trie_Calcule</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">64</property> + <property name="name">Poids_Total_Macro_Dechet</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">65</property> + <property name="name">Poids_Total_Macro_Dechet_Calcule</property> + <property name="dataType">string</property> + </structure> + </list-property> + </structure> + <property name="dataSource">FlatFileDataSource</property> + <list-property name="resultSet"> + <structure> + <property name="position">1</property> + <property name="name">Annee</property> + <property name="nativeName">Annee</property> + <property name="dataType">integer</property> + <property name="nativeDataType">4</property> + </structure> + <structure> + <property name="position">2</property> + <property name="name">Serie</property> + <property name="nativeName">Serie</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">3</property> + <property name="name">Serie_Partielle</property> + <property name="nativeName">Serie_Partielle</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">4</property> + <property name="name">Code_Station</property> + <property name="nativeName">Code_Station</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">5</property> + <property name="name">Numero_Trait</property> + <property name="nativeName">Numero_Trait</property> + <property name="dataType">integer</property> + <property name="nativeDataType">4</property> + </structure> + <structure> + <property name="position">6</property> + <property name="name">Poche</property> + <property name="nativeName">Poche</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">7</property> + <property name="name">Engin</property> + <property name="nativeName">Engin</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">8</property> + <property name="name">Navire</property> + <property name="nativeName">Navire</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">9</property> + <property name="name">DateDeb_Op</property> + <property name="nativeName">DateDeb_Op</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">10</property> + <property name="name">LatDeb</property> + <property name="nativeName">LatDeb</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">11</property> + <property name="name">LongDeb</property> + <property name="nativeName">LongDeb</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">12</property> + <property name="name">DateFin_Op</property> + <property name="nativeName">DateFin_Op</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">13</property> + <property name="name">LatFin</property> + <property name="nativeName">LatFin</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">14</property> + <property name="name">LongFin</property> + <property name="nativeName">LongFin</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">15</property> + <property name="name">Duree</property> + <property name="nativeName">Duree</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">16</property> + <property name="name">Strate</property> + <property name="nativeName">Strate</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">17</property> + <property name="name">Sous-Strate</property> + <property name="nativeName">Sous-Strate</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">18</property> + <property name="name">Localite</property> + <property name="nativeName">Localite</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">19</property> + <property name="name">Validite_OP</property> + <property name="nativeName">Validite_OP</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">20</property> + <property name="name">Rectiligne</property> + <property name="nativeName">Rectiligne</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">21</property> + <property name="name">Distance</property> + <property name="nativeName">Distance</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">22</property> + <property name="name">Ouv_Verticale</property> + <property name="nativeName">Ouv_Verticale</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">23</property> + <property name="name">Ouv_Horizontale_Ailes</property> + <property name="nativeName">Ouv_Horizontale_Ailes</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">24</property> + <property name="name">Ouv_Horizontale_Panneaux</property> + <property name="nativeName">Ouv_Horizontale_Panneaux</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">25</property> + <property name="name">Saisisseur</property> + <property name="nativeName">Saisisseur</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">26</property> + <property name="name">NavireAssocie</property> + <property name="nativeName">NavireAssocie</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">27</property> + <property name="name">Commentaire</property> + <property name="nativeName">Commentaire</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">28</property> + <property name="name">Poids_Total</property> + <property name="nativeName">Poids_Total</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">29</property> + <property name="name">Poids_Total_Calcule</property> + <property name="nativeName">Poids_Total_Calcule</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">30</property> + <property name="name">Poids_Total_Vrac</property> + <property name="nativeName">Poids_Total_Vrac</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">31</property> + <property name="name">Poids_Total_Vrac_Calcule</property> + <property name="nativeName">Poids_Total_Vrac_Calcule</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">32</property> + <property name="name">Poids_Total_HorsVrac</property> + <property name="nativeName">Poids_Total_HorsVrac</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">33</property> + <property name="name">Poids_Total_HorsVrac_Calcule</property> + <property name="nativeName">Poids_Total_HorsVrac_Calcule</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">34</property> + <property name="name">Poids_Total_Non_Trie</property> + <property name="nativeName">Poids_Total_Non_Trie</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">35</property> + <property name="name">Poids_Total_Non_Trie_Calcule</property> + <property name="nativeName">Poids_Total_Non_Trie_Calcule</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">36</property> + <property name="name">Poids_Total_Tremis</property> + <property name="nativeName">Poids_Total_Tremis</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">37</property> + <property name="name">Poids_Total_Tremis_Calcule</property> + <property name="nativeName">Poids_Total_Tremis_Calcule</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">38</property> + <property name="name">Poids_Total_Carroussel</property> + <property name="nativeName">Poids_Total_Carroussel</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">39</property> + <property name="name">Poids_Total_Carroussel_Calcule</property> + <property name="nativeName">Poids_Total_Carroussel_Calcule</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">40</property> + <property name="name">Poids_Total_Espece</property> + <property name="nativeName">Poids_Total_Espece</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">41</property> + <property name="name">Poids_Total_Espece_Calcule</property> + <property name="nativeName">Poids_Total_Espece_Calcule</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">42</property> + <property name="name">Poids_Total_Espece_Vrac</property> + <property name="nativeName">Poids_Total_Espece_Vrac</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">43</property> + <property name="name">Poids_Total_Espece_Vrac_Calcule</property> + <property name="nativeName">Poids_Total_Espece_Vrac_Calcule</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">44</property> + <property name="name">Poids_Total_Espece_Vrac_Trie</property> + <property name="nativeName">Poids_Total_Espece_Vrac_Trie</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">45</property> + <property name="name">Poids_Total_Espece_Vrac_Trie_Calcule</property> + <property name="nativeName">Poids_Total_Espece_Vrac_Trie_Calcule</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">46</property> + <property name="name">Poids_Total_Espece_HorsVrac</property> + <property name="nativeName">Poids_Total_Espece_HorsVrac</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">47</property> + <property name="name">Poids_Total_Espece_HorsVrac_Calcule</property> + <property name="nativeName">Poids_Total_Espece_HorsVrac_Calcule</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">48</property> + <property name="name">Poids_Total_Espece_Inerte_Trie</property> + <property name="nativeName">Poids_Total_Espece_Inerte_Trie</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">49</property> + <property name="name">Poids_Total_Espece_Inerte_Trie_Calcule</property> + <property name="nativeName">Poids_Total_Espece_Inerte_Trie_Calcule</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">50</property> + <property name="name">Poids_Total_Espece_Vivant_non_detaille_trie</property> + <property name="nativeName">Poids_Total_Espece_Vivant_non_detaille_trie</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">51</property> + <property name="name">Poids_Total_Espece_Vivant_non_detaille_trie_Calcule</property> + <property name="nativeName">Poids_Total_Espece_Vivant_non_detaille_trie_Calcule</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">52</property> + <property name="name">Poids_Total_Benthos</property> + <property name="nativeName">Poids_Total_Benthos</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">53</property> + <property name="name">Poids_Total_Benthos_Calcule</property> + <property name="nativeName">Poids_Total_Benthos_Calcule</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">54</property> + <property name="name">Poids_Total_Benthos_Vrac</property> + <property name="nativeName">Poids_Total_Benthos_Vrac</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">55</property> + <property name="name">Poids_Total_Benthos_Vrac_Calcule</property> + <property name="nativeName">Poids_Total_Benthos_Vrac_Calcule</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">56</property> + <property name="name">Poids_Total_Benthos_Vrac_Trie</property> + <property name="nativeName">Poids_Total_Benthos_Vrac_Trie</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">57</property> + <property name="name">Poids_Total_Benthos_Vrac_Trie_Calcule</property> + <property name="nativeName">Poids_Total_Benthos_Vrac_Trie_Calcule</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">58</property> + <property name="name">Poids_Total_Benthos_HorsVrac</property> + <property name="nativeName">Poids_Total_Benthos_HorsVrac</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">59</property> + <property name="name">Poids_Total_Benthos_HorsVrac_Calcule</property> + <property name="nativeName">Poids_Total_Benthos_HorsVrac_Calcule</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">60</property> + <property name="name">Poids_Total_Benthos_Inerte_Trie</property> + <property name="nativeName">Poids_Total_Benthos_Inerte_Trie</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">61</property> + <property name="name">Poids_Total_Benthos_Inerte_Trie_Calcule</property> + <property name="nativeName">Poids_Total_Benthos_Inerte_Trie_Calcule</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">62</property> + <property name="name">Poids_Total_Benthos_Vivant_non_detaille_trie</property> + <property name="nativeName">Poids_Total_Benthos_Vivant_non_detaille_trie</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">63</property> + <property name="name">Poids_Total_Benthos_Vivant_non_detaille_trie_Calcule</property> + <property name="nativeName">Poids_Total_Benthos_Vivant_non_detaille_trie_Calcule</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">64</property> + <property name="name">Poids_Total_Macro_Dechet</property> + <property name="nativeName">Poids_Total_Macro_Dechet</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">65</property> + <property name="name">Poids_Total_Macro_Dechet_Calcule</property> + <property name="nativeName">Poids_Total_Macro_Dechet_Calcule</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + </list-property> + <xml-property name="queryText"><![CDATA[select "Annee", "Serie", "Serie_Partielle", "Code_Station", "Numero_Trait", "Poche", "Engin", "Navire", "DateDeb_Op", "LatDeb", "LongDeb", "DateFin_Op", "LatFin", "LongFin", "Duree", "Strate", "Sous-Strate", "Localite", "Validite_OP", "Rectiligne", "Distance", "Ouv_Verticale", "Ouv_Horizontale_Ailes", "Ouv_Horizontale_Panneaux", "Saisisseur", "NavireAssocie", "Commentaire", "Poids_Total", "Poids_Total_Calcule", "Poids_Total_Vrac", "Poids_Total_Vrac_Calcule", "Poids_Total_HorsVrac", "Poids_Total_HorsVrac_Calcule", "Poids_Total_Non_Trie", "Poids_Total_Non_Trie_Calcule", "Poids_Total_Tremis", "Poids_Total_Tremis_Calcule", "Poids_Total_Carroussel", "Poids_Total_Carroussel_Calcule", "Poids_Total_Espece", "Poids_Total_Espece_Calcule", "Poids_Total_Espece_Vrac", "Poids_Total_Espece_Vrac_Calcule", "Poids_Total_Espece_Vrac_Trie", "Poids_Total_Espece_Vrac_Trie_Calcule", "Poids_Total_Espece_HorsVrac", "Poids_Total_Espece_HorsVrac_Calcule", "Poids_Total_Espece_Inerte_Trie", "Poids_Total_Espece_Inerte_Trie_Calcule", "Poids_Total_Espece_Vivant_non_detaille_trie", "Poids_Total_Espece_Vivant_non_detaille_trie_Calcule", "Poids_Total_Benthos", "Poids_Total_Benthos_Calcule", "Poids_Total_Benthos_Vrac", "Poids_Total_Benthos_Vrac_Calcule", "Poids_Total_Benthos_Vrac_Trie", "Poids_Total_Benthos_Vrac_Trie_Calcule", "Poids_Total_Benthos_HorsVrac", "Poids_Total_Benthos_HorsVrac_Calcule", "Poids_Total_Benthos_Inerte_Trie", "Poids_Total_Benthos_Inerte_Trie_Calcule", "Poids_Total_Benthos_Vivant_non_detaille_trie", "Poids_Total_Benthos_Vivant_non_detaille_trie_Calcule", "Poids_Total_Macro_Dechet", "Poids_Total_Macro_Dechet_Calcule" from "operation.csv" : {"Annee","Annee",INT;"Serie","Serie",STRING;"Serie_Partielle","Serie_Partielle",STRING;"Code_Station","Code_Station",STRING;"Numero_Trait","Numero_Trait",INT;"Poche","Poche",STRING;"Engin","Engin",STRING;"Navire","Navire",STRING;"DateDeb_Op","DateDeb_Op",STRING;"LatDeb","LatDeb",STRING;"LongDeb","LongDeb",STRING;"DateFin_Op","DateFin_Op",STRING;"LatFin","LatFin",STRING;"LongFin","LongFin",STRING;"Duree","Duree",STRING;"Strate","Strate",STRING;"Sous-Strate","Sous-Strate",STRING;"Localite","Localite",STRING;"Validite_OP","Validite_OP",STRING;"Rectiligne","Rectiligne",STRING;"Distance","Distance",BIGDECIMAL;"Ouv_Verticale","Ouv_Verticale",STRING;"Ouv_Horizontale_Ailes","Ouv_Horizontale_Ailes",STRING;"Ouv_Horizontale_Panneaux","Ouv_Horizontale_Panneaux",STRING;"Saisisseur","Saisisseur",STRING;"NavireAssocie","NavireAssocie",STRING;"Commentaire","Commentaire",STRING;"Poids_Total","Poids_Total",BIGDECIMAL;"Poids_Total_Calcule","Poids_Total_Calcule",STRING;"Poids_Total_Vrac","Poids_Total_Vrac",BIGDECIMAL;"Poids_Total_Vrac_Calcule","Poids_Total_Vrac_Calcule",STRING;"Poids_Total_HorsVrac","Poids_Total_HorsVrac",BIGDECIMAL;"Poids_Total_HorsVrac_Calcule","Poids_Total_HorsVrac_Calcule",STRING;"Poids_Total_Non_Trie","Poids_Total_Non_Trie",BIGDECIMAL;"Poids_Total_Non_Trie_Calcule","Poids_Total_Non_Trie_Calcule",STRING;"Poids_Total_Tremis","Poids_Total_Tremis",BIGDECIMAL;"Poids_Total_Tremis_Calcule","Poids_Total_Tremis_Calcule",STRING;"Poids_Total_Carroussel","Poids_Total_Carroussel",BIGDECIMAL;"Poids_Total_Carroussel_Calcule","Poids_Total_Carroussel_Calcule",STRING;"Poids_Total_Espece","Poids_Total_Espece",BIGDECIMAL;"Poids_Total_Espece_Calcule","Poids_Total_Espece_Calcule",STRING;"Poids_Total_Espece_Vrac","Poids_Total_Espece_Vrac",BIGDECIMAL;"Poids_Total_Espece_Vrac_Calcule","Poids_Total_Espece_Vrac_Calcule",STRING;"Poids_Total_Espece_Vrac_Trie","Poids_Total_Espece_Vrac_Trie",BIGDECIMAL;"Poids_Total_Espece_Vrac_Trie_Calcule","Poids_Total_Espece_Vrac_Trie_Calcule",STRING;"Poids_Total_Espece_HorsVrac","Poids_Total_Espece_HorsVrac",BIGDECIMAL;"Poids_Total_Espece_HorsVrac_Calcule","Poids_Total_Espece_HorsVrac_Calcule",STRING;"Poids_Total_Espece_Inerte_Trie","Poids_Total_Espece_Inerte_Trie",BIGDECIMAL;"Poids_Total_Espece_Inerte_Trie_Calcule","Poids_Total_Espece_Inerte_Trie_Calcule",STRING;"Poids_Total_Espece_Vivant_non_detaille_trie","Poids_Total_Espece_Vivant_non_detaille_trie",BIGDECIMAL;"Poids_Total_Espece_Vivant_non_detaille_trie_Calcule","Poids_Total_Espece_Vivant_non_detaille_trie_Calcule",STRING;"Poids_Total_Benthos","Poids_Total_Benthos",BIGDECIMAL;"Poids_Total_Benthos_Calcule","Poids_Total_Benthos_Calcule",STRING;"Poids_Total_Benthos_Vrac","Poids_Total_Benthos_Vrac",BIGDECIMAL;"Poids_Total_Benthos_Vrac_Calcule","Poids_Total_Benthos_Vrac_Calcule",STRING;"Poids_Total_Benthos_Vrac_Trie","Poids_Total_Benthos_Vrac_Trie",BIGDECIMAL;"Poids_Total_Benthos_Vrac_Trie_Calcule","Poids_Total_Benthos_Vrac_Trie_Calcule",STRING;"Poids_Total_Benthos_HorsVrac","Poids_Total_Benthos_HorsVrac",BIGDECIMAL;"Poids_Total_Benthos_HorsVrac_Calcule","Poids_Total_Benthos_HorsVrac_Calcule",STRING;"Poids_Total_Benthos_Inerte_Trie","Poids_Total_Benthos_Inerte_Trie",BIGDECIMAL;"Poids_Total_Benthos_Inerte_Trie_Calcule","Poids_Total_Benthos_Inerte_Trie_Calcule",STRING;"Poids_Total_Benthos_Vivant_non_detaille_trie","Poids_Total_Benthos_Vivant_non_detaille_trie",BIGDECIMAL;"Poids_Total_Benthos_Vivant_non_detaille_trie_Calcule","Poids_Total_Benthos_Vivant_non_detaille_trie_Calcule",STRING;"Poids_Total_Macro_Dechet","Poids_Total_Macro_Dechet",BIGDECIMAL;"Poids_Total_Macro_Dechet_Calcule","Poids_Total_Macro_Dechet_Calcule",STRING}]]></xml-property> + <xml-property name="designerValues"><![CDATA[<?xml version="1.0" encoding="UTF-8"?> +<model:DesignValues xmlns:design="http://www.eclipse.org/datatools/connectivity/oda/design" xmlns:model="http://www.eclipse.org/birt/report/model/adapter/odaModel"> + <Version>2.0</Version> + <design:ResultSets derivedMetaData="true"> + <design:resultSetDefinitions> + <design:resultSetColumns> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Annee</design:name> + <design:position>1</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Annee</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Serie</design:name> + <design:position>2</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Serie</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Serie_Partielle</design:name> + <design:position>3</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Serie_Partielle</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Code_Station</design:name> + <design:position>4</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Code_Station</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Numero_Trait</design:name> + <design:position>5</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Numero_Trait</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poche</design:name> + <design:position>6</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poche</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Engin</design:name> + <design:position>7</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Engin</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Navire</design:name> + <design:position>8</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Navire</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>DateDeb_Op</design:name> + <design:position>9</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>DateDeb_Op</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>LatDeb</design:name> + <design:position>10</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>LatDeb</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>LongDeb</design:name> + <design:position>11</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>LongDeb</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>DateFin_Op</design:name> + <design:position>12</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>DateFin_Op</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>LatFin</design:name> + <design:position>13</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>LatFin</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>LongFin</design:name> + <design:position>14</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>LongFin</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Duree</design:name> + <design:position>15</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Duree</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Strate</design:name> + <design:position>16</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Strate</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Sous-Strate</design:name> + <design:position>17</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Sous-Strate</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Localite</design:name> + <design:position>18</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Localite</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Validite_OP</design:name> + <design:position>19</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Validite_OP</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Rectiligne</design:name> + <design:position>20</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Rectiligne</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Distance</design:name> + <design:position>21</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Distance</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Ouv_Verticale</design:name> + <design:position>22</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Ouv_Verticale</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Ouv_Horizontale_Ailes</design:name> + <design:position>23</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Ouv_Horizontale_Ailes</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Ouv_Horizontale_Panneaux</design:name> + <design:position>24</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Ouv_Horizontale_Panneaux</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Saisisseur</design:name> + <design:position>25</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Saisisseur</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>NavireAssocie</design:name> + <design:position>26</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>NavireAssocie</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Commentaire</design:name> + <design:position>27</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Commentaire</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total</design:name> + <design:position>28</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Calcule</design:name> + <design:position>29</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Calcule</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Vrac</design:name> + <design:position>30</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Vrac</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Vrac_Calcule</design:name> + <design:position>31</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Vrac_Calcule</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_HorsVrac</design:name> + <design:position>32</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_HorsVrac</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_HorsVrac_Calcule</design:name> + <design:position>33</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_HorsVrac_Calcule</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Non_Trie</design:name> + <design:position>34</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Non_Trie</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Non_Trie_Calcule</design:name> + <design:position>35</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Non_Trie_Calcule</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Tremis</design:name> + <design:position>36</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Tremis</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Tremis_Calcule</design:name> + <design:position>37</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Tremis_Calcule</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Carroussel</design:name> + <design:position>38</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Carroussel</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Carroussel_Calcule</design:name> + <design:position>39</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Carroussel_Calcule</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Espece</design:name> + <design:position>40</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Espece</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Espece_Calcule</design:name> + <design:position>41</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Espece_Calcule</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Espece_Vrac</design:name> + <design:position>42</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Espece_Vrac</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Espece_Vrac_Calcule</design:name> + <design:position>43</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Espece_Vrac_Calcule</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Espece_Vrac_Trie</design:name> + <design:position>44</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Espece_Vrac_Trie</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Espece_Vrac_Trie_Calcule</design:name> + <design:position>45</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Espece_Vrac_Trie_Calcule</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Espece_HorsVrac</design:name> + <design:position>46</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Espece_HorsVrac</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Espece_HorsVrac_Calcule</design:name> + <design:position>47</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Espece_HorsVrac_Calcule</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Espece_Inerte_Trie</design:name> + <design:position>48</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Espece_Inerte_Trie</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Espece_Inerte_Trie_Calcule</design:name> + <design:position>49</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Espece_Inerte_Trie_Calcule</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Espece_Vivant_non_detaille_trie</design:name> + <design:position>50</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Espece_Vivant_non_detaille_trie</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Espece_Vivant_non_detaille_trie_Calcule</design:name> + <design:position>51</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Espece_Vivant_non_detaille_trie_Calcule</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Benthos</design:name> + <design:position>52</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Benthos</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Benthos_Calcule</design:name> + <design:position>53</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Benthos_Calcule</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Benthos_Vrac</design:name> + <design:position>54</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Benthos_Vrac</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Benthos_Vrac_Calcule</design:name> + <design:position>55</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Benthos_Vrac_Calcule</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Benthos_Vrac_Trie</design:name> + <design:position>56</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Benthos_Vrac_Trie</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Benthos_Vrac_Trie_Calcule</design:name> + <design:position>57</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Benthos_Vrac_Trie_Calcule</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Benthos_HorsVrac</design:name> + <design:position>58</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Benthos_HorsVrac</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Benthos_HorsVrac_Calcule</design:name> + <design:position>59</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Benthos_HorsVrac_Calcule</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Benthos_Inerte_Trie</design:name> + <design:position>60</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Benthos_Inerte_Trie</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Benthos_Inerte_Trie_Calcule</design:name> + <design:position>61</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Benthos_Inerte_Trie_Calcule</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Benthos_Vivant_non_detaille_trie</design:name> + <design:position>62</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Benthos_Vivant_non_detaille_trie</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Benthos_Vivant_non_detaille_trie_Calcule</design:name> + <design:position>63</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Benthos_Vivant_non_detaille_trie_Calcule</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Macro_Dechet</design:name> + <design:position>64</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Macro_Dechet</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Total_Macro_Dechet_Calcule</design:name> + <design:position>65</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Total_Macro_Dechet_Calcule</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + </design:resultSetColumns> + </design:resultSetDefinitions> + </design:ResultSets> +</model:DesignValues>]]></xml-property> + </oda-data-set> + <oda-data-set extensionID="org.eclipse.datatools.connectivity.oda.flatfile.dataSet" name="survey" id="2452"> + <structure name="cachedMetaData"> + <list-property name="resultSet"> + <structure> + <property name="position">1</property> + <property name="name">Annee</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">2</property> + <property name="name">Serie</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">3</property> + <property name="name">Serie_Partielle</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">4</property> + <property name="name">Navire</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">5</property> + <property name="name">Pays</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">6</property> + <property name="name">Zone_Etude</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">7</property> + <property name="name">Campagne</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">8</property> + <property name="name">Id_Sismer</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">9</property> + <property name="name">Date_Deb_Campagne</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">10</property> + <property name="name">Port_Deb_Campagne</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">11</property> + <property name="name">Date_Fin_Campagne</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">12</property> + <property name="name">Port_Fin_Campagne</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">13</property> + <property name="name">Chef_Mission</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">14</property> + <property name="name">Resp_Salle_Tri</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">15</property> + <property name="name">Commentaire</property> + <property name="dataType">string</property> + </structure> + </list-property> + </structure> + <property name="dataSource">FlatFileDataSource</property> + <list-property name="resultSet"> + <structure> + <property name="position">1</property> + <property name="name">Annee</property> + <property name="nativeName">Annee</property> + <property name="dataType">integer</property> + <property name="nativeDataType">4</property> + </structure> + <structure> + <property name="position">2</property> + <property name="name">Serie</property> + <property name="nativeName">Serie</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">3</property> + <property name="name">Serie_Partielle</property> + <property name="nativeName">Serie_Partielle</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">4</property> + <property name="name">Navire</property> + <property name="nativeName">Navire</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">5</property> + <property name="name">Pays</property> + <property name="nativeName">Pays</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">6</property> + <property name="name">Zone_Etude</property> + <property name="nativeName">Zone_Etude</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">7</property> + <property name="name">Campagne</property> + <property name="nativeName">Campagne</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">8</property> + <property name="name">Id_Sismer</property> + <property name="nativeName">Id_Sismer</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">9</property> + <property name="name">Date_Deb_Campagne</property> + <property name="nativeName">Date_Deb_Campagne</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">10</property> + <property name="name">Port_Deb_Campagne</property> + <property name="nativeName">Port_Deb_Campagne</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">11</property> + <property name="name">Date_Fin_Campagne</property> + <property name="nativeName">Date_Fin_Campagne</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">12</property> + <property name="name">Port_Fin_Campagne</property> + <property name="nativeName">Port_Fin_Campagne</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">13</property> + <property name="name">Chef_Mission</property> + <property name="nativeName">Chef_Mission</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">14</property> + <property name="name">Resp_Salle_Tri</property> + <property name="nativeName">Resp_Salle_Tri</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">15</property> + <property name="name">Commentaire</property> + <property name="nativeName">Commentaire</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + </list-property> + <xml-property name="queryText"><![CDATA[select "Annee", "Serie", "Serie_Partielle", "Navire", "Pays", "Zone_Etude", "Campagne", "Id_Sismer", "Date_Deb_Campagne", "Port_Deb_Campagne", "Date_Fin_Campagne", "Port_Fin_Campagne", "Chef_Mission", "Resp_Salle_Tri", "Commentaire" from survey.csv : {"Annee","Annee",INT;"Serie","Serie",STRING;"Serie_Partielle","Serie_Partielle",STRING;"Navire","Navire",STRING;"Pays","Pays",STRING;"Zone_Etude","Zone_Etude",STRING;"Campagne","Campagne",STRING;"Id_Sismer","Id_Sismer",STRING;"Date_Deb_Campagne","Date_Deb_Campagne",STRING;"Port_Deb_Campagne","Port_Deb_Campagne",STRING;"Date_Fin_Campagne","Date_Fin_Campagne",STRING;"Port_Fin_Campagne","Port_Fin_Campagne",STRING;"Chef_Mission","Chef_Mission",STRING;"Resp_Salle_Tri","Resp_Salle_Tri",STRING;"Commentaire","Commentaire",STRING}]]></xml-property> + <xml-property name="designerValues"><![CDATA[<?xml version="1.0" encoding="UTF-8"?> +<model:DesignValues xmlns:design="http://www.eclipse.org/datatools/connectivity/oda/design" xmlns:model="http://www.eclipse.org/birt/report/model/adapter/odaModel"> + <Version>1.0</Version> + <design:ResultSets derivedMetaData="true"> + <design:resultSetDefinitions> + <design:resultSetColumns> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Annee</design:name> + <design:position>1</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Annee</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Serie</design:name> + <design:position>2</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Serie</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Serie_Partielle</design:name> + <design:position>3</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Serie_Partielle</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Navire</design:name> + <design:position>4</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Navire</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Pays</design:name> + <design:position>5</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Pays</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Zone_Etude</design:name> + <design:position>6</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Zone_Etude</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Campagne</design:name> + <design:position>7</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Campagne</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Id_Sismer</design:name> + <design:position>8</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Id_Sismer</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Date_Deb_Campagne</design:name> + <design:position>9</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Date_Deb_Campagne</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Port_Deb_Campagne</design:name> + <design:position>10</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Port_Deb_Campagne</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Date_Fin_Campagne</design:name> + <design:position>11</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Date_Fin_Campagne</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Port_Fin_Campagne</design:name> + <design:position>12</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Port_Fin_Campagne</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Chef_Mission</design:name> + <design:position>13</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Chef_Mission</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Resp_Salle_Tri</design:name> + <design:position>14</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Resp_Salle_Tri</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Commentaire</design:name> + <design:position>15</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Commentaire</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + </design:resultSetColumns> + </design:resultSetDefinitions> + </design:ResultSets> +</model:DesignValues>]]></xml-property> + </oda-data-set> + <oda-data-set extensionID="org.eclipse.datatools.connectivity.oda.flatfile.dataSet" name="parameter" id="2788"> + <structure name="cachedMetaData"> + <list-property name="resultSet"> + <structure> + <property name="position">1</property> + <property name="name">Annee</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">2</property> + <property name="name">Serie</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">3</property> + <property name="name">Serie_Partielle</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">4</property> + <property name="name">Code_Station</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">5</property> + <property name="name">Numero_Trait</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">6</property> + <property name="name">Poche</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">7</property> + <property name="name">Code_PMFM</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">8</property> + <property name="name">Libelle_PMFm</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">9</property> + <property name="name">Valeur</property> + <property name="dataType">decimal</property> + </structure> + </list-property> + </structure> + <property name="dataSource">FlatFileDataSource</property> + <list-property name="resultSet"> + <structure> + <property name="position">1</property> + <property name="name">Annee</property> + <property name="nativeName">Annee</property> + <property name="dataType">integer</property> + <property name="nativeDataType">4</property> + </structure> + <structure> + <property name="position">2</property> + <property name="name">Serie</property> + <property name="nativeName">Serie</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">3</property> + <property name="name">Serie_Partielle</property> + <property name="nativeName">Serie_Partielle</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">4</property> + <property name="name">Code_Station</property> + <property name="nativeName">Code_Station</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">5</property> + <property name="name">Numero_Trait</property> + <property name="nativeName">Numero_Trait</property> + <property name="dataType">integer</property> + <property name="nativeDataType">4</property> + </structure> + <structure> + <property name="position">6</property> + <property name="name">Poche</property> + <property name="nativeName">Poche</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">7</property> + <property name="name">Code_PMFM</property> + <property name="nativeName">Code_PMFM</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">8</property> + <property name="name">Libelle_PMFm</property> + <property name="nativeName">Libelle_PMFm</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">9</property> + <property name="name">Valeur</property> + <property name="nativeName">Valeur</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + </list-property> + <xml-property name="queryText"><![CDATA[select "Annee", "Serie", "Serie_Partielle", "Code_Station", "Numero_Trait", "Poche", "Code_PMFM", "Libelle_PMFm", "Valeur" from parameter.csv : {"Annee","Annee",INT;"Serie","Serie",STRING;"Serie_Partielle","Serie_Partielle",STRING;"Code_Station","Code_Station",STRING;"Numero_Trait","Numero_Trait",INT;"Poche","Poche",STRING;"Code_PMFM","Code_PMFM",STRING;"Libelle_PMFm","Libelle_PMFm",STRING;"Valeur","Valeur",BIGDECIMAL}]]></xml-property> + <xml-property name="designerValues"><![CDATA[<?xml version="1.0" encoding="UTF-8"?> +<model:DesignValues xmlns:design="http://www.eclipse.org/datatools/connectivity/oda/design" xmlns:model="http://www.eclipse.org/birt/report/model/adapter/odaModel"> + <Version>1.0</Version> + <design:ResultSets derivedMetaData="true"> + <design:resultSetDefinitions> + <design:resultSetColumns> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Annee</design:name> + <design:position>1</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Annee</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Serie</design:name> + <design:position>2</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Serie</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Serie_Partielle</design:name> + <design:position>3</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Serie_Partielle</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Code_Station</design:name> + <design:position>4</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Code_Station</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Numero_Trait</design:name> + <design:position>5</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Numero_Trait</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Poche</design:name> + <design:position>6</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poche</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Code_PMFM</design:name> + <design:position>7</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Code_PMFM</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Libelle_PMFm</design:name> + <design:position>8</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Libelle_PMFm</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Valeur</design:name> + <design:position>9</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Valeur</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + </design:resultSetColumns> + </design:resultSetDefinitions> + </design:ResultSets> +</model:DesignValues>]]></xml-property> + </oda-data-set> + <oda-data-set extensionID="org.eclipse.datatools.connectivity.oda.flatfile.dataSet" name="marineLitter" id="3166"> + <structure name="cachedMetaData"> + <list-property name="resultSet"> + <structure> + <property name="position">1</property> + <property name="name">Annee</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">2</property> + <property name="name">Serie</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">3</property> + <property name="name">Serie_Partielle</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">4</property> + <property name="name">Engin</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">5</property> + <property name="name">Code_Station</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">6</property> + <property name="name">Numero_Trait</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">7</property> + <property name="name">Poche</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">8</property> + <property name="name">Navire</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">9</property> + <property name="name">MarineLitterCategory</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">10</property> + <property name="name">MarineLitterSizeCategory</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">11</property> + <property name="name">Number</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">12</property> + <property name="name">Weight</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">13</property> + <property name="name">Commentaire</property> + <property name="dataType">string</property> + </structure> + </list-property> + </structure> + <property name="dataSource">FlatFileDataSource</property> + <list-property name="resultSet"> + <structure> + <property name="position">1</property> + <property name="name">Annee</property> + <property name="nativeName">Annee</property> + <property name="dataType">integer</property> + <property name="nativeDataType">4</property> + </structure> + <structure> + <property name="position">2</property> + <property name="name">Serie</property> + <property name="nativeName">Serie</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">3</property> + <property name="name">Serie_Partielle</property> + <property name="nativeName">Serie_Partielle</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">4</property> + <property name="name">Engin</property> + <property name="nativeName">Engin</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">5</property> + <property name="name">Code_Station</property> + <property name="nativeName">Code_Station</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">6</property> + <property name="name">Numero_Trait</property> + <property name="nativeName">Numero_Trait</property> + <property name="dataType">integer</property> + <property name="nativeDataType">4</property> + </structure> + <structure> + <property name="position">7</property> + <property name="name">Poche</property> + <property name="nativeName">Poche</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">8</property> + <property name="name">Navire</property> + <property name="nativeName">Navire</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">9</property> + <property name="name">MarineLitterCategory</property> + <property name="nativeName">MarineLitterCategory</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">10</property> + <property name="name">MarineLitterSizeCategory</property> + <property name="nativeName">MarineLitterSizeCategory</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">11</property> + <property name="name">Number</property> + <property name="nativeName">Number</property> + <property name="dataType">integer</property> + <property name="nativeDataType">4</property> + </structure> + <structure> + <property name="position">12</property> + <property name="name">Weight</property> + <property name="nativeName">Weight</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">13</property> + <property name="name">Commentaire</property> + <property name="nativeName">Commentaire</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + </list-property> + <xml-property name="queryText"><![CDATA[select "Annee", "Serie", "Serie_Partielle", "Engin", "Code_Station", "Numero_Trait", "Poche", "Navire", "MarineLitterCategory", "MarineLitterSizeCategory", "Number", "Weight", "Commentaire" from marineLitter.csv : {"Annee","Annee",INT;"Serie","Serie",STRING;"Serie_Partielle","Serie_Partielle",STRING;"Engin","Engin",STRING;"Code_Station","Code_Station",STRING;"Numero_Trait","Numero_Trait",INT;"Poche","Poche",STRING;"Navire","Navire",STRING;"MarineLitterCategory","MarineLitterCategory",STRING;"MarineLitterSizeCategory","MarineLitterSizeCategory",STRING;"Number","Number",INT;"Weight","Weight",BIGDECIMAL;"Commentaire","Commentaire",STRING}]]></xml-property> + <xml-property name="designerValues"><![CDATA[<?xml version="1.0" encoding="UTF-8"?> +<model:DesignValues xmlns:design="http://www.eclipse.org/datatools/connectivity/oda/design" xmlns:model="http://www.eclipse.org/birt/report/model/adapter/odaModel"> + <Version>1.0</Version> + <design:ResultSets derivedMetaData="true"> + <design:resultSetDefinitions> + <design:resultSetColumns> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Annee</design:name> + <design:position>1</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Annee</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Serie</design:name> + <design:position>2</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Serie</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Serie_Partielle</design:name> + <design:position>3</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Serie_Partielle</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Engin</design:name> + <design:position>4</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Engin</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Code_Station</design:name> + <design:position>5</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Code_Station</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Numero_Trait</design:name> + <design:position>6</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Numero_Trait</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Poche</design:name> + <design:position>7</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poche</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Navire</design:name> + <design:position>8</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Navire</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>MarineLitterCategory</design:name> + <design:position>9</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>MarineLitterCategory</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>MarineLitterSizeCategory</design:name> + <design:position>10</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>MarineLitterSizeCategory</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Number</design:name> + <design:position>11</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Number</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Weight</design:name> + <design:position>12</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Weight</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Commentaire</design:name> + <design:position>13</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Commentaire</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + </design:resultSetColumns> + </design:resultSetDefinitions> + </design:ResultSets> +</model:DesignValues>]]></xml-property> + </oda-data-set> + <oda-data-set extensionID="org.eclipse.datatools.connectivity.oda.flatfile.dataSet" name="catch" id="3180"> + <list-property name="computedColumns"> + <structure> + <property name="name">categorisation-du-lot</property> + <expression name="expression">var cat=""; +if (row["Num_Ordre_V_HV_H2"] != null){ +cat+=row["V_HV"]; +} + +if (row["Num_Ordre_Class_Tri__H2"] != null){ + if (cat != "") { + cat+=" - "; + } + cat+=row["V_HV"]; +} + +if (row["Num_Ordre_Sexe_H2"] != null){ + if (cat != "") { + cat+=" - "; + } + cat+=row["Sexe"]; +} + +if (row["Num_Ordre_Maturité_H2"] != null){ + if (cat != "") { + cat+=" - "; + } + cat+=row["Maturité"]; +} + +if (row["Num_Ordre_Age_H2"] != null){ + if (cat != "") { + cat+=" - "; + } + cat+=row["Age"]; +} + +cat+=" / "+row["Poids_Reference"] + " kg";</expression> + <property name="dataType">string</property> + </structure> + </list-property> + <list-property name="columnHints"> + <structure> + <property name="columnName">Annee</property> + <property name="analysis">measure</property> + <text-property name="heading">Annee</text-property> + </structure> + <structure> + <property name="columnName">Serie</property> + <property name="analysis">dimension</property> + <text-property name="heading">Serie</text-property> + </structure> + <structure> + <property name="columnName">Serie_Partielle</property> + <property name="analysis">dimension</property> + <text-property name="heading">Serie_Partielle</text-property> + </structure> + <structure> + <property name="columnName">Engin</property> + <property name="analysis">dimension</property> + <text-property name="heading">Engin</text-property> + </structure> + <structure> + <property name="columnName">Code_Station</property> + <property name="analysis">dimension</property> + <text-property name="heading">Code_Station</text-property> + </structure> + <structure> + <property name="columnName">Numero_Trait</property> + <property name="analysis">measure</property> + <text-property name="heading">Numero_Trait</text-property> + </structure> + <structure> + <property name="columnName">Poche</property> + <property name="analysis">dimension</property> + <text-property name="heading">Poche</text-property> + </structure> + <structure> + <property name="columnName">Navire</property> + <property name="analysis">dimension</property> + <text-property name="heading">Navire</text-property> + </structure> + <structure> + <property name="columnName">Taxon</property> + <property name="analysis">measure</property> + <text-property name="heading">Taxon</text-property> + </structure> + <structure> + <property name="columnName">Nom_scientifique</property> + <property name="analysis">dimension</property> + <text-property name="heading">Nom_scientifique</text-property> + </structure> + <structure> + <property name="columnName">Commentaire</property> + <property name="analysis">dimension</property> + <text-property name="heading">Commentaire</text-property> + </structure> + <structure> + <property name="columnName">V_HV</property> + <property name="analysis">dimension</property> + <text-property name="heading">V_HV</text-property> + </structure> + <structure> + <property name="columnName">Num_Ordre_V_HV_H2</property> + <property name="analysis">measure</property> + <text-property name="heading">Num_Ordre_V_HV_H2</text-property> + </structure> + <structure> + <property name="columnName">Tot_V_HV</property> + <property name="analysis">measure</property> + <text-property name="heading">Tot_V_HV</text-property> + </structure> + <structure> + <property name="columnName">Ech_V_HV</property> + <property name="analysis">measure</property> + <text-property name="heading">Ech_V_HV</text-property> + </structure> + <structure> + <property name="columnName">Type_Volume_Poids_V_HV</property> + <property name="analysis">dimension</property> + <text-property name="heading">Type_Volume_Poids_V_HV</text-property> + </structure> + <structure> + <property name="columnName">Unite_Volume_Poids_V_HV</property> + <property name="analysis">dimension</property> + <text-property name="heading">Unite_Volume_Poids_V_HV</text-property> + </structure> + <structure> + <property name="columnName">Class_Tri_</property> + <property name="analysis">dimension</property> + <text-property name="heading">Class_Tri_</text-property> + </structure> + <structure> + <property name="columnName">Num_Ordre_Class_Tri__H2</property> + <property name="analysis">measure</property> + <text-property name="heading">Num_Ordre_Class_Tri__H2</text-property> + </structure> + <structure> + <property name="columnName">Tot_Class_Tri_</property> + <property name="analysis">measure</property> + <text-property name="heading">Tot_Class_Tri_</text-property> + </structure> + <structure> + <property name="columnName">Ech_Class_Tri_</property> + <property name="analysis">measure</property> + <text-property name="heading">Ech_Class_Tri_</text-property> + </structure> + <structure> + <property name="columnName">Type_Volume_Poids_Class_Tri_</property> + <property name="analysis">dimension</property> + <text-property name="heading">Type_Volume_Poids_Class_Tri_</text-property> + </structure> + <structure> + <property name="columnName">Unite_Volume_Poids_Class_Tri_</property> + <property name="analysis">dimension</property> + <text-property name="heading">Unite_Volume_Poids_Class_Tri_</text-property> + </structure> + <structure> + <property name="columnName">Sexe</property> + <property name="analysis">dimension</property> + <text-property name="heading">Sexe</text-property> + </structure> + <structure> + <property name="columnName">Num_Ordre_Sexe_H2</property> + <property name="analysis">measure</property> + <text-property name="heading">Num_Ordre_Sexe_H2</text-property> + </structure> + <structure> + <property name="columnName">Tot_Sexe</property> + <property name="analysis">measure</property> + <text-property name="heading">Tot_Sexe</text-property> + </structure> + <structure> + <property name="columnName">Ech_Sexe</property> + <property name="analysis">measure</property> + <text-property name="heading">Ech_Sexe</text-property> + </structure> + <structure> + <property name="columnName">Type_Volume_Poids_Sexe</property> + <property name="analysis">dimension</property> + <text-property name="heading">Type_Volume_Poids_Sexe</text-property> + </structure> + <structure> + <property name="columnName">Unite_Volume_Poids_Sexe</property> + <property name="analysis">dimension</property> + <text-property name="heading">Unite_Volume_Poids_Sexe</text-property> + </structure> + <structure> + <property name="columnName">Maturité</property> + <property name="analysis">dimension</property> + <text-property name="heading">Maturité</text-property> + </structure> + <structure> + <property name="columnName">Num_Ordre_Maturité_H2</property> + <property name="analysis">measure</property> + <text-property name="heading">Num_Ordre_Maturité_H2</text-property> + </structure> + <structure> + <property name="columnName">Tot_Maturité</property> + <property name="analysis">measure</property> + <text-property name="heading">Tot_Maturité</text-property> + </structure> + <structure> + <property name="columnName">Ech_Maturité</property> + <property name="analysis">measure</property> + <text-property name="heading">Ech_Maturité</text-property> + </structure> + <structure> + <property name="columnName">Type_Volume_Poids_Maturité</property> + <property name="analysis">dimension</property> + <text-property name="heading">Type_Volume_Poids_Maturité</text-property> + </structure> + <structure> + <property name="columnName">Unite_Volume_Poids_Maturité</property> + <property name="analysis">dimension</property> + <text-property name="heading">Unite_Volume_Poids_Maturité</text-property> + </structure> + <structure> + <property name="columnName">Age</property> + <property name="analysis">dimension</property> + <text-property name="heading">Age</text-property> + </structure> + <structure> + <property name="columnName">Num_Ordre_Age_H2</property> + <property name="analysis">measure</property> + <text-property name="heading">Num_Ordre_Age_H2</text-property> + </structure> + <structure> + <property name="columnName">Tot_Age</property> + <property name="analysis">measure</property> + <text-property name="heading">Tot_Age</text-property> + </structure> + <structure> + <property name="columnName">Ech_Age</property> + <property name="analysis">measure</property> + <text-property name="heading">Ech_Age</text-property> + </structure> + <structure> + <property name="columnName">Type_Volume_Poids_Age</property> + <property name="analysis">dimension</property> + <text-property name="heading">Type_Volume_Poids_Age</text-property> + </structure> + <structure> + <property name="columnName">Unite_Volume_Poids_Age</property> + <property name="analysis">dimension</property> + <text-property name="heading">Unite_Volume_Poids_Age</text-property> + </structure> + <structure> + <property name="columnName">Code_Longueur</property> + <property name="analysis">measure</property> + <text-property name="heading">Code_Longueur</text-property> + </structure> + <structure> + <property name="columnName">Libelle_Longueur</property> + <property name="analysis">dimension</property> + <text-property name="heading">Libelle_Longueur</text-property> + </structure> + <structure> + <property name="columnName">Taille</property> + <property name="analysis">measure</property> + <text-property name="heading">Taille</text-property> + </structure> + <structure> + <property name="columnName">NumOrdre_Taille_H2</property> + <property name="analysis">measure</property> + <text-property name="heading">NumOrdre_Taille_H2</text-property> + </structure> + <structure> + <property name="columnName">Poids_Classe_Taille</property> + <property name="analysis">measure</property> + <text-property name="heading">Poids_Classe_Taille</text-property> + </structure> + <structure> + <property name="columnName">Unite_Taille</property> + <property name="analysis">dimension</property> + <text-property name="heading">Unite_Taille</text-property> + </structure> + <structure> + <property name="columnName">Precision_Mesure</property> + <property name="analysis">measure</property> + <text-property name="heading">Precision_Mesure</text-property> + </structure> + <structure> + <property name="columnName">Nbr</property> + <property name="analysis">measure</property> + <text-property name="heading">Nbr</text-property> + </structure> + <structure> + <property name="columnName">Poids_Reference</property> + <property name="analysis">measure</property> + <text-property name="heading">Poids_Reference</text-property> + </structure> + <structure> + <property name="columnName">Coef_Elev_Espece_Capture</property> + <property name="analysis">measure</property> + <text-property name="heading">Coef_Elev_Espece_Capture</text-property> + </structure> + </list-property> + <list-property name="parameters"/> + <structure name="cachedMetaData"> + <list-property name="resultSet"> + <structure> + <property name="position">1</property> + <property name="name">Annee</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">2</property> + <property name="name">Serie</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">3</property> + <property name="name">Serie_Partielle</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">4</property> + <property name="name">Engin</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">5</property> + <property name="name">Code_Station</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">6</property> + <property name="name">Numero_Trait</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">7</property> + <property name="name">Poche</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">8</property> + <property name="name">Navire</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">9</property> + <property name="name">Taxon</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">10</property> + <property name="name">Nom_scientifique</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">11</property> + <property name="name">Commentaire</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">12</property> + <property name="name">V_HV</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">13</property> + <property name="name">Num_Ordre_V_HV_H2</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">14</property> + <property name="name">Tot_V_HV</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">15</property> + <property name="name">Ech_V_HV</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">16</property> + <property name="name">Type_Volume_Poids_V_HV</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">17</property> + <property name="name">Unite_Volume_Poids_V_HV</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">18</property> + <property name="name">Class_Tri_</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">19</property> + <property name="name">Num_Ordre_Class_Tri__H2</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">20</property> + <property name="name">Tot_Class_Tri_</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">21</property> + <property name="name">Ech_Class_Tri_</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">22</property> + <property name="name">Type_Volume_Poids_Class_Tri_</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">23</property> + <property name="name">Unite_Volume_Poids_Class_Tri_</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">24</property> + <property name="name">Sexe</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">25</property> + <property name="name">Num_Ordre_Sexe_H2</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">26</property> + <property name="name">Tot_Sexe</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">27</property> + <property name="name">Ech_Sexe</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">28</property> + <property name="name">Type_Volume_Poids_Sexe</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">29</property> + <property name="name">Unite_Volume_Poids_Sexe</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">30</property> + <property name="name">Maturité</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">31</property> + <property name="name">Num_Ordre_Maturité_H2</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">32</property> + <property name="name">Tot_Maturité</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">33</property> + <property name="name">Ech_Maturité</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">34</property> + <property name="name">Type_Volume_Poids_Maturité</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">35</property> + <property name="name">Unite_Volume_Poids_Maturité</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">36</property> + <property name="name">Age</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">37</property> + <property name="name">Num_Ordre_Age_H2</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">38</property> + <property name="name">Tot_Age</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">39</property> + <property name="name">Ech_Age</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">40</property> + <property name="name">Type_Volume_Poids_Age</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">41</property> + <property name="name">Unite_Volume_Poids_Age</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">42</property> + <property name="name">Code_Longueur</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">43</property> + <property name="name">Libelle_Longueur</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">44</property> + <property name="name">Taille</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">45</property> + <property name="name">NumOrdre_Taille_H2</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">46</property> + <property name="name">Poids_Classe_Taille</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">47</property> + <property name="name">Unite_Taille</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">48</property> + <property name="name">Precision_Mesure</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">49</property> + <property name="name">Nbr</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">50</property> + <property name="name">Poids_Reference</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">51</property> + <property name="name">Coef_Elev_Espece_Capture</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">52</property> + <property name="name">categorisation-du-lot</property> + <property name="dataType">string</property> + </structure> + </list-property> + </structure> + <property name="dataSource">FlatFileDataSource</property> + <list-property name="resultSet"> + <structure> + <property name="position">1</property> + <property name="name">Annee</property> + <property name="nativeName">Annee</property> + <property name="dataType">integer</property> + <property name="nativeDataType">4</property> + </structure> + <structure> + <property name="position">2</property> + <property name="name">Serie</property> + <property name="nativeName">Serie</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">3</property> + <property name="name">Serie_Partielle</property> + <property name="nativeName">Serie_Partielle</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">4</property> + <property name="name">Engin</property> + <property name="nativeName">Engin</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">5</property> + <property name="name">Code_Station</property> + <property name="nativeName">Code_Station</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">6</property> + <property name="name">Numero_Trait</property> + <property name="nativeName">Numero_Trait</property> + <property name="dataType">integer</property> + <property name="nativeDataType">4</property> + </structure> + <structure> + <property name="position">7</property> + <property name="name">Poche</property> + <property name="nativeName">Poche</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">8</property> + <property name="name">Navire</property> + <property name="nativeName">Navire</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">9</property> + <property name="name">Taxon</property> + <property name="nativeName">Taxon</property> + <property name="dataType">integer</property> + <property name="nativeDataType">4</property> + </structure> + <structure> + <property name="position">10</property> + <property name="name">Nom_scientifique</property> + <property name="nativeName">Nom_scientifique</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">11</property> + <property name="name">Commentaire</property> + <property name="nativeName">Commentaire</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">12</property> + <property name="name">V_HV</property> + <property name="nativeName">V_HV</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">13</property> + <property name="name">Num_Ordre_V_HV_H2</property> + <property name="nativeName">Num_Ordre_V_HV_H2</property> + <property name="dataType">integer</property> + <property name="nativeDataType">4</property> + </structure> + <structure> + <property name="position">14</property> + <property name="name">Tot_V_HV</property> + <property name="nativeName">Tot_V_HV</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">15</property> + <property name="name">Ech_V_HV</property> + <property name="nativeName">Ech_V_HV</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">16</property> + <property name="name">Type_Volume_Poids_V_HV</property> + <property name="nativeName">Type_Volume_Poids_V_HV</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">17</property> + <property name="name">Unite_Volume_Poids_V_HV</property> + <property name="nativeName">Unite_Volume_Poids_V_HV</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">18</property> + <property name="name">Class_Tri_</property> + <property name="nativeName">Class_Tri_</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">19</property> + <property name="name">Num_Ordre_Class_Tri__H2</property> + <property name="nativeName">Num_Ordre_Class_Tri__H2</property> + <property name="dataType">integer</property> + <property name="nativeDataType">4</property> + </structure> + <structure> + <property name="position">20</property> + <property name="name">Tot_Class_Tri_</property> + <property name="nativeName">Tot_Class_Tri_</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">21</property> + <property name="name">Ech_Class_Tri_</property> + <property name="nativeName">Ech_Class_Tri_</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">22</property> + <property name="name">Type_Volume_Poids_Class_Tri_</property> + <property name="nativeName">Type_Volume_Poids_Class_Tri_</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">23</property> + <property name="name">Unite_Volume_Poids_Class_Tri_</property> + <property name="nativeName">Unite_Volume_Poids_Class_Tri_</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">24</property> + <property name="name">Sexe</property> + <property name="nativeName">Sexe</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">25</property> + <property name="name">Num_Ordre_Sexe_H2</property> + <property name="nativeName">Num_Ordre_Sexe_H2</property> + <property name="dataType">integer</property> + <property name="nativeDataType">4</property> + </structure> + <structure> + <property name="position">26</property> + <property name="name">Tot_Sexe</property> + <property name="nativeName">Tot_Sexe</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">27</property> + <property name="name">Ech_Sexe</property> + <property name="nativeName">Ech_Sexe</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">28</property> + <property name="name">Type_Volume_Poids_Sexe</property> + <property name="nativeName">Type_Volume_Poids_Sexe</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">29</property> + <property name="name">Unite_Volume_Poids_Sexe</property> + <property name="nativeName">Unite_Volume_Poids_Sexe</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">30</property> + <property name="name">Maturité</property> + <property name="nativeName">Maturité</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">31</property> + <property name="name">Num_Ordre_Maturité_H2</property> + <property name="nativeName">Num_Ordre_Maturité_H2</property> + <property name="dataType">integer</property> + <property name="nativeDataType">4</property> + </structure> + <structure> + <property name="position">32</property> + <property name="name">Tot_Maturité</property> + <property name="nativeName">Tot_Maturité</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">33</property> + <property name="name">Ech_Maturité</property> + <property name="nativeName">Ech_Maturité</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">34</property> + <property name="name">Type_Volume_Poids_Maturité</property> + <property name="nativeName">Type_Volume_Poids_Maturité</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">35</property> + <property name="name">Unite_Volume_Poids_Maturité</property> + <property name="nativeName">Unite_Volume_Poids_Maturité</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">36</property> + <property name="name">Age</property> + <property name="nativeName">Age</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">37</property> + <property name="name">Num_Ordre_Age_H2</property> + <property name="nativeName">Num_Ordre_Age_H2</property> + <property name="dataType">integer</property> + <property name="nativeDataType">4</property> + </structure> + <structure> + <property name="position">38</property> + <property name="name">Tot_Age</property> + <property name="nativeName">Tot_Age</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">39</property> + <property name="name">Ech_Age</property> + <property name="nativeName">Ech_Age</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">40</property> + <property name="name">Type_Volume_Poids_Age</property> + <property name="nativeName">Type_Volume_Poids_Age</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">41</property> + <property name="name">Unite_Volume_Poids_Age</property> + <property name="nativeName">Unite_Volume_Poids_Age</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">42</property> + <property name="name">Code_Longueur</property> + <property name="nativeName">Code_Longueur</property> + <property name="dataType">integer</property> + <property name="nativeDataType">4</property> + </structure> + <structure> + <property name="position">43</property> + <property name="name">Libelle_Longueur</property> + <property name="nativeName">Libelle_Longueur</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">44</property> + <property name="name">Taille</property> + <property name="nativeName">Taille</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">45</property> + <property name="name">NumOrdre_Taille_H2</property> + <property name="nativeName">NumOrdre_Taille_H2</property> + <property name="dataType">integer</property> + <property name="nativeDataType">4</property> + </structure> + <structure> + <property name="position">46</property> + <property name="name">Poids_Classe_Taille</property> + <property name="nativeName">Poids_Classe_Taille</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">47</property> + <property name="name">Unite_Taille</property> + <property name="nativeName">Unite_Taille</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">48</property> + <property name="name">Precision_Mesure</property> + <property name="nativeName">Precision_Mesure</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">49</property> + <property name="name">Nbr</property> + <property name="nativeName">Nbr</property> + <property name="dataType">integer</property> + <property name="nativeDataType">4</property> + </structure> + <structure> + <property name="position">50</property> + <property name="name">Poids_Reference</property> + <property name="nativeName">Poids_Reference</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + <structure> + <property name="position">51</property> + <property name="name">Coef_Elev_Espece_Capture</property> + <property name="nativeName">Coef_Elev_Espece_Capture</property> + <property name="dataType">decimal</property> + <property name="nativeDataType">2</property> + </structure> + </list-property> + <xml-property name="queryText"><![CDATA[select "Annee", "Serie", "Serie_Partielle", "Engin", "Code_Station", "Numero_Trait", "Poche", "Navire", "Taxon", "Nom_scientifique", "Commentaire", "V_HV", "Num_Ordre_V_HV_H2", "Tot_V_HV", "Ech_V_HV", "Type_Volume_Poids_V_HV", "Unite_Volume_Poids_V_HV", "Class_Tri_", "Num_Ordre_Class_Tri__H2", "Tot_Class_Tri_", "Ech_Class_Tri_", "Type_Volume_Poids_Class_Tri_", "Unite_Volume_Poids_Class_Tri_", "Sexe", "Num_Ordre_Sexe_H2", "Tot_Sexe", "Ech_Sexe", "Type_Volume_Poids_Sexe", "Unite_Volume_Poids_Sexe", "Maturité", "Num_Ordre_Maturité_H2", "Tot_Maturité", "Ech_Maturité", "Type_Volume_Poids_Maturité", "Unite_Volume_Poids_Maturité", "Age", "Num_Ordre_Age_H2", "Tot_Age", "Ech_Age", "Type_Volume_Poids_Age", "Unite_Volume_Poids_Age", "Code_Longueur", "Libelle_Longueur", "Taille", "NumOrdre_Taille_H2", "Poids_Classe_Taille", "Unite_Taille", "Precision_Mesure", "Nbr", "Poids_Reference", "Coef_Elev_Espece_Capture" from "catch.csv" : {"Annee","Annee",INT;"Serie","Serie",STRING;"Serie_Partielle","Serie_Partielle",STRING;"Engin","Engin",STRING;"Code_Station","Code_Station",STRING;"Numero_Trait","Numero_Trait",INT;"Poche","Poche",STRING;"Navire","Navire",STRING;"Taxon","Taxon",INT;"Nom_scientifique","Nom_scientifique",STRING;"Commentaire","Commentaire",STRING;"V_HV","V_HV",STRING;"Num_Ordre_V_HV_H2","Num_Ordre_V_HV_H2",INT;"Tot_V_HV","Tot_V_HV",BIGDECIMAL;"Ech_V_HV","Ech_V_HV",BIGDECIMAL;"Type_Volume_Poids_V_HV","Type_Volume_Poids_V_HV",STRING;"Unite_Volume_Poids_V_HV","Unite_Volume_Poids_V_HV",STRING;"Class_Tri_","Class_Tri_",STRING;"Num_Ordre_Class_Tri__H2","Num_Ordre_Class_Tri__H2",INT;"Tot_Class_Tri_","Tot_Class_Tri_",BIGDECIMAL;"Ech_Class_Tri_","Ech_Class_Tri_",BIGDECIMAL;"Type_Volume_Poids_Class_Tri_","Type_Volume_Poids_Class_Tri_",STRING;"Unite_Volume_Poids_Class_Tri_","Unite_Volume_Poids_Class_Tri_",STRING;"Sexe","Sexe",STRING;"Num_Ordre_Sexe_H2","Num_Ordre_Sexe_H2",INT;"Tot_Sexe","Tot_Sexe",BIGDECIMAL;"Ech_Sexe","Ech_Sexe",BIGDECIMAL;"Type_Volume_Poids_Sexe","Type_Volume_Poids_Sexe",STRING;"Unite_Volume_Poids_Sexe","Unite_Volume_Poids_Sexe",STRING;"Maturité","Maturité",STRING;"Num_Ordre_Maturité_H2","Num_Ordre_Maturité_H2",INT;"Tot_Maturité","Tot_Maturité",BIGDECIMAL;"Ech_Maturité","Ech_Maturité",BIGDECIMAL;"Type_Volume_Poids_Maturité","Type_Volume_Poids_Maturité",STRING;"Unite_Volume_Poids_Maturité","Unite_Volume_Poids_Maturité",STRING;"Age","Age",STRING;"Num_Ordre_Age_H2","Num_Ordre_Age_H2",INT;"Tot_Age","Tot_Age",BIGDECIMAL;"Ech_Age","Ech_Age",BIGDECIMAL;"Type_Volume_Poids_Age","Type_Volume_Poids_Age",STRING;"Unite_Volume_Poids_Age","Unite_Volume_Poids_Age",STRING;"Code_Longueur","Code_Longueur",INT;"Libelle_Longueur","Libelle_Longueur",STRING;"Taille","Taille",BIGDECIMAL;"NumOrdre_Taille_H2","NumOrdre_Taille_H2",INT;"Poids_Classe_Taille","Poids_Classe_Taille",BIGDECIMAL;"Unite_Taille","Unite_Taille",STRING;"Precision_Mesure","Precision_Mesure",BIGDECIMAL;"Nbr","Nbr",INT;"Poids_Reference","Poids_Reference",BIGDECIMAL;"Coef_Elev_Espece_Capture","Coef_Elev_Espece_Capture",BIGDECIMAL}]]></xml-property> + <xml-property name="designerValues"><![CDATA[<?xml version="1.0" encoding="UTF-8"?> +<model:DesignValues xmlns:design="http://www.eclipse.org/datatools/connectivity/oda/design" xmlns:model="http://www.eclipse.org/birt/report/model/adapter/odaModel"> + <Version>2.0</Version> + <design:ResultSets derivedMetaData="true"> + <design:resultSetDefinitions> + <design:resultSetColumns> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Annee</design:name> + <design:position>1</design:position> + </design:identifier> + <design:nativeDataTypeCode>4</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Annee</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Serie</design:name> + <design:position>2</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Serie</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Serie_Partielle</design:name> + <design:position>3</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Serie_Partielle</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Engin</design:name> + <design:position>4</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Engin</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Code_Station</design:name> + <design:position>5</design:position> + </design:identifier> + <design:nativeDataTypeCode>4</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Code_Station</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Numero_Trait</design:name> + <design:position>6</design:position> + </design:identifier> + <design:nativeDataTypeCode>4</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Numero_Trait</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poche</design:name> + <design:position>7</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poche</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Navire</design:name> + <design:position>8</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Navire</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Taxon</design:name> + <design:position>9</design:position> + </design:identifier> + <design:nativeDataTypeCode>4</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Taxon</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Nom_scientifique</design:name> + <design:position>10</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Nom_scientifique</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Commentaire</design:name> + <design:position>11</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Commentaire</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>V_HV</design:name> + <design:position>12</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>V_HV</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Num_Ordre_V_HV_H2</design:name> + <design:position>13</design:position> + </design:identifier> + <design:nativeDataTypeCode>4</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Num_Ordre_V_HV_H2</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Tot_V_HV</design:name> + <design:position>14</design:position> + </design:identifier> + <design:nativeDataTypeCode>2</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Tot_V_HV</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Ech_V_HV</design:name> + <design:position>15</design:position> + </design:identifier> + <design:nativeDataTypeCode>2</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Ech_V_HV</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Type_Volume_Poids_V_HV</design:name> + <design:position>16</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Type_Volume_Poids_V_HV</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Unite_Volume_Poids_V_HV</design:name> + <design:position>17</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Unite_Volume_Poids_V_HV</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Class_Tri_</design:name> + <design:position>18</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Class_Tri_</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Num_Ordre_Class_Tri__H2</design:name> + <design:position>19</design:position> + </design:identifier> + <design:nativeDataTypeCode>4</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Num_Ordre_Class_Tri__H2</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Tot_Class_Tri_</design:name> + <design:position>20</design:position> + </design:identifier> + <design:nativeDataTypeCode>2</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Tot_Class_Tri_</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Ech_Class_Tri_</design:name> + <design:position>21</design:position> + </design:identifier> + <design:nativeDataTypeCode>2</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Ech_Class_Tri_</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Type_Volume_Poids_Class_Tri_</design:name> + <design:position>22</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Type_Volume_Poids_Class_Tri_</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Unite_Volume_Poids_Class_Tri_</design:name> + <design:position>23</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Unite_Volume_Poids_Class_Tri_</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Sexe</design:name> + <design:position>24</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Sexe</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Num_Ordre_Sexe_H2</design:name> + <design:position>25</design:position> + </design:identifier> + <design:nativeDataTypeCode>4</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Num_Ordre_Sexe_H2</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Tot_Sexe</design:name> + <design:position>26</design:position> + </design:identifier> + <design:nativeDataTypeCode>2</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Tot_Sexe</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Ech_Sexe</design:name> + <design:position>27</design:position> + </design:identifier> + <design:nativeDataTypeCode>2</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Ech_Sexe</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Type_Volume_Poids_Sexe</design:name> + <design:position>28</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Type_Volume_Poids_Sexe</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Unite_Volume_Poids_Sexe</design:name> + <design:position>29</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Unite_Volume_Poids_Sexe</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Maturité</design:name> + <design:position>30</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Maturité</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Num_Ordre_Maturité_H2</design:name> + <design:position>31</design:position> + </design:identifier> + <design:nativeDataTypeCode>4</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Num_Ordre_Maturité_H2</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Tot_Maturité</design:name> + <design:position>32</design:position> + </design:identifier> + <design:nativeDataTypeCode>2</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Tot_Maturité</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Ech_Maturité</design:name> + <design:position>33</design:position> + </design:identifier> + <design:nativeDataTypeCode>2</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Ech_Maturité</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Type_Volume_Poids_Maturité</design:name> + <design:position>34</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Type_Volume_Poids_Maturité</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Unite_Volume_Poids_Maturité</design:name> + <design:position>35</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Unite_Volume_Poids_Maturité</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Age</design:name> + <design:position>36</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Age</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Num_Ordre_Age_H2</design:name> + <design:position>37</design:position> + </design:identifier> + <design:nativeDataTypeCode>4</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Num_Ordre_Age_H2</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Tot_Age</design:name> + <design:position>38</design:position> + </design:identifier> + <design:nativeDataTypeCode>2</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Tot_Age</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Ech_Age</design:name> + <design:position>39</design:position> + </design:identifier> + <design:nativeDataTypeCode>2</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Ech_Age</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Type_Volume_Poids_Age</design:name> + <design:position>40</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Type_Volume_Poids_Age</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Unite_Volume_Poids_Age</design:name> + <design:position>41</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Unite_Volume_Poids_Age</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Code_Longueur</design:name> + <design:position>42</design:position> + </design:identifier> + <design:nativeDataTypeCode>4</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Code_Longueur</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Libelle_Longueur</design:name> + <design:position>43</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Libelle_Longueur</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Taille</design:name> + <design:position>44</design:position> + </design:identifier> + <design:nativeDataTypeCode>2</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Taille</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>NumOrdre_Taille_H2</design:name> + <design:position>45</design:position> + </design:identifier> + <design:nativeDataTypeCode>4</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>NumOrdre_Taille_H2</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Classe_Taille</design:name> + <design:position>46</design:position> + </design:identifier> + <design:nativeDataTypeCode>2</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Classe_Taille</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Unite_Taille</design:name> + <design:position>47</design:position> + </design:identifier> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Unite_Taille</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Precision_Mesure</design:name> + <design:position>48</design:position> + </design:identifier> + <design:nativeDataTypeCode>2</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Precision_Mesure</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Nbr</design:name> + <design:position>49</design:position> + </design:identifier> + <design:nativeDataTypeCode>4</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Nbr</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Poids_Reference</design:name> + <design:position>50</design:position> + </design:identifier> + <design:nativeDataTypeCode>2</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poids_Reference</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:identifier> + <design:name>Coef_Elev_Espece_Capture</design:name> + <design:position>51</design:position> + </design:identifier> + <design:nativeDataTypeCode>2</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Coef_Elev_Espece_Capture</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + </design:resultSetColumns> + </design:resultSetDefinitions> + </design:ResultSets> +</model:DesignValues>]]></xml-property> + </oda-data-set> + <oda-data-set extensionID="org.eclipse.datatools.connectivity.oda.flatfile.dataSet" name="species" id="3256"> + <list-property name="computedColumns"> + <structure> + <property name="name">lib</property> + <expression name="expression">row["Code_Rubin"]+"-"+row["Nom Scientifique"]</expression> + <property name="dataType">string</property> + </structure> + </list-property> + <structure name="cachedMetaData"> + <list-property name="resultSet"> + <structure> + <property name="position">1</property> + <property name="name">Id</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">2</property> + <property name="name">Code_Rubin</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">3</property> + <property name="name">Nom Scientifique</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">4</property> + <property name="name">Code campagne</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">5</property> + <property name="name">lib</property> + <property name="dataType">string</property> + </structure> + </list-property> + </structure> + <property name="dataSource">FlatFileDataSource</property> + <list-property name="resultSet"> + <structure> + <property name="position">1</property> + <property name="name">Id</property> + <property name="nativeName">Id</property> + <property name="dataType">integer</property> + <property name="nativeDataType">4</property> + </structure> + <structure> + <property name="position">2</property> + <property name="name">Code_Rubin</property> + <property name="nativeName">Code_Rubin</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">3</property> + <property name="name">Nom Scientifique</property> + <property name="nativeName">Nom Scientifique</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">4</property> + <property name="name">Code campagne</property> + <property name="nativeName">Code campagne</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + </list-property> + <xml-property name="queryText"><![CDATA[select "Id", "Code_Rubin", "Nom Scientifique", "Code campagne" from species.csv : {"Id","Id",INT;"Code_Rubin","Code_Rubin",STRING;"Nom Scientifique","Nom Scientifique",STRING;"Code campagne","Code campagne",STRING}]]></xml-property> + <xml-property name="designerValues"><![CDATA[<?xml version="1.0" encoding="UTF-8"?> +<model:DesignValues xmlns:design="http://www.eclipse.org/datatools/connectivity/oda/design" xmlns:model="http://www.eclipse.org/birt/report/model/adapter/odaModel"> + <Version>1.0</Version> + <design:ResultSets derivedMetaData="true"> + <design:resultSetDefinitions> + <design:resultSetColumns> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Id</design:name> + <design:position>1</design:position> + <design:nativeDataTypeCode>4</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Id</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Code_Rubin</design:name> + <design:position>2</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Code_Rubin</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Nom Scientifique</design:name> + <design:position>3</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Nom Scientifique</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Code campagne</design:name> + <design:position>4</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Code campagne</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + </design:resultSetColumns> + </design:resultSetDefinitions> + </design:ResultSets> +</model:DesignValues>]]></xml-property> + </oda-data-set> + <oda-data-set extensionID="org.eclipse.datatools.connectivity.oda.flatfile.dataSet" name="accidentalCatch" id="3459"> + <structure name="cachedMetaData"> + <list-property name="resultSet"> + <structure> + <property name="position">1</property> + <property name="name">Annee</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">2</property> + <property name="name">Serie</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">3</property> + <property name="name">Serie_Partielle</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">4</property> + <property name="name">Engin</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">5</property> + <property name="name">Code_Station</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">6</property> + <property name="name">Numero_Trait</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">7</property> + <property name="name">Poche</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">8</property> + <property name="name">Navire</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">9</property> + <property name="name">BatchId</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">10</property> + <property name="name">ReferenceTaxonId</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">11</property> + <property name="name">ReferenceTaxonName</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">12</property> + <property name="name">Commentaire</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">13</property> + <property name="name">CaracteristicId</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">14</property> + <property name="name">CaracteristicValue</property> + <property name="dataType">string</property> + </structure> + </list-property> + </structure> + <method name="onFetch"><![CDATA[existsCapAcc=existsCapAcc+1;]]></method> + <property name="dataSource">FlatFileDataSource</property> + <list-property name="resultSet"> + <structure> + <property name="position">1</property> + <property name="name">Annee</property> + <property name="nativeName">Annee</property> + <property name="dataType">integer</property> + <property name="nativeDataType">4</property> + </structure> + <structure> + <property name="position">2</property> + <property name="name">Serie</property> + <property name="nativeName">Serie</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">3</property> + <property name="name">Serie_Partielle</property> + <property name="nativeName">Serie_Partielle</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">4</property> + <property name="name">Engin</property> + <property name="nativeName">Engin</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">5</property> + <property name="name">Code_Station</property> + <property name="nativeName">Code_Station</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">6</property> + <property name="name">Numero_Trait</property> + <property name="nativeName">Numero_Trait</property> + <property name="dataType">integer</property> + <property name="nativeDataType">4</property> + </structure> + <structure> + <property name="position">7</property> + <property name="name">Poche</property> + <property name="nativeName">Poche</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">8</property> + <property name="name">Navire</property> + <property name="nativeName">Navire</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">9</property> + <property name="name">BatchId</property> + <property name="nativeName">BatchId</property> + <property name="dataType">integer</property> + <property name="nativeDataType">4</property> + </structure> + <structure> + <property name="position">10</property> + <property name="name">ReferenceTaxonId</property> + <property name="nativeName">ReferenceTaxonId</property> + <property name="dataType">integer</property> + <property name="nativeDataType">4</property> + </structure> + <structure> + <property name="position">11</property> + <property name="name">ReferenceTaxonName</property> + <property name="nativeName">ReferenceTaxonName</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">12</property> + <property name="name">Commentaire</property> + <property name="nativeName">Commentaire</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + <structure> + <property name="position">13</property> + <property name="name">CaracteristicId</property> + <property name="nativeName">CaracteristicId</property> + <property name="dataType">integer</property> + <property name="nativeDataType">4</property> + </structure> + <structure> + <property name="position">14</property> + <property name="name">CaracteristicValue</property> + <property name="nativeName">CaracteristicValue</property> + <property name="dataType">string</property> + <property name="nativeDataType">12</property> + </structure> + </list-property> + <xml-property name="queryText"><![CDATA[select "Annee", "Serie", "Serie_Partielle", "Engin", "Code_Station", "Numero_Trait", "Poche", "Navire", "BatchId", "ReferenceTaxonId", "ReferenceTaxonName", "Commentaire", "CaracteristicId", "CaracteristicValue" from accidentalCatch.csv : {"Annee","Annee",INT;"Serie","Serie",STRING;"Serie_Partielle","Serie_Partielle",STRING;"Engin","Engin",STRING;"Code_Station","Code_Station",STRING;"Numero_Trait","Numero_Trait",INT;"Poche","Poche",STRING;"Navire","Navire",STRING;"BatchId","BatchId",INT;"ReferenceTaxonId","ReferenceTaxonId",INT;"ReferenceTaxonName","ReferenceTaxonName",STRING;"Commentaire","Commentaire",STRING;"CaracteristicId","CaracteristicId",INT;"CaracteristicValue","CaracteristicValue",STRING}]]></xml-property> + <xml-property name="designerValues"><![CDATA[<?xml version="1.0" encoding="UTF-8"?> +<model:DesignValues xmlns:design="http://www.eclipse.org/datatools/connectivity/oda/design" xmlns:model="http://www.eclipse.org/birt/report/model/adapter/odaModel"> + <Version>1.0</Version> + <design:ResultSets derivedMetaData="true"> + <design:resultSetDefinitions> + <design:resultSetColumns> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Annee</design:name> + <design:position>1</design:position> + <design:nativeDataTypeCode>4</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Annee</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Serie</design:name> + <design:position>2</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Serie</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Serie_Partielle</design:name> + <design:position>3</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Serie_Partielle</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Engin</design:name> + <design:position>4</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Engin</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Code_Station</design:name> + <design:position>5</design:position> + <design:nativeDataTypeCode>4</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Code_Station</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Numero_Trait</design:name> + <design:position>6</design:position> + <design:nativeDataTypeCode>4</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Numero_Trait</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Poche</design:name> + <design:position>7</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Poche</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Navire</design:name> + <design:position>8</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Navire</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>BatchId</design:name> + <design:position>9</design:position> + <design:nativeDataTypeCode>4</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>BatchId</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>ReferenceTaxonId</design:name> + <design:position>10</design:position> + <design:nativeDataTypeCode>4</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>ReferenceTaxonId</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>ReferenceTaxonName</design:name> + <design:position>11</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>ReferenceTaxonName</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>Commentaire</design:name> + <design:position>12</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>Commentaire</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>CaracteristicId</design:name> + <design:position>13</design:position> + <design:nativeDataTypeCode>4</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>CaracteristicId</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + <design:resultColumnDefinitions> + <design:attributes> + <design:name>CaracteristicValue</design:name> + <design:position>14</design:position> + <design:nativeDataTypeCode>12</design:nativeDataTypeCode> + <design:precision>-1</design:precision> + <design:scale>-1</design:scale> + <design:nullability>Unknown</design:nullability> + </design:attributes> + <design:usageHints> + <design:label>CaracteristicValue</design:label> + <design:formattingHints/> + </design:usageHints> + </design:resultColumnDefinitions> + </design:resultSetColumns> + </design:resultSetDefinitions> + </design:ResultSets> +</model:DesignValues>]]></xml-property> + </oda-data-set> + <joint-data-set name="catchWithSpecies" id="3488"> + <list-property name="columnHints"> + <structure> + <property name="columnName">catch::Annee</property> + <property name="alias">Annee</property> + </structure> + <structure> + <property name="columnName">catch::Serie</property> + <property name="alias">Serie</property> + </structure> + <structure> + <property name="columnName">catch::Serie_Partielle</property> + <property name="alias">Serie_Partielle</property> + </structure> + <structure> + <property name="columnName">catch::Engin</property> + <property name="alias">Engin</property> + </structure> + <structure> + <property name="columnName">catch::Code_Station</property> + <property name="alias">Code_Station</property> + </structure> + <structure> + <property name="columnName">catch::Numero_Trait</property> + <property name="alias">Numero_Trait</property> + </structure> + <structure> + <property name="columnName">catch::Poche</property> + <property name="alias">Poche</property> + </structure> + <structure> + <property name="columnName">catch::Navire</property> + <property name="alias">Navire</property> + </structure> + <structure> + <property name="columnName">catch::Taxon</property> + <property name="alias">Taxon</property> + </structure> + <structure> + <property name="columnName">catch::Nom_scientifique</property> + <property name="alias">Nom_scientifique</property> + </structure> + <structure> + <property name="columnName">catch::Commentaire</property> + <property name="alias">Commentaire</property> + </structure> + <structure> + <property name="columnName">catch::V_HV</property> + <property name="alias">V_HV</property> + </structure> + <structure> + <property name="columnName">catch::Num_Ordre_V_HV_H2</property> + <property name="alias">Num_Ordre_V_HV_H2</property> + </structure> + <structure> + <property name="columnName">catch::Tot_V_HV</property> + <property name="alias">Tot_V_HV</property> + </structure> + <structure> + <property name="columnName">catch::Ech_V_HV</property> + <property name="alias">Ech_V_HV</property> + </structure> + <structure> + <property name="columnName">catch::Type_Volume_Poids_V_HV</property> + <property name="alias">Type_Volume_Poids_V_HV</property> + </structure> + <structure> + <property name="columnName">catch::Unite_Volume_Poids_V_HV</property> + <property name="alias">Unite_Volume_Poids_V_HV</property> + </structure> + <structure> + <property name="columnName">catch::Class_Tri_</property> + <property name="alias">Class_Tri_</property> + </structure> + <structure> + <property name="columnName">catch::Num_Ordre_Class_Tri__H2</property> + <property name="alias">Num_Ordre_Class_Tri__H2</property> + </structure> + <structure> + <property name="columnName">catch::Tot_Class_Tri_</property> + <property name="alias">Tot_Class_Tri_</property> + </structure> + <structure> + <property name="columnName">catch::Ech_Class_Tri_</property> + <property name="alias">Ech_Class_Tri_</property> + </structure> + <structure> + <property name="columnName">catch::Type_Volume_Poids_Class_Tri_</property> + <property name="alias">Type_Volume_Poids_Class_Tri_</property> + </structure> + <structure> + <property name="columnName">catch::Unite_Volume_Poids_Class_Tri_</property> + <property name="alias">Unite_Volume_Poids_Class_Tri_</property> + </structure> + <structure> + <property name="columnName">catch::Sexe</property> + <property name="alias">Sexe</property> + </structure> + <structure> + <property name="columnName">catch::Num_Ordre_Sexe_H2</property> + <property name="alias">Num_Ordre_Sexe_H2</property> + </structure> + <structure> + <property name="columnName">catch::Tot_Sexe</property> + <property name="alias">Tot_Sexe</property> + </structure> + <structure> + <property name="columnName">catch::Ech_Sexe</property> + <property name="alias">Ech_Sexe</property> + </structure> + <structure> + <property name="columnName">catch::Type_Volume_Poids_Sexe</property> + <property name="alias">Type_Volume_Poids_Sexe</property> + </structure> + <structure> + <property name="columnName">catch::Unite_Volume_Poids_Sexe</property> + <property name="alias">Unite_Volume_Poids_Sexe</property> + </structure> + <structure> + <property name="columnName">catch::Maturité</property> + <property name="alias">Maturité</property> + </structure> + <structure> + <property name="columnName">catch::Num_Ordre_Maturité_H2</property> + <property name="alias">Num_Ordre_Maturité_H2</property> + </structure> + <structure> + <property name="columnName">catch::Tot_Maturité</property> + <property name="alias">Tot_Maturité</property> + </structure> + <structure> + <property name="columnName">catch::Ech_Maturité</property> + <property name="alias">Ech_Maturité</property> + </structure> + <structure> + <property name="columnName">catch::Type_Volume_Poids_Maturité</property> + <property name="alias">Type_Volume_Poids_Maturité</property> + </structure> + <structure> + <property name="columnName">catch::Unite_Volume_Poids_Maturité</property> + <property name="alias">Unite_Volume_Poids_Maturité</property> + </structure> + <structure> + <property name="columnName">catch::Age</property> + <property name="alias">Age</property> + </structure> + <structure> + <property name="columnName">catch::Num_Ordre_Age_H2</property> + <property name="alias">Num_Ordre_Age_H2</property> + </structure> + <structure> + <property name="columnName">catch::Tot_Age</property> + <property name="alias">Tot_Age</property> + </structure> + <structure> + <property name="columnName">catch::Ech_Age</property> + <property name="alias">Ech_Age</property> + </structure> + <structure> + <property name="columnName">catch::Type_Volume_Poids_Age</property> + <property name="alias">Type_Volume_Poids_Age</property> + </structure> + <structure> + <property name="columnName">catch::Unite_Volume_Poids_Age</property> + <property name="alias">Unite_Volume_Poids_Age</property> + </structure> + <structure> + <property name="columnName">catch::Code_Longueur</property> + <property name="alias">Code_Longueur</property> + </structure> + <structure> + <property name="columnName">catch::Libelle_Longueur</property> + <property name="alias">Libelle_Longueur</property> + </structure> + <structure> + <property name="columnName">catch::Taille</property> + <property name="alias">Taille</property> + </structure> + <structure> + <property name="columnName">catch::NumOrdre_Taille_H2</property> + <property name="alias">NumOrdre_Taille_H2</property> + </structure> + <structure> + <property name="columnName">catch::Poids_Classe_Taille</property> + <property name="alias">Poids_Classe_Taille</property> + </structure> + <structure> + <property name="columnName">catch::Unite_Taille</property> + <property name="alias">Unite_Taille</property> + </structure> + <structure> + <property name="columnName">catch::Precision_Mesure</property> + <property name="alias">Precision_Mesure</property> + </structure> + <structure> + <property name="columnName">catch::Nbr</property> + <property name="alias">Nbr</property> + </structure> + <structure> + <property name="columnName">catch::Poids_Reference</property> + <property name="alias">Poids_Reference</property> + </structure> + <structure> + <property name="columnName">catch::Coef_Elev_Espece_Capture</property> + <property name="alias">Coef_Elev_Espece_Capture</property> + </structure> + <structure> + <property name="columnName">catch::categorisation-du-lot</property> + <property name="alias">categorisation-du-lot</property> + </structure> + <structure> + <property name="columnName">species::Id</property> + <property name="alias">species-Id</property> + </structure> + <structure> + <property name="columnName">species::Code_Rubin</property> + <property name="alias">species-Code_Rubin</property> + </structure> + <structure> + <property name="columnName">species::Nom Scientifique</property> + <property name="alias">species-Nom Scientifique</property> + </structure> + <structure> + <property name="columnName">species::Code campagne</property> + <property name="alias">species-Code campagne</property> + </structure> + <structure> + <property name="columnName">species::lib</property> + <property name="alias">species-lib</property> + </structure> + </list-property> + <structure name="cachedMetaData"> + <list-property name="resultSet"> + <structure> + <property name="position">1</property> + <property name="name">Annee</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">2</property> + <property name="name">Serie</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">3</property> + <property name="name">Serie_Partielle</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">4</property> + <property name="name">Engin</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">5</property> + <property name="name">Code_Station</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">6</property> + <property name="name">Numero_Trait</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">7</property> + <property name="name">Poche</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">8</property> + <property name="name">Navire</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">9</property> + <property name="name">Taxon</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">10</property> + <property name="name">Nom_scientifique</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">11</property> + <property name="name">Commentaire</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">12</property> + <property name="name">V_HV</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">13</property> + <property name="name">Num_Ordre_V_HV_H2</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">14</property> + <property name="name">Tot_V_HV</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">15</property> + <property name="name">Ech_V_HV</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">16</property> + <property name="name">Type_Volume_Poids_V_HV</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">17</property> + <property name="name">Unite_Volume_Poids_V_HV</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">18</property> + <property name="name">Class_Tri_</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">19</property> + <property name="name">Num_Ordre_Class_Tri__H2</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">20</property> + <property name="name">Tot_Class_Tri_</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">21</property> + <property name="name">Ech_Class_Tri_</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">22</property> + <property name="name">Type_Volume_Poids_Class_Tri_</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">23</property> + <property name="name">Unite_Volume_Poids_Class_Tri_</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">24</property> + <property name="name">Sexe</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">25</property> + <property name="name">Num_Ordre_Sexe_H2</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">26</property> + <property name="name">Tot_Sexe</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">27</property> + <property name="name">Ech_Sexe</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">28</property> + <property name="name">Type_Volume_Poids_Sexe</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">29</property> + <property name="name">Unite_Volume_Poids_Sexe</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">30</property> + <property name="name">Maturité</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">31</property> + <property name="name">Num_Ordre_Maturité_H2</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">32</property> + <property name="name">Tot_Maturité</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">33</property> + <property name="name">Ech_Maturité</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">34</property> + <property name="name">Type_Volume_Poids_Maturité</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">35</property> + <property name="name">Unite_Volume_Poids_Maturité</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">36</property> + <property name="name">Age</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">37</property> + <property name="name">Num_Ordre_Age_H2</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">38</property> + <property name="name">Tot_Age</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">39</property> + <property name="name">Ech_Age</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">40</property> + <property name="name">Type_Volume_Poids_Age</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">41</property> + <property name="name">Unite_Volume_Poids_Age</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">42</property> + <property name="name">Code_Longueur</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">43</property> + <property name="name">Libelle_Longueur</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">44</property> + <property name="name">Taille</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">45</property> + <property name="name">NumOrdre_Taille_H2</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">46</property> + <property name="name">Poids_Classe_Taille</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">47</property> + <property name="name">Unite_Taille</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">48</property> + <property name="name">Precision_Mesure</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">49</property> + <property name="name">Nbr</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">50</property> + <property name="name">Poids_Reference</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">51</property> + <property name="name">Coef_Elev_Espece_Capture</property> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="position">52</property> + <property name="name">categorisation-du-lot</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">53</property> + <property name="name">species-Id</property> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="position">54</property> + <property name="name">species-Code_Rubin</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">55</property> + <property name="name">species-Nom Scientifique</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">56</property> + <property name="name">species-Code campagne</property> + <property name="dataType">string</property> + </structure> + <structure> + <property name="position">57</property> + <property name="name">species-lib</property> + <property name="dataType">string</property> + </structure> + </list-property> + </structure> + <simple-property-list name="dataSets"> + <value>catch</value> + <value>species</value> + </simple-property-list> + <list-property name="joinConditions"> + <structure> + <property name="joinType">inner</property> + <property name="joinOperator">eq</property> + <property name="leftDataSet">catch</property> + <property name="rightDataSet">species</property> + <expression name="leftExpression">dataSetRow["Taxon"]</expression> + <expression name="rightExpression">dataSetRow["Id"]</expression> + </structure> + </list-property> + </joint-data-set> + </data-sets> + <page-setup> + <simple-master-page name="Simple MasterPage Portrait" id="2"> + <property name="type">a4</property> + <property name="topMargin">5mm</property> + <property name="leftMargin">10mm</property> + <property name="bottomMargin">5mm</property> + <property name="rightMargin">10mm</property> + <property name="headerHeight">12mm</property> + <property name="footerHeight">12mm</property> + <page-header> + <grid name="HeaderGrid" id="7"> + <property name="width">100%</property> + <column id="8"> + <property name="width">120px</property> + </column> + <column id="12"> + <property name="width">80%</property> + </column> + <column id="14"/> + <row id="9"> + <cell id="10"> + <image id="15"> + <property name="height">30px</property> + <property name="width">114px</property> + <property name="source">embed</property> + <property name="imageName">logo-ifremer.PNG</property> + </image> + </cell> + <cell id="11"> + <property name="textAlign">center</property> + <property name="verticalAlign">middle</property> + </cell> + <cell id="13"/> + </row> + </grid> + </page-header> + <page-footer> + <grid name="footerGrid" id="17"> + <column id="18"/> + <column id="19"/> + <column id="20"/> + <row id="21"> + <cell id="22"> + <property name="paddingTop">0pt</property> + <property name="paddingLeft">0pt</property> + <property name="paddingBottom">0pt</property> + <property name="paddingRight">0pt</property> + <text id="29"> + <property name="fontFamily">"Verdana"</property> + <property name="contentType">html</property> + <text-property name="content" key="date-generation"></text-property> + </text> + </cell> + <cell id="23"> + <property name="paddingTop">0pt</property> + <property name="paddingLeft">0pt</property> + <property name="paddingBottom">0pt</property> + <property name="paddingRight">0pt</property> + </cell> + <cell id="24"> + <property name="fontSize">10pt</property> + <property name="paddingTop">0pt</property> + <property name="paddingLeft">0pt</property> + <property name="paddingBottom">0pt</property> + <property name="paddingRight">0pt</property> + <property name="textAlign">right</property> + <label id="26"> + <property name="fontFamily">"Verdana"</property> + <property name="marginRight">0pt</property> + <property name="paddingTop">1px</property> + <property name="paddingLeft">1px</property> + <property name="paddingBottom">1px</property> + <property name="paddingRight">5px</property> + <property name="display">inline</property> + <text-property name="text" key="page"></text-property> + </label> + <auto-text name="NewAutoText21" id="2407"> + <property name="fontFamily">"Verdana"</property> + <property name="fontSize">7pt</property> + <property name="display">inline</property> + <property name="type">page-number</property> + </auto-text> + <text name="NewText111" id="2420"> + <property name="fontFamily">serif</property> + <property name="fontSize">small</property> + <property name="marginLeft">0pt</property> + <property name="marginRight">0pt</property> + <property name="paddingTop">1px</property> + <property name="paddingLeft">1px</property> + <property name="paddingBottom">1px</property> + <property name="paddingRight">1px</property> + <property name="display">inline</property> + <property name="contentType">plain</property> + <text-property name="content"><![CDATA[/]]></text-property> + </text> + <auto-text name="NewAutoText111" id="2409"> + <property name="fontFamily">"Verdana"</property> + <property name="fontSize">7pt</property> + <property name="textAlign">left</property> + <property name="display">inline</property> + <property name="type">total-page</property> + </auto-text> + </cell> + </row> + <row id="2414"> + <cell id="2415"> + <property name="paddingTop">0pt</property> + <property name="paddingLeft">0pt</property> + <property name="paddingBottom">0pt</property> + <property name="paddingRight">0pt</property> + <text id="3575"> + <property name="fontFamily">"Verdana"</property> + <property name="contentType">html</property> + <text-property name="content"><![CDATA[<value-of format="dd/MM/yyyy hh:mm:ss">new Date()</value-of>]]></text-property> + </text> + </cell> + <cell id="2416"> + <property name="paddingTop">0pt</property> + <property name="paddingLeft">0pt</property> + <property name="paddingBottom">0pt</property> + <property name="paddingRight">0pt</property> + </cell> + <cell id="2417"> + <property name="fontSize">10pt</property> + <property name="paddingTop">0pt</property> + <property name="paddingLeft">0pt</property> + <property name="paddingBottom">0pt</property> + <property name="paddingRight">18pt</property> + <property name="textAlign">right</property> + <label id="2418"> + <property name="fontFamily">"Verdana"</property> + <property name="fontSize">7pt</property> + <property name="marginRight">2pt</property> + <property name="paddingTop">1px</property> + <property name="paddingLeft">1px</property> + <property name="paddingBottom">1px</property> + <property name="paddingRight">1px</property> + <property name="display">inline</property> + <text-property name="text" key="controle"></text-property> + </label> + <text id="2419"> + <property name="fontFamily">"Wingdings"</property> + <property name="fontSize">small</property> + <property name="paddingTop">1px</property> + <property name="paddingLeft">1px</property> + <property name="paddingBottom">1px</property> + <property name="paddingRight">1px</property> + <property name="display">inline</property> + <property name="contentType">auto</property> + <text-property name="content"><![CDATA[r]]></text-property> + </text> + </cell> + </row> + </grid> + </page-footer> + </simple-master-page> + </page-setup> + <body> + <grid name="survey" id="2585"> + <property name="dataSet">survey</property> + <list-property name="boundDataColumns"> + <structure> + <property name="name">Annee</property> + <text-property name="displayName">Annee</text-property> + <expression name="expression" type="javascript">dataSetRow["Annee"]</expression> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="name">Serie</property> + <text-property name="displayName">Serie</text-property> + <expression name="expression" type="javascript">dataSetRow["Serie"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Serie_Partielle</property> + <text-property name="displayName">Serie_Partielle</text-property> + <expression name="expression" type="javascript">dataSetRow["Serie_Partielle"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Navire</property> + <text-property name="displayName">Navire</text-property> + <expression name="expression" type="javascript">dataSetRow["Navire"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Pays</property> + <text-property name="displayName">Pays</text-property> + <expression name="expression" type="javascript">dataSetRow["Pays"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Zone_Etude</property> + <text-property name="displayName">Zone_Etude</text-property> + <expression name="expression" type="javascript">dataSetRow["Zone_Etude"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Campagne</property> + <text-property name="displayName">Campagne</text-property> + <expression name="expression" type="javascript">dataSetRow["Campagne"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Id_Sismer</property> + <text-property name="displayName">Id_Sismer</text-property> + <expression name="expression" type="javascript">dataSetRow["Id_Sismer"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Date_Deb_Campagne</property> + <text-property name="displayName">Date_Deb_Campagne</text-property> + <expression name="expression" type="javascript">dataSetRow["Date_Deb_Campagne"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Port_Deb_Campagne</property> + <text-property name="displayName">Port_Deb_Campagne</text-property> + <expression name="expression" type="javascript">dataSetRow["Port_Deb_Campagne"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Date_Fin_Campagne</property> + <text-property name="displayName">Date_Fin_Campagne</text-property> + <expression name="expression" type="javascript">dataSetRow["Date_Fin_Campagne"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Port_Fin_Campagne</property> + <text-property name="displayName">Port_Fin_Campagne</text-property> + <expression name="expression" type="javascript">dataSetRow["Port_Fin_Campagne"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Chef_Mission</property> + <text-property name="displayName">Chef_Mission</text-property> + <expression name="expression" type="javascript">dataSetRow["Chef_Mission"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Resp_Salle_Tri</property> + <text-property name="displayName">Resp_Salle_Tri</text-property> + <expression name="expression" type="javascript">dataSetRow["Resp_Salle_Tri"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Commentaire</property> + <text-property name="displayName">Commentaire</text-property> + <expression name="expression" type="javascript">dataSetRow["Commentaire"]</expression> + <property name="dataType">string</property> + </structure> + </list-property> + <structure name="toc"> + <expression name="expressionValue" type="javascript">row["Serie"]+" - "+row["Campagne"]+" - "+row["Annee"]</expression> + </structure> + <column id="2586"/> + <row id="2587"> + <cell id="2588"> + <list name="Trait" id="2413"> + <property name="dataSet">operation</property> + <list-property name="boundDataColumns"> + <structure> + <property name="name">Annee</property> + <text-property name="displayName">Annee</text-property> + <expression name="expression" type="javascript">dataSetRow["Annee"]</expression> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="name">Serie</property> + <text-property name="displayName">Serie</text-property> + <expression name="expression" type="javascript">dataSetRow["Serie"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Serie_Partielle</property> + <text-property name="displayName">Serie_Partielle</text-property> + <expression name="expression" type="javascript">dataSetRow["Serie_Partielle"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Code_Station</property> + <text-property name="displayName">Code_Station</text-property> + <expression name="expression" type="javascript">dataSetRow["Code_Station"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Numero_Trait</property> + <text-property name="displayName">Numero_Trait</text-property> + <expression name="expression" type="javascript">dataSetRow["Numero_Trait"]</expression> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="name">Poche</property> + <text-property name="displayName">Poche</text-property> + <expression name="expression" type="javascript">dataSetRow["Poche"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Engin</property> + <text-property name="displayName">Engin</text-property> + <expression name="expression" type="javascript">dataSetRow["Engin"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Navire</property> + <text-property name="displayName">Navire</text-property> + <expression name="expression" type="javascript">dataSetRow["Navire"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">DateDeb_Op</property> + <text-property name="displayName">DateDeb_Op</text-property> + <expression name="expression" type="javascript">dataSetRow["DateDeb_Op"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">LatDeb</property> + <text-property name="displayName">LatDeb</text-property> + <expression name="expression" type="javascript">dataSetRow["LatDeb"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">LongDeb</property> + <text-property name="displayName">LongDeb</text-property> + <expression name="expression" type="javascript">dataSetRow["LongDeb"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">DateFin_Op</property> + <text-property name="displayName">DateFin_Op</text-property> + <expression name="expression" type="javascript">dataSetRow["DateFin_Op"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">LatFin</property> + <text-property name="displayName">LatFin</text-property> + <expression name="expression" type="javascript">dataSetRow["LatFin"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">LongFin</property> + <text-property name="displayName">LongFin</text-property> + <expression name="expression" type="javascript">dataSetRow["LongFin"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Duree</property> + <text-property name="displayName">Duree</text-property> + <expression name="expression" type="javascript">dataSetRow["Duree"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Strate</property> + <text-property name="displayName">Strate</text-property> + <expression name="expression" type="javascript">dataSetRow["Strate"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Sous-Strate</property> + <text-property name="displayName">Sous-Strate</text-property> + <expression name="expression" type="javascript">dataSetRow["Sous-Strate"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Localite</property> + <text-property name="displayName">Localite</text-property> + <expression name="expression" type="javascript">dataSetRow["Localite"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Validite_OP</property> + <text-property name="displayName">Validite_OP</text-property> + <expression name="expression" type="javascript">dataSetRow["Validite_OP"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Rectiligne</property> + <text-property name="displayName">Rectiligne</text-property> + <expression name="expression" type="javascript">dataSetRow["Rectiligne"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Distance</property> + <text-property name="displayName">Distance</text-property> + <expression name="expression" type="javascript">dataSetRow["Distance"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">Ouv_Verticale</property> + <text-property name="displayName">Ouv_Verticale</text-property> + <expression name="expression" type="javascript">dataSetRow["Ouv_Verticale"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Ouv_Horizontale_Ailes</property> + <text-property name="displayName">Ouv_Horizontale_Ailes</text-property> + <expression name="expression" type="javascript">dataSetRow["Ouv_Horizontale_Ailes"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Ouv_Horizontale_Panneaux</property> + <text-property name="displayName">Ouv_Horizontale_Panneaux</text-property> + <expression name="expression" type="javascript">dataSetRow["Ouv_Horizontale_Panneaux"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Saisisseur</property> + <text-property name="displayName">Saisisseur</text-property> + <expression name="expression" type="javascript">dataSetRow["Saisisseur"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">NavireAssocie</property> + <text-property name="displayName">NavireAssocie</text-property> + <expression name="expression" type="javascript">dataSetRow["NavireAssocie"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Commentaire</property> + <text-property name="displayName">Commentaire</text-property> + <expression name="expression" type="javascript">dataSetRow["Commentaire"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Poids_Total</property> + <text-property name="displayName">Poids_Total</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">Poids_Total_Calcule</property> + <text-property name="displayName">Poids_Total_Calcule</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Calcule"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Poids_Total_Vrac</property> + <text-property name="displayName">Poids_Total_Vrac</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Vrac"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">Poids_Total_Vrac_Calcule</property> + <text-property name="displayName">Poids_Total_Vrac_Calcule</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Vrac_Calcule"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Poids_Total_HorsVrac</property> + <text-property name="displayName">Poids_Total_HorsVrac</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_HorsVrac"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">Poids_Total_HorsVrac_Calcule</property> + <text-property name="displayName">Poids_Total_HorsVrac_Calcule</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_HorsVrac_Calcule"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Poids_Total_Non_Trie</property> + <text-property name="displayName">Poids_Total_Non_Trie</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Non_Trie"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">Poids_Total_Non_Trie_Calcule</property> + <text-property name="displayName">Poids_Total_Non_Trie_Calcule</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Non_Trie_Calcule"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Poids_Total_Tremis</property> + <text-property name="displayName">Poids_Total_Tremis</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Tremis"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">Poids_Total_Tremis_Calcule</property> + <text-property name="displayName">Poids_Total_Tremis_Calcule</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Tremis_Calcule"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Poids_Total_Carroussel</property> + <text-property name="displayName">Poids_Total_Carroussel</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Carroussel"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">Poids_Total_Carroussel_Calcule</property> + <text-property name="displayName">Poids_Total_Carroussel_Calcule</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Carroussel_Calcule"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Poids_Total_Espece</property> + <text-property name="displayName">Poids_Total_Espece</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Espece"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">Poids_Total_Espece_Calcule</property> + <text-property name="displayName">Poids_Total_Espece_Calcule</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Espece_Calcule"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Poids_Total_Espece_Vrac</property> + <text-property name="displayName">Poids_Total_Espece_Vrac</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Espece_Vrac"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">Poids_Total_Espece_Vrac_Calcule</property> + <text-property name="displayName">Poids_Total_Espece_Vrac_Calcule</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Espece_Vrac_Calcule"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Poids_Total_Espece_Vrac_Trie</property> + <text-property name="displayName">Poids_Total_Espece_Vrac_Trie</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Espece_Vrac_Trie"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">Poids_Total_Espece_Vrac_Trie_Calcule</property> + <text-property name="displayName">Poids_Total_Espece_Vrac_Trie_Calcule</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Espece_Vrac_Trie_Calcule"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Poids_Total_Espece_HorsVrac</property> + <text-property name="displayName">Poids_Total_Espece_HorsVrac</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Espece_HorsVrac"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">Poids_Total_Espece_HorsVrac_Calcule</property> + <text-property name="displayName">Poids_Total_Espece_HorsVrac_Calcule</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Espece_HorsVrac_Calcule"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Poids_Total_Espece_Inerte_Trie</property> + <text-property name="displayName">Poids_Total_Espece_Inerte_Trie</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Espece_Inerte_Trie"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">Poids_Total_Espece_Inerte_Trie_Calcule</property> + <text-property name="displayName">Poids_Total_Espece_Inerte_Trie_Calcule</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Espece_Inerte_Trie_Calcule"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Poids_Total_Espece_Vivant_non_detaille_trie</property> + <text-property name="displayName">Poids_Total_Espece_Vivant_non_detaille_trie</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Espece_Vivant_non_detaille_trie"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">Poids_Total_Espece_Vivant_non_detaille_trie_Calcule</property> + <text-property name="displayName">Poids_Total_Espece_Vivant_non_detaille_trie_Calcule</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Espece_Vivant_non_detaille_trie_Calcule"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Poids_Total_Benthos</property> + <text-property name="displayName">Poids_Total_Benthos</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Benthos"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">Poids_Total_Benthos_Calcule</property> + <text-property name="displayName">Poids_Total_Benthos_Calcule</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Benthos_Calcule"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Poids_Total_Benthos_Vrac</property> + <text-property name="displayName">Poids_Total_Benthos_Vrac</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Benthos_Vrac"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">Poids_Total_Benthos_Vrac_Calcule</property> + <text-property name="displayName">Poids_Total_Benthos_Vrac_Calcule</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Benthos_Vrac_Calcule"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Poids_Total_Benthos_Vrac_Trie</property> + <text-property name="displayName">Poids_Total_Benthos_Vrac_Trie</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Benthos_Vrac_Trie"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">Poids_Total_Benthos_Vrac_Trie_Calcule</property> + <text-property name="displayName">Poids_Total_Benthos_Vrac_Trie_Calcule</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Benthos_Vrac_Trie_Calcule"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Poids_Total_Benthos_HorsVrac</property> + <text-property name="displayName">Poids_Total_Benthos_HorsVrac</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Benthos_HorsVrac"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">Poids_Total_Benthos_HorsVrac_Calcule</property> + <text-property name="displayName">Poids_Total_Benthos_HorsVrac_Calcule</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Benthos_HorsVrac_Calcule"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Poids_Total_Benthos_Inerte_Trie</property> + <text-property name="displayName">Poids_Total_Benthos_Inerte_Trie</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Benthos_Inerte_Trie"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">Poids_Total_Benthos_Inerte_Trie_Calcule</property> + <text-property name="displayName">Poids_Total_Benthos_Inerte_Trie_Calcule</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Benthos_Inerte_Trie_Calcule"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Poids_Total_Benthos_Vivant_non_detaille_trie</property> + <text-property name="displayName">Poids_Total_Benthos_Vivant_non_detaille_trie</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Benthos_Vivant_non_detaille_trie"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">Poids_Total_Benthos_Vivant_non_detaille_trie_Calcule</property> + <text-property name="displayName">Poids_Total_Benthos_Vivant_non_detaille_trie_Calcule</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Benthos_Vivant_non_detaille_trie_Calcule"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Poids_Total_Macro_Dechet</property> + <text-property name="displayName">Poids_Total_Macro_Dechet</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Macro_Dechet"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">Poids_Total_Macro_Dechet_Calcule</property> + <text-property name="displayName">Poids_Total_Macro_Dechet_Calcule</text-property> + <expression name="expression" type="javascript">dataSetRow["Poids_Total_Macro_Dechet_Calcule"]</expression> + <property name="dataType">string</property> + </structure> + </list-property> + <detail> + <grid name="general" id="2804"> + <structure name="toc"> + <expression name="expressionValue">"Code Station : "+row["Code_Station"]+" - N° trait : "+row["Numero_Trait"]</expression> + </structure> + <column id="2805"/> + <row id="2806"> + <cell id="2807"> + <grid name="presentation" id="2808"> + <property name="masterPage">Simple MasterPage Portrait</property> + <property name="pageBreakBefore">always</property> + <structure name="toc"> + <expression name="expressionValue">reportContext.getMessage("title.rapport", reportContext.getLocale());</expression> + </structure> + <column id="2809"/> + <row id="2810"> + <cell id="2811"> + <label id="2812"> + <property name="style">report-title</property> + <property name="fontSize">medium</property> + <property name="paddingTop">0px</property> + <property name="paddingBottom">5px</property> + <property name="textAlign">center</property> + <text-property name="text" key="title.rapport"></text-property> + </label> + </cell> + </row> + <row id="2813"> + <cell id="2814"> + <grid id="2815"> + <column id="2816"/> + <row id="2817"> + <cell id="2818"> + <label id="2819"> + <property name="style">label-general</property> + <property name="paddingRight">0px</property> + <property name="display">inline</property> + <text-property name="text" key="serie"></text-property> + </label> + <text-data id="2820"> + <property name="fontFamily">"Verdana"</property> + <property name="fontSize">7pt</property> + <property name="fontWeight">bold</property> + <property name="display">inline</property> + <expression name="valueExpr">row._outer["Serie"]</expression> + <property name="contentType">html</property> + </text-data> + </cell> + </row> + <row id="2821"> + <cell id="2822"> + <label id="2823"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="campagne"></text-property> + </label> + <text-data id="2824"> + <property name="fontFamily">"Verdana"</property> + <property name="fontSize">7pt</property> + <property name="fontWeight">bold</property> + <property name="display">inline</property> + <expression name="valueExpr">row._outer["Campagne"]</expression> + <property name="contentType">html</property> + </text-data> + </cell> + </row> + <row id="2825"> + <cell id="2826"> + <label id="2827"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="annee"></text-property> + </label> + <text-data id="2828"> + <property name="fontFamily">"Verdana"</property> + <property name="fontSize">7pt</property> + <property name="fontWeight">bold</property> + <property name="display">inline</property> + <expression name="valueExpr">row._outer["Annee"]</expression> + <property name="contentType">html</property> + </text-data> + </cell> + </row> + <row id="2829"> + <cell id="2830"> + <label id="2831"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="serie-partielle"></text-property> + </label> + <text-data id="2832"> + <property name="fontFamily">"Verdana"</property> + <property name="fontSize">7pt</property> + <property name="fontWeight">bold</property> + <property name="display">inline</property> + <expression name="valueExpr">row._outer["Serie_Partielle"]</expression> + <property name="contentType">html</property> + </text-data> + </cell> + </row> + <row id="2833"> + <cell id="2834"> + <label id="2835"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="code-station"></text-property> + </label> + <data id="2836"> + <property name="fontWeight">bold</property> + <property name="textAlign">left</property> + <property name="display">inline</property> + <property name="resultSetColumn">Code_Station</property> + </data> + </cell> + </row> + <row id="2837"> + <cell id="2838"> + <label id="2839"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="num-trait"></text-property> + </label> + <data id="2840"> + <property name="fontWeight">bold</property> + <property name="textAlign">left</property> + <property name="display">inline</property> + <property name="resultSetColumn">Numero_Trait</property> + </data> + </cell> + </row> + <row id="2841"> + <cell id="2842"> + <label id="2843"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="num-poche"></text-property> + </label> + <data id="2844"> + <property name="fontWeight">bold</property> + <property name="textAlign">left</property> + <property name="display">inline</property> + <property name="resultSetColumn">Poche</property> + </data> + </cell> + </row> + <row id="2845"> + <cell id="2846"> + <label id="2847"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="date-debut-trait"></text-property> + </label> + <data id="2848"> + <property name="fontWeight">bold</property> + <property name="textAlign">left</property> + <property name="display">inline</property> + <property name="resultSetColumn">DateDeb_Op</property> + </data> + </cell> + </row> + </grid> + <text-data id="3601"> + <list-property name="visibility"> + <structure> + <property name="format">all</property> + <expression name="valueExpr" type="javascript">true</expression> + </structure> + </list-property> + <expression name="valueExpr">var cartouche=(getMessage("serie")+" <b>"+row._outer["Serie"]+"</b>"+" / "+getMessage("campagne")+" <b>"+row._outer["Campagne"]+"</b>"+" / "+getMessage("annee")+" <b>"+row._outer["Annee"]+"</b>"+" / "+getMessage("serie-partielle")+" <b>"+row._outer["Serie_Partielle"]+"</b>"+ +"<P>"+ +getMessage("code-station")+" <b>"+row["Code_Station"]+"</b>"+" / "+getMessage("num-trait")+" <b>"+row["Numero_Trait"]+"</b>"+" / "+getMessage("num-poche")+" <b>"+row["Poche"]+"</b>"+" / "+getMessage("date-debut-trait")+" <b>"+row["DateDeb_Op"]+"</b>").replace("<b>null</b>","");</expression> + <property name="contentType">html</property> + </text-data> + </cell> + </row> + <row id="2849"> + <cell id="2850"> + <property name="paddingTop">10mm</property> + <grid id="2851"> + <column id="2852"/> + <column id="2853"/> + <column id="2854"/> + <row id="2855"> + <cell id="2856"> + <property name="style">crosstab-header-line-first</property> + </cell> + <cell id="2857"> + <property name="style">crosstab-header-line-first</property> + <label id="2858"> + <property name="textAlign">center</property> + <text-property name="text" key="qui"></text-property> + </label> + </cell> + <cell id="2859"> + <property name="style">crosstab-header-line-first</property> + <label id="2860"> + <property name="textAlign">center</property> + <text-property name="text" key="date"></text-property> + </label> + </cell> + </row> + <row id="2861"> + <property name="height">35mm</property> + <cell id="2862"> + <property name="style">grid-detail-cell</property> + <property name="verticalAlign">top</property> + <label id="2863"> + <text-property name="text" key="instruction-ctrl"></text-property> + </label> + </cell> + <cell id="2864"> + <property name="style">grid-detail-cell</property> + </cell> + <cell id="2865"> + <property name="style">grid-detail-cell</property> + </cell> + </row> + </grid> + </cell> + </row> + <row id="2866"> + <property name="pageBreakAfter">auto</property> + <cell id="2867"> + <property name="paddingTop">10mm</property> + <label id="2868"> + <property name="style">label-general</property> + <text-property name="text" key="commentaire"></text-property> + </label> + <grid id="2869"> + <column id="2870"/> + <row id="2871"> + <property name="height">140mm</property> + <cell id="2872"> + <property name="style">grid-header-cell</property> + <property name="display">block</property> + <property name="pageBreakBefore">auto</property> + <property name="showIfBlank">false</property> + </cell> + </row> + </grid> + </cell> + </row> + </grid> + <grid name="carac-trait" id="2873"> + <property name="masterPage">Simple MasterPage Portrait</property> + <property name="pageBreakBefore">always</property> + <structure name="toc"> + <expression name="expressionValue">getMessage("title.caracteristique-trait");</expression> + </structure> + <column id="2874"/> + <row id="2875"> + <cell id="2876"> + <label id="2877"> + <property name="style">report-title</property> + <property name="fontSize">medium</property> + <property name="paddingTop">0px</property> + <property name="paddingBottom">5px</property> + <property name="textAlign">center</property> + <text-property name="text" key="title.caracteristique-trait"></text-property> + </label> + </cell> + </row> + <row id="2878"> + <cell id="2879"> + <grid id="2880"> + <column id="2881"/> + <row id="2882"> + <cell id="2883"> + <label id="2884"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="serie"></text-property> + </label> + <text-data id="2885"> + <property name="fontFamily">"Verdana"</property> + <property name="fontSize">7pt</property> + <property name="display">inline</property> + <expression name="valueExpr">row._outer["Serie"]</expression> + <property name="contentType">html</property> + </text-data> + </cell> + </row> + <row id="2886"> + <cell id="2887"> + <label id="2888"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="campagne"></text-property> + </label> + <text-data id="2889"> + <property name="fontFamily">"Verdana"</property> + <property name="fontSize">7pt</property> + <property name="display">inline</property> + <expression name="valueExpr">row._outer["Campagne"]</expression> + <property name="contentType">html</property> + </text-data> + </cell> + </row> + </grid> + </cell> + </row> + <row id="2890"> + <cell id="2891"> + <label id="2892"> + <property name="style">label-sous-title</property> + <property name="textUnderline">none</property> + <property name="paddingTop">5px</property> + <text-property name="text" key="sous-title.caracteristique-general-trait"></text-property> + </label> + <grid name="carac-generales1" id="2893"> + <column id="2894"/> + <row id="2895"> + <cell id="2896"> + <label id="2897"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="code-station"></text-property> + </label> + <data id="2898"> + <property name="textAlign">left</property> + <property name="display">inline</property> + <property name="resultSetColumn">Code_Station</property> + </data> + </cell> + </row> + <row id="2899"> + <cell id="2900"> + <label id="2901"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="num-trait"></text-property> + </label> + <data id="2902"> + <property name="textAlign">left</property> + <property name="display">inline</property> + <property name="resultSetColumn">Numero_Trait</property> + </data> + </cell> + </row> + <row id="2903"> + <cell id="2904"> + <label id="2905"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="num-poche"></text-property> + </label> + <data id="2906"> + <property name="textAlign">left</property> + <property name="display">inline</property> + <property name="resultSetColumn">Poche</property> + </data> + </cell> + </row> + <row id="2907"> + <cell id="2908"> + <label id="2909"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="strate"></text-property> + </label> + <data id="2910"> + <property name="textAlign">left</property> + <property name="display">inline</property> + <property name="resultSetColumn">Strate</property> + </data> + </cell> + </row> + <row id="2911"> + <cell id="2912"> + <label id="2913"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="sous-strate"></text-property> + </label> + <data id="2914"> + <property name="textAlign">left</property> + <property name="display">inline</property> + <property name="resultSetColumn">Sous-Strate</property> + </data> + </cell> + </row> + <row id="2915"> + <cell id="2916"> + <label id="2917"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="localite"></text-property> + </label> + <data id="2918"> + <property name="textAlign">left</property> + <property name="display">inline</property> + <property name="resultSetColumn">Localite</property> + </data> + </cell> + </row> + <row id="2919"> + <cell id="2920"> + <property name="colSpan">1</property> + <property name="rowSpan">1</property> + <grid id="2921"> + <column id="2922"/> + <column id="2923"/> + <column id="2924"/> + <column id="2925"/> + <row id="2926"> + <cell id="2927"> + <property name="style">grid-header-cell</property> + </cell> + <cell id="2928"> + <property name="style">grid-header-cell</property> + <property name="textAlign">center</property> + <label id="2929"> + <text-property name="text" key="latitude"></text-property> + </label> + </cell> + <cell id="2930"> + <property name="style">grid-header-cell</property> + <property name="textAlign">center</property> + <label id="2931"> + <text-property name="text" key="longitude"></text-property> + </label> + </cell> + <cell id="2932"> + <property name="style">grid-header-cell</property> + <property name="textAlign">center</property> + <label id="2933"> + <text-property name="text" key="date-heure"></text-property> + </label> + </cell> + </row> + <row id="2934"> + <cell id="2935"> + <property name="style">grid-header-cell</property> + <property name="textAlign">left</property> + <label id="2936"> + <text-property name="text" key="debut-traine"></text-property> + </label> + </cell> + <cell id="2937"> + <property name="style">grid-detail-cell</property> + <data id="2938"> + <property name="textAlign">center</property> + <property name="resultSetColumn">LatDeb</property> + </data> + </cell> + <cell id="2939"> + <property name="style">grid-detail-cell</property> + <data id="2940"> + <property name="textAlign">center</property> + <property name="resultSetColumn">LongDeb</property> + </data> + </cell> + <cell id="2941"> + <property name="style">grid-detail-cell</property> + <data id="2942"> + <property name="textAlign">center</property> + <property name="resultSetColumn">DateDeb_Op</property> + </data> + </cell> + </row> + <row id="2943"> + <cell id="2944"> + <property name="style">grid-header-cell</property> + <property name="textAlign">left</property> + <label id="2945"> + <text-property name="text" key="fin-traine"></text-property> + </label> + </cell> + <cell id="2946"> + <property name="style">grid-detail-cell</property> + <data id="2947"> + <property name="textAlign">center</property> + <property name="resultSetColumn">LatFin</property> + </data> + </cell> + <cell id="2948"> + <property name="style">grid-detail-cell</property> + <data id="2949"> + <property name="textAlign">center</property> + <property name="resultSetColumn">LongFin</property> + </data> + </cell> + <cell id="2950"> + <property name="style">grid-detail-cell</property> + <data id="2951"> + <property name="textAlign">center</property> + <property name="resultSetColumn">DateFin_Op</property> + </data> + </cell> + </row> + </grid> + </cell> + </row> + <row id="2952"> + <cell id="2953"> + <label id="2954"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="trait-rectiligne"></text-property> + </label> + <data id="2955"> + <property name="textAlign">left</property> + <property name="display">inline</property> + <property name="resultSetColumn">Rectiligne</property> + </data> + </cell> + </row> + <row id="2956"> + <cell id="2957"> + <label id="2958"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="distance-chalute"></text-property> + </label> + <data id="2959"> + <property name="textAlign">left</property> + <property name="display">inline</property> + <property name="resultSetColumn">Distance</property> + </data> + </cell> + </row> + <row id="2960"> + <cell id="2961"> + <label id="2962"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="trait-valide"></text-property> + </label> + <text-data id="3536"> + <property name="display">inline</property> + <expression name="valueExpr">if (row["Validite_OP"]=="Y"){ +"trait valide"; +} +if (row["Validite_OP"]=="N"){ +"trait non valide"; +} +if (row["Validite_OP"]=="?"){ +"non défini"; +}</expression> + <property name="contentType">html</property> + </text-data> + </cell> + </row> + <row id="2963"> + <cell id="2964"> + <label id="2965"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="navire"></text-property> + </label> + <data id="2966"> + <property name="textAlign">left</property> + <property name="display">inline</property> + <property name="resultSetColumn">Navire</property> + </data> + </cell> + </row> + <row id="2967"> + <cell id="2968"> + <label id="2969"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="engin"></text-property> + </label> + <data id="2970"> + <property name="textAlign">left</property> + <property name="display">inline</property> + <property name="resultSetColumn">Engin</property> + </data> + </cell> + </row> + <row id="2971"> + <cell id="2972"> + <label id="2973"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="saisisseur"></text-property> + </label> + <data id="2974"> + <property name="textAlign">left</property> + <property name="display">inline</property> + <property name="resultSetColumn">Saisisseur</property> + </data> + </cell> + </row> + <row id="2975"> + <cell id="2976"> + <label id="2977"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="commentaire"></text-property> + </label> + <data id="2978"> + <property name="textAlign">left</property> + <property name="display">inline</property> + <property name="resultSetColumn">Commentaire</property> + </data> + </cell> + </row> + </grid> + </cell> + </row> + <row id="2979"> + <cell id="2980"> + <label id="2981"> + <property name="style">label-sous-title</property> + <property name="textUnderline">none</property> + <property name="paddingTop">5px</property> + <text-property name="text" key="sous-title.caracteristique-mo"></text-property> + </label> + <grid name="carac-mo1" id="2982"> + <column id="2983"/> + <row id="2984"> + <cell id="2985"> + <label id="2986"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="ouverture-verticale"></text-property> + </label> + <data id="2987"> + <property name="textAlign">left</property> + <property name="display">inline</property> + <property name="resultSetColumn">Ouv_Verticale</property> + </data> + </cell> + </row> + <row id="2988"> + <cell id="2989"> + <label id="2990"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="ouverture-horiz-ailes"></text-property> + </label> + <data id="2991"> + <property name="textAlign">left</property> + <property name="display">inline</property> + <property name="resultSetColumn">Ouv_Horizontale_Ailes</property> + </data> + </cell> + </row> + <row id="2992"> + <cell id="2993"> + <label id="2994"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="ouverture-horiz-panneaux"></text-property> + </label> + <data id="2995"> + <property name="textAlign">left</property> + <property name="display">inline</property> + <property name="resultSetColumn">Ouv_Horizontale_Panneaux</property> + </data> + </cell> + </row> + </grid> + </cell> + </row> + <row id="2996"> + <cell id="2997"> + <label id="2998"> + <property name="style">label-sous-title</property> + <property name="textUnderline">none</property> + <property name="paddingTop">5px</property> + <text-property name="text" key="sous-title.caracteristiques"></text-property> + </label> + <table id="2999"> + <property name="dataSet">parameter</property> + <list-property name="boundDataColumns"> + <structure> + <property name="name">Annee</property> + <expression name="expression">dataSetRow["Annee"]</expression> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="name">Serie</property> + <expression name="expression">dataSetRow["Serie"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Serie_Partielle</property> + <expression name="expression">dataSetRow["Serie_Partielle"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Code_Station</property> + <expression name="expression">dataSetRow["Code_Station"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Numero_Trait</property> + <expression name="expression">dataSetRow["Numero_Trait"]</expression> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="name">Poche</property> + <expression name="expression">dataSetRow["Poche"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Code_PMFM</property> + <expression name="expression">dataSetRow["Code_PMFM"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Libelle_PMFm</property> + <expression name="expression">dataSetRow["Libelle_PMFm"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Valeur</property> + <expression name="expression">dataSetRow["Valeur"]</expression> + <property name="dataType">decimal</property> + </structure> + </list-property> + <list-property name="filter"> + <structure> + <property name="operator">eq</property> + <expression name="expr">row["Numero_Trait"]</expression> + <simple-property-list name="value1"> + <value>row._outer["Numero_Trait"]</value> + </simple-property-list> + </structure> + <structure> + <property name="operator">eq</property> + <expression name="expr">row["Code_Station"]</expression> + <simple-property-list name="value1"> + <value>row._outer["Code_Station"]</value> + </simple-property-list> + </structure> + </list-property> + <column id="3004"/> + <detail> + <row id="3000"> + <cell id="3001"> + <property name="style">cell</property> + <property name="borderBottomColor">#FFFFFF</property> + <property name="borderBottomStyle">solid</property> + <property name="borderBottomWidth">1px</property> + <property name="borderLeftColor">#FFFFFF</property> + <property name="borderLeftStyle">solid</property> + <property name="borderLeftWidth">1px</property> + <property name="borderRightColor">#FFFFFF</property> + <property name="borderRightStyle">solid</property> + <property name="borderRightWidth">1px</property> + <property name="borderTopColor">#FFFFFF</property> + <property name="borderTopStyle">solid</property> + <property name="borderTopWidth">1px</property> + <data id="3002"> + <property name="marginRight">0pt</property> + <property name="paddingTop">1px</property> + <property name="paddingLeft">1px</property> + <property name="paddingBottom">1px</property> + <property name="paddingRight">1px</property> + <property name="textAlign">left</property> + <property name="display">inline</property> + <property name="resultSetColumn">Libelle_PMFm</property> + </data> + <label id="3484"> + <property name="paddingTop">1px</property> + <property name="paddingLeft">1px</property> + <property name="paddingBottom">1px</property> + <property name="paddingRight">1px</property> + <property name="display">inline</property> + <text-property name="text">:</text-property> + </label> + <data id="3003"> + <property name="paddingTop">1px</property> + <property name="paddingLeft">1px</property> + <property name="paddingBottom">1px</property> + <property name="paddingRight">1px</property> + <property name="textAlign">left</property> + <property name="display">inline</property> + <property name="resultSetColumn">Valeur</property> + </data> + </cell> + </row> + </detail> + </table> + </cell> + </row> + </grid> + <grid name="bilan-capture" id="3005"> + <property name="masterPage">Simple MasterPage Portrait</property> + <property name="pageBreakAfter">always</property> + <property name="pageBreakBefore">always</property> + <structure name="toc"> + <expression name="expressionValue" type="javascript">getMessage("title.bilan-capture");</expression> + </structure> + <column id="3006"/> + <row id="3007"> + <cell id="3008"> + <label id="3009"> + <property name="style">report-title</property> + <property name="fontSize">medium</property> + <property name="paddingTop">0px</property> + <property name="paddingBottom">5px</property> + <property name="textAlign">center</property> + <text-property name="text" key="title.bilan-capture"></text-property> + </label> + </cell> + </row> + <row id="3010"> + <cell id="3011"> + <text-data id="3599"> + <property name="paddingTop">10pt</property> + <expression name="valueExpr">cartouche;</expression> + <property name="contentType">html</property> + </text-data> + </cell> + </row> + <row id="3046"> + <cell id="3047"> + <label id="3063"> + <property name="style">label-sous-title</property> + <property name="textUnderline">none</property> + <property name="paddingTop">5px</property> + <text-property name="text" key="sous-title.capture"></text-property> + </label> + <grid name="capture" id="3048"> + <column id="3049"/> + <row id="3050"> + <cell id="3051"> + <label id="3064"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="poids.total"></text-property> + </label> + <data id="3148"> + <property name="fontWeight">normal</property> + <property name="fontStyle">normal</property> + <property name="fontVariant">normal</property> + <structure name="numberFormat"> + <property name="category">Custom</property> + <property name="pattern">#0.####</property> + </structure> + <property name="textAlign">left</property> + <property name="display">inline</property> + <list-property name="highlightRules"> + <structure> + <property name="operator">eq</property> + <expression name="testExpr">row["Poids_Total_Calcule"]</expression> + <simple-property-list name="value1"> + <value>"Y"</value> + </simple-property-list> + <property name="style">data-calcule</property> + </structure> + </list-property> + <property name="resultSetColumn">Poids_Total</property> + </data> + </cell> + </row> + <row id="3052"> + <cell id="3053"> + <label id="3065"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="poids.total-vrac"></text-property> + </label> + <data id="3149"> + <property name="fontWeight">normal</property> + <property name="fontStyle">normal</property> + <property name="fontVariant">normal</property> + <structure name="numberFormat"> + <property name="category">Custom</property> + <property name="pattern">#0.####</property> + </structure> + <property name="textAlign">left</property> + <property name="display">inline</property> + <list-property name="highlightRules"> + <structure> + <property name="operator">eq</property> + <expression name="testExpr">row["Poids_Total_Vrac_Calcule"]</expression> + <simple-property-list name="value1"> + <value>"Y"</value> + </simple-property-list> + <property name="style">data-calcule</property> + </structure> + </list-property> + <property name="resultSetColumn">Poids_Total_Vrac</property> + </data> + </cell> + </row> + <row id="3054"> + <cell id="3055"> + <label id="3066"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="carroussel-observ"></text-property> + </label> + <data id="3150"> + <property name="fontWeight">normal</property> + <property name="fontStyle">normal</property> + <property name="fontVariant">normal</property> + <structure name="numberFormat"> + <property name="category">Custom</property> + <property name="pattern">#0.####</property> + </structure> + <property name="textAlign">left</property> + <property name="display">inline</property> + <list-property name="highlightRules"> + <structure> + <property name="operator">eq</property> + <expression name="testExpr">row["Poids_Total_Carroussel_Calcule"]</expression> + <simple-property-list name="value1"> + <value>"Y"</value> + </simple-property-list> + <property name="style">data-calcule</property> + </structure> + </list-property> + <property name="resultSetColumn">Poids_Total_Carroussel</property> + </data> + </cell> + </row> + <row id="3056"> + <cell id="3057"> + <label id="3067"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="tremis"></text-property> + </label> + <data id="3151"> + <property name="fontWeight">normal</property> + <property name="fontStyle">normal</property> + <property name="fontVariant">normal</property> + <structure name="numberFormat"> + <property name="category">Custom</property> + <property name="pattern">#.#####</property> + </structure> + <property name="textAlign">left</property> + <property name="display">inline</property> + <list-property name="highlightRules"> + <structure> + <property name="operator">eq</property> + <expression name="testExpr">row["Poids_Total_Tremis_Calcule"]</expression> + <simple-property-list name="value1"> + <value>"Y"</value> + </simple-property-list> + <property name="style">data-calcule</property> + </structure> + </list-property> + <property name="resultSetColumn">Poids_Total_Tremis</property> + </data> + </cell> + </row> + <row id="3058"> + <cell id="3059"> + <label id="3068"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="poids.total-hors-vrac"></text-property> + </label> + <data id="3152"> + <property name="fontWeight">normal</property> + <property name="fontStyle">normal</property> + <property name="fontVariant">normal</property> + <structure name="numberFormat"> + <property name="category">Custom</property> + <property name="pattern">#0.####</property> + </structure> + <property name="textAlign">left</property> + <property name="display">inline</property> + <list-property name="highlightRules"> + <structure> + <property name="operator">eq</property> + <expression name="testExpr">row["Poids_Total_HorsVrac_Calcule"]</expression> + <simple-property-list name="value1"> + <value>"Y"</value> + </simple-property-list> + <property name="style">data-calcule</property> + </structure> + </list-property> + <property name="resultSetColumn">Poids_Total_HorsVrac</property> + </data> + </cell> + </row> + <row id="3060"> + <cell id="3061"> + <label id="3069"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="poids.total-non-trie"></text-property> + </label> + <data id="3153"> + <property name="fontWeight">normal</property> + <property name="fontStyle">normal</property> + <property name="fontVariant">normal</property> + <structure name="numberFormat"> + <property name="category">Custom</property> + <property name="pattern">#0.####</property> + </structure> + <property name="textAlign">left</property> + <property name="display">inline</property> + <list-property name="highlightRules"> + <structure> + <property name="operator">eq</property> + <expression name="testExpr">row["Poids_Total_Non_Trie_Calcule"]</expression> + <simple-property-list name="value1"> + <value>"Y"</value> + </simple-property-list> + <property name="style">data-calcule</property> + </structure> + </list-property> + <property name="resultSetColumn">Poids_Total_Non_Trie</property> + </data> + </cell> + </row> + </grid> + </cell> + </row> + <row id="3070"> + <cell id="3071"> + <label id="3072"> + <property name="style">label-sous-title</property> + <property name="textUnderline">none</property> + <property name="paddingTop">5px</property> + <text-property name="text" key="sous-title.especes"></text-property> + </label> + <grid name="especes" id="3073"> + <column id="3074"/> + <row id="3075"> + <cell id="3076"> + <label id="3077"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="poids.total"></text-property> + </label> + <data id="3154"> + <property name="fontWeight">normal</property> + <property name="fontStyle">normal</property> + <property name="fontVariant">normal</property> + <structure name="numberFormat"> + <property name="category">Custom</property> + <property name="pattern">#0.####</property> + </structure> + <property name="textAlign">left</property> + <property name="display">inline</property> + <list-property name="highlightRules"> + <structure> + <property name="operator">eq</property> + <expression name="testExpr">row["Poids_Total_Espece_Calcule"]</expression> + <simple-property-list name="value1"> + <value>"Y"</value> + </simple-property-list> + <property name="style">data-calcule</property> + </structure> + </list-property> + <property name="resultSetColumn">Poids_Total_Espece</property> + </data> + </cell> + </row> + <row id="3078"> + <cell id="3079"> + <label id="3080"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="poids.total-vrac"></text-property> + </label> + <data id="3155"> + <property name="fontWeight">normal</property> + <property name="fontStyle">normal</property> + <property name="fontVariant">normal</property> + <structure name="numberFormat"> + <property name="category">Custom</property> + <property name="pattern">#0.####</property> + </structure> + <property name="textAlign">left</property> + <property name="display">inline</property> + <list-property name="highlightRules"> + <structure> + <property name="operator">eq</property> + <expression name="testExpr">row["Poids_Total_Espece_Vrac_Calcule"]</expression> + <simple-property-list name="value1"> + <value>"Y"</value> + </simple-property-list> + <property name="style">data-calcule</property> + </structure> + </list-property> + <property name="resultSetColumn">Poids_Total_Espece_Vrac</property> + </data> + </cell> + </row> + <row id="3090"> + <cell id="3091"> + <label id="3092"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="poids.vrac-trie"></text-property> + </label> + <data id="3156"> + <property name="fontWeight">normal</property> + <property name="fontStyle">normal</property> + <property name="fontVariant">normal</property> + <structure name="numberFormat"> + <property name="category">Custom</property> + <property name="pattern">#0.####</property> + </structure> + <property name="textAlign">left</property> + <property name="display">inline</property> + <list-property name="highlightRules"> + <structure> + <property name="operator">eq</property> + <expression name="testExpr">row["Poids_Total_Espece_Vrac_Trie_Calcule"]</expression> + <simple-property-list name="value1"> + <value>"Y"</value> + </simple-property-list> + <property name="style">data-calcule</property> + </structure> + </list-property> + <property name="resultSetColumn">Poids_Total_Espece_Vrac_Trie</property> + </data> + </cell> + </row> + <row id="3093"> + <cell id="3094"> + <label id="3099"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="poids.total-hors-vrac"></text-property> + </label> + <data id="3157"> + <property name="fontWeight">normal</property> + <property name="fontStyle">normal</property> + <property name="fontVariant">normal</property> + <structure name="numberFormat"> + <property name="category">Custom</property> + <property name="pattern">#0.####</property> + </structure> + <property name="textAlign">left</property> + <property name="display">inline</property> + <list-property name="highlightRules"> + <structure> + <property name="operator">eq</property> + <expression name="testExpr">row["Poids_Total_Espece_HorsVrac_Calcule"]</expression> + <simple-property-list name="value1"> + <value>"Y"</value> + </simple-property-list> + <property name="style">data-calcule</property> + </structure> + </list-property> + <property name="resultSetColumn">Poids_Total_Espece_HorsVrac</property> + </data> + </cell> + </row> + <row id="3097"> + <cell id="3098"> + <label id="3100"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="poids.total-inerte-trie"></text-property> + </label> + <data id="3158"> + <property name="fontWeight">normal</property> + <property name="fontStyle">normal</property> + <property name="fontVariant">normal</property> + <structure name="numberFormat"> + <property name="category">Custom</property> + <property name="pattern">#0.####</property> + </structure> + <property name="textAlign">left</property> + <property name="display">inline</property> + <list-property name="highlightRules"> + <structure> + <property name="operator">eq</property> + <expression name="testExpr">row["Poids_Total_Espece_Inerte_Trie_Calcule"]</expression> + <simple-property-list name="value1"> + <value>"Y"</value> + </simple-property-list> + <property name="style">data-calcule</property> + </structure> + </list-property> + <property name="resultSetColumn">Poids_Total_Espece_Inerte_Trie</property> + </data> + </cell> + </row> + <row id="3095"> + <cell id="3096"> + <label id="3101"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="poids.total-vivant-non-detail-trie"></text-property> + </label> + <data id="3159"> + <property name="fontWeight">normal</property> + <property name="fontStyle">normal</property> + <property name="fontVariant">normal</property> + <structure name="numberFormat"> + <property name="category">Custom</property> + <property name="pattern">#0.####</property> + </structure> + <property name="textAlign">left</property> + <property name="display">inline</property> + <list-property name="highlightRules"> + <structure> + <property name="operator">eq</property> + <expression name="testExpr">row["Poids_Total_Espece_Inerte_Trie_Calcule"]</expression> + <simple-property-list name="value1"> + <value>"Y"</value> + </simple-property-list> + <property name="style">data-calcule</property> + </structure> + </list-property> + <property name="resultSetColumn">Poids_Total_Espece_Vivant_non_detaille_trie</property> + </data> + </cell> + </row> + </grid> + </cell> + </row> + <row id="3102"> + <cell id="3103"> + <label id="3104"> + <property name="style">label-sous-title</property> + <property name="textUnderline">none</property> + <property name="paddingTop">5px</property> + <text-property name="text" key="sous-title.benthos"></text-property> + </label> + <grid name="benthos" id="3105"> + <column id="3106"/> + <row id="3107"> + <cell id="3108"> + <label id="3109"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="poids.total"></text-property> + </label> + <data id="3160"> + <property name="fontWeight">normal</property> + <property name="fontStyle">normal</property> + <property name="fontVariant">normal</property> + <structure name="numberFormat"> + <property name="category">Custom</property> + <property name="pattern">#0.####</property> + </structure> + <property name="textAlign">left</property> + <property name="display">inline</property> + <list-property name="highlightRules"> + <structure> + <property name="operator">eq</property> + <expression name="testExpr">row["Poids_Total_Benthos_Calcule"]</expression> + <simple-property-list name="value1"> + <value>"Y"</value> + </simple-property-list> + <property name="style">data-calcule</property> + </structure> + </list-property> + <property name="resultSetColumn">Poids_Total_Benthos</property> + </data> + </cell> + </row> + <row id="3110"> + <cell id="3111"> + <label id="3112"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="poids.total-vrac"></text-property> + </label> + <data id="3161"> + <property name="fontWeight">normal</property> + <property name="fontStyle">normal</property> + <property name="fontVariant">normal</property> + <structure name="numberFormat"> + <property name="category">Custom</property> + <property name="pattern">#0.####</property> + </structure> + <property name="textAlign">left</property> + <property name="display">inline</property> + <list-property name="highlightRules"> + <structure> + <property name="operator">eq</property> + <expression name="testExpr">row["Poids_Total_Benthos_Vrac_Calcule"]</expression> + <simple-property-list name="value1"> + <value>"Y"</value> + </simple-property-list> + <property name="style">data-calcule</property> + </structure> + </list-property> + <property name="resultSetColumn">Poids_Total_Benthos_Vrac</property> + </data> + </cell> + </row> + <row id="3113"> + <cell id="3114"> + <label id="3115"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="poids.vrac-trie"></text-property> + </label> + <data id="3162"> + <property name="fontWeight">normal</property> + <property name="fontStyle">normal</property> + <property name="fontVariant">normal</property> + <structure name="numberFormat"> + <property name="category">Custom</property> + <property name="pattern">#0.####</property> + </structure> + <property name="textAlign">left</property> + <property name="display">inline</property> + <list-property name="highlightRules"> + <structure> + <property name="operator">eq</property> + <expression name="testExpr">row["Poids_Total_Benthos_Vrac_Trie_Calcule"]</expression> + <simple-property-list name="value1"> + <value>"Y"</value> + </simple-property-list> + <property name="style">data-calcule</property> + </structure> + </list-property> + <property name="resultSetColumn">Poids_Total_Benthos_Vrac_Trie</property> + </data> + </cell> + </row> + <row id="3116"> + <cell id="3117"> + <label id="3118"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="poids.total-hors-vrac"></text-property> + </label> + <data id="3163"> + <property name="fontWeight">normal</property> + <property name="fontStyle">normal</property> + <property name="fontVariant">normal</property> + <structure name="numberFormat"> + <property name="category">Custom</property> + <property name="pattern">#0.####</property> + </structure> + <property name="textAlign">left</property> + <property name="display">inline</property> + <list-property name="highlightRules"> + <structure> + <property name="operator">eq</property> + <expression name="testExpr">row["Poids_Total_Benthos_HorsVrac_Calcule"]</expression> + <simple-property-list name="value1"> + <value>"Y"</value> + </simple-property-list> + <property name="style">data-calcule</property> + </structure> + </list-property> + <property name="resultSetColumn">Poids_Total_Benthos_HorsVrac</property> + </data> + </cell> + </row> + <row id="3119"> + <cell id="3120"> + <label id="3121"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="poids.total-inerte-trie"></text-property> + </label> + <data id="3164"> + <property name="fontWeight">normal</property> + <property name="fontStyle">normal</property> + <property name="fontVariant">normal</property> + <structure name="numberFormat"> + <property name="category">Custom</property> + <property name="pattern">#0.####</property> + </structure> + <property name="textAlign">left</property> + <property name="display">inline</property> + <list-property name="highlightRules"> + <structure> + <property name="operator">eq</property> + <expression name="testExpr">row["Poids_Total_Benthos_Inerte_Trie_Calcule"]</expression> + <simple-property-list name="value1"> + <value>"Y"</value> + </simple-property-list> + <property name="style">data-calcule</property> + </structure> + </list-property> + <property name="resultSetColumn">Poids_Total_Benthos_Inerte_Trie</property> + </data> + </cell> + </row> + <row id="3122"> + <cell id="3123"> + <label id="3124"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="poids.total-vivant-non-detail-trie"></text-property> + </label> + <data id="3165"> + <property name="fontWeight">normal</property> + <property name="fontStyle">normal</property> + <property name="fontVariant">normal</property> + <structure name="numberFormat"> + <property name="category">Custom</property> + <property name="pattern">#0.####</property> + </structure> + <property name="textAlign">left</property> + <property name="display">inline</property> + <list-property name="highlightRules"> + <structure> + <property name="operator">eq</property> + <expression name="testExpr">row["Poids_Total_Benthos_Inerte_Trie_Calcule"]</expression> + <simple-property-list name="value1"> + <value>"Y"</value> + </simple-property-list> + <property name="style">data-calcule</property> + </structure> + </list-property> + <property name="resultSetColumn">Poids_Total_Benthos_Vivant_non_detaille_trie</property> + </data> + </cell> + </row> + </grid> + </cell> + </row> + <row id="3125"> + <cell id="3126"> + <label id="3127"> + <property name="style">label-sous-title</property> + <property name="textUnderline">none</property> + <property name="paddingTop">5px</property> + <text-property name="text" key="sous-title.macro-dechets"></text-property> + </label> + <grid name="macro-dechets" id="3128"> + <column id="3129"/> + <row id="3130"> + <cell id="3131"> + <label id="3537"> + <property name="style">label-general</property> + <property name="display">inline</property> + <text-property name="text" key="poids.total"></text-property> + </label> + <data id="3538"> + <property name="fontWeight">normal</property> + <property name="fontStyle">normal</property> + <property name="fontVariant">normal</property> + <structure name="numberFormat"> + <property name="category">Custom</property> + <property name="pattern">#0.####</property> + </structure> + <property name="textAlign">left</property> + <property name="display">inline</property> + <list-property name="highlightRules"> + <structure> + <property name="operator">eq</property> + <expression name="testExpr" type="javascript">row["Poids_Total_Macro_Dechet_Calcule"]</expression> + <simple-property-list name="value1"> + <value type="javascript">"Y"</value> + </simple-property-list> + <property name="style">data-calcule</property> + </structure> + </list-property> + <property name="resultSetColumn">Poids_Total_Macro_Dechet</property> + </data> + </cell> + </row> + </grid> + </cell> + </row> + </grid> + <grid name="rapport-espece" id="3181"> + <property name="pageBreakBefore">auto</property> + <structure name="toc"> + <expression name="expressionValue">getMessage("title.rapport-par-espece");</expression> + </structure> + <column id="3182"/> + <row id="3222"> + <cell id="3223"> + <list name="listCatch" id="3224"> + <property name="pageBreakInside">avoid</property> + <property name="dataSet">catchWithSpecies</property> + <list-property name="boundDataColumns"> + <structure> + <property name="name">Annee</property> + <expression name="expression">dataSetRow["Annee"]</expression> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="name">Serie</property> + <expression name="expression">dataSetRow["Serie"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Serie_Partielle</property> + <expression name="expression">dataSetRow["Serie_Partielle"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Engin</property> + <expression name="expression">dataSetRow["Engin"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Code_Station</property> + <expression name="expression">dataSetRow["Code_Station"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Numero_Trait</property> + <expression name="expression">dataSetRow["Numero_Trait"]</expression> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="name">Poche</property> + <expression name="expression">dataSetRow["Poche"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Navire</property> + <expression name="expression">dataSetRow["Navire"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Taxon</property> + <expression name="expression">dataSetRow["Taxon"]</expression> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="name">Nom_scientifique</property> + <expression name="expression">dataSetRow["Nom_scientifique"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Commentaire</property> + <expression name="expression">dataSetRow["Commentaire"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">V_HV</property> + <expression name="expression">dataSetRow["V_HV"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Num_Ordre_V_HV_H2</property> + <expression name="expression">dataSetRow["Num_Ordre_V_HV_H2"]</expression> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="name">Tot_V_HV</property> + <expression name="expression">dataSetRow["Tot_V_HV"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">Ech_V_HV</property> + <expression name="expression">dataSetRow["Ech_V_HV"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">Type_Volume_Poids_V_HV</property> + <expression name="expression">dataSetRow["Type_Volume_Poids_V_HV"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Unite_Volume_Poids_V_HV</property> + <expression name="expression">dataSetRow["Unite_Volume_Poids_V_HV"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Class_Tri_</property> + <expression name="expression">dataSetRow["Class_Tri_"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Num_Ordre_Class_Tri__H2</property> + <expression name="expression">dataSetRow["Num_Ordre_Class_Tri__H2"]</expression> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="name">Tot_Class_Tri_</property> + <expression name="expression">dataSetRow["Tot_Class_Tri_"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">Ech_Class_Tri_</property> + <expression name="expression">dataSetRow["Ech_Class_Tri_"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">Type_Volume_Poids_Class_Tri_</property> + <expression name="expression">dataSetRow["Type_Volume_Poids_Class_Tri_"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Unite_Volume_Poids_Class_Tri_</property> + <expression name="expression">dataSetRow["Unite_Volume_Poids_Class_Tri_"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Sexe</property> + <expression name="expression">dataSetRow["Sexe"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Num_Ordre_Sexe_H2</property> + <expression name="expression">dataSetRow["Num_Ordre_Sexe_H2"]</expression> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="name">Tot_Sexe</property> + <expression name="expression">dataSetRow["Tot_Sexe"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">Ech_Sexe</property> + <expression name="expression">dataSetRow["Ech_Sexe"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">Type_Volume_Poids_Sexe</property> + <expression name="expression">dataSetRow["Type_Volume_Poids_Sexe"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Unite_Volume_Poids_Sexe</property> + <expression name="expression">dataSetRow["Unite_Volume_Poids_Sexe"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Maturité</property> + <expression name="expression">dataSetRow["Maturité"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Num_Ordre_Maturité_H2</property> + <expression name="expression">dataSetRow["Num_Ordre_Maturité_H2"]</expression> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="name">Tot_Maturité</property> + <expression name="expression">dataSetRow["Tot_Maturité"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">Ech_Maturité</property> + <expression name="expression">dataSetRow["Ech_Maturité"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">Type_Volume_Poids_Maturité</property> + <expression name="expression">dataSetRow["Type_Volume_Poids_Maturité"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Unite_Volume_Poids_Maturité</property> + <expression name="expression">dataSetRow["Unite_Volume_Poids_Maturité"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Age</property> + <expression name="expression">dataSetRow["Age"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Num_Ordre_Age_H2</property> + <expression name="expression">dataSetRow["Num_Ordre_Age_H2"]</expression> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="name">Tot_Age</property> + <expression name="expression">dataSetRow["Tot_Age"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">Ech_Age</property> + <expression name="expression">dataSetRow["Ech_Age"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">Type_Volume_Poids_Age</property> + <expression name="expression">dataSetRow["Type_Volume_Poids_Age"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Unite_Volume_Poids_Age</property> + <expression name="expression">dataSetRow["Unite_Volume_Poids_Age"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Code_Longueur</property> + <expression name="expression">dataSetRow["Code_Longueur"]</expression> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="name">Libelle_Longueur</property> + <expression name="expression">dataSetRow["Libelle_Longueur"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Taille</property> + <expression name="expression">dataSetRow["Taille"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">NumOrdre_Taille_H2</property> + <expression name="expression">dataSetRow["NumOrdre_Taille_H2"]</expression> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="name">Poids_Classe_Taille</property> + <expression name="expression">dataSetRow["Poids_Classe_Taille"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">Unite_Taille</property> + <expression name="expression">dataSetRow["Unite_Taille"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Precision_Mesure</property> + <expression name="expression">dataSetRow["Precision_Mesure"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">Nbr</property> + <expression name="expression">dataSetRow["Nbr"]</expression> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="name">Poids_Reference</property> + <expression name="expression">dataSetRow["Poids_Reference"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">Coef_Elev_Espece_Capture</property> + <expression name="expression">dataSetRow["Coef_Elev_Espece_Capture"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">sumNbr</property> + <property name="dataType">float</property> + <simple-property-list name="aggregateOn"> + <value>groupTaxon</value> + </simple-property-list> + <property name="aggregateFunction">SUM</property> + <list-property name="arguments"> + <structure> + <property name="name">Expression</property> + <expression name="value">row["Nbr"]</expression> + </structure> + </list-property> + </structure> + <structure> + <property name="name">poids-total-dans-la-capture</property> + <expression name="expression" type="javascript">dataSetRow["Poids_Reference"]*dataSetRow["Coef_Elev_Espece_Capture"]</expression> + <property name="dataType">decimal</property> + <property name="allowExport">true</property> + </structure> + <structure> + <property name="name">nbre-indiv-capt</property> + <expression name="expression" type="javascript">dataSetRow["Nbr"]*dataSetRow["Coef_Elev_Espece_Capture"]</expression> + <property name="dataType">decimal</property> + <property name="allowExport">true</property> + </structure> + <structure> + <property name="name">sumNbre-indiv-capt</property> + <property name="dataType">float</property> + <simple-property-list name="aggregateOn"> + <value>groupTaxon</value> + </simple-property-list> + <property name="aggregateFunction">SUM</property> + <list-property name="arguments"> + <structure> + <property name="name">Expression</property> + <expression name="value">row["nbre-indiv-capt"]</expression> + </structure> + </list-property> + </structure> + <structure> + <property name="name">nbre-indiv-par-kg</property> + <expression name="expression" type="javascript">dataSetRow["Nbr"]/dataSetRow["Poids_Reference"]</expression> + <property name="dataType">decimal</property> + <property name="allowExport">true</property> + </structure> + <structure> + <property name="name">sumNbre-indiv-par-kg</property> + <property name="dataType">float</property> + <simple-property-list name="aggregateOn"> + <value>groupTaxon</value> + </simple-property-list> + <property name="aggregateFunction">SUM</property> + <list-property name="arguments"> + <structure> + <property name="name">Expression</property> + <expression name="value">row["nbre-indiv-par-kg"]</expression> + </structure> + </list-property> + </structure> + <structure> + <property name="name">nbI-classeTaille</property> + <expression name="expression">dataSetRow["Nbr"]*dataSetRow["Taille"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">sumNbIclasseTaille</property> + <property name="dataType">float</property> + <simple-property-list name="aggregateOn"> + <value>groupTaxon</value> + </simple-property-list> + <property name="aggregateFunction">SUM</property> + <list-property name="arguments"> + <structure> + <property name="name">Expression</property> + <expression name="value">row["nbI-classeTaille"]</expression> + </structure> + </list-property> + </structure> + <structure> + <property name="name">categorisation-du-lot</property> + <expression name="expression">dataSetRow["categorisation-du-lot"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">species-Id</property> + <expression name="expression">dataSetRow["species-Id"]</expression> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="name">species-Code_Rubin</property> + <expression name="expression">dataSetRow["species-Code_Rubin"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">species-Nom Scientifique</property> + <expression name="expression">dataSetRow["species-Nom Scientifique"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">species-Code campagne</property> + <expression name="expression">dataSetRow["species-Code campagne"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">species-lib</property> + <expression name="expression">dataSetRow["species-lib"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">minTaille</property> + <property name="dataType">float</property> + <simple-property-list name="aggregateOn"> + <value>groupTaxon</value> + </simple-property-list> + <property name="aggregateFunction">MIN</property> + <list-property name="arguments"> + <structure> + <property name="name">Expression</property> + <expression name="value" type="javascript">row["Taille"]</expression> + </structure> + </list-property> + <property name="allowExport">true</property> + </structure> + <structure> + <property name="name">maxTaille</property> + <property name="dataType">float</property> + <simple-property-list name="aggregateOn"> + <value>groupTaxon</value> + </simple-property-list> + <property name="aggregateFunction">MAX</property> + <list-property name="arguments"> + <structure> + <property name="name">Expression</property> + <expression name="value" type="javascript">row["Taille"]</expression> + </structure> + </list-property> + <property name="allowExport">true</property> + </structure> + </list-property> + <property name="repeatHeader">false</property> + <property name="pageBreakInterval">9000</property> + <list-property name="filter"> + <structure> + <property name="operator">eq</property> + <expression name="expr" type="javascript">row["Numero_Trait"]</expression> + <simple-property-list name="value1"> + <value>row._outer["Numero_Trait"]</value> + </simple-property-list> + <property name="updateAggregation">true</property> + </structure> + <structure> + <property name="operator">eq</property> + <expression name="expr" type="javascript">row["Code_Station"]</expression> + <simple-property-list name="value1"> + <value>row._outer["Code_Station"]</value> + </simple-property-list> + <property name="updateAggregation">true</property> + </structure> + </list-property> + <header> + <label id="3724"> + <property name="style">report-title</property> + <property name="fontSize">medium</property> + <property name="paddingTop">0px</property> + <property name="paddingBottom">5px</property> + <property name="textAlign">center</property> + <text-property name="text" key="title.rapport-par-espece"></text-property> + </label> + </header> + <group id="3605"> + <property name="groupName">groupVracHorsVrac</property> + <expression name="keyExpr" type="javascript">row["V_HV"]</expression> + <structure name="toc"> + <expression name="expressionValue" type="javascript">row["V_HV"]</expression> + </structure> + <property name="hideDetail">false</property> + <property name="pageBreakAfter">avoid</property> + <property name="pageBreakBefore">avoid</property> + <list-property name="sort"> + <structure> + <expression name="key" type="javascript">row["V_HV"]</expression> + <property name="direction">desc</property> + <property name="strength">-1</property> + </structure> + </list-property> + </group> + <group id="3225"> + <property name="groupName">groupTaxon</property> + <property name="interval">none</property> + <property name="sortDirection">asc</property> + <expression name="keyExpr" type="javascript">(row["Num_Ordre_V_HV_H2"]+1000)+" - "+row["categorisation-du-lot"]</expression> + <structure name="toc"> + <expression name="expressionValue" type="javascript">row["species-lib"]+" - "+row["categorisation-du-lot"]</expression> + </structure> + <property name="repeatHeader">false</property> + <property name="hideDetail">false</property> + <property name="pageBreakAfter">avoid</property> + <property name="pageBreakBefore">avoid</property> + <property name="pageBreakInside">avoid</property> + <list-property name="sort"> + <structure> + <expression name="key" type="javascript">row["V_HV"]</expression> + <property name="direction">desc</property> + <property name="strength">-1</property> + </structure> + <structure> + <expression name="key" type="javascript">row["species-lib"]</expression> + <property name="direction">asc</property> + <property name="strength">-1</property> + </structure> + </list-property> + <header> + <grid id="3674"> + <property name="pageBreakInside">avoid</property> + <column id="3675"/> + <row id="3676"> + <cell id="3677"> + <property name="borderTopColor">#000000</property> + <property name="borderTopStyle">solid</property> + <property name="borderTopWidth">1px</property> + <property name="paddingTop">5mm</property> + <property name="paddingLeft">0pt</property> + <property name="paddingBottom">0mm</property> + <property name="paddingRight">0pt</property> + <grid id="3678"> + <column id="3679"/> + <row id="3680"> + <cell id="3681"> + <property name="textAlign">center</property> + <data id="3682"> + <property name="style">report-title</property> + <property name="fontSize">small</property> + <property name="display">inline</property> + <structure name="toc"/> + <property name="resultSetColumn">species-lib</property> + </data> + </cell> + </row> + </grid> + <text-data id="3683"> + <property name="paddingTop">10pt</property> + <expression name="valueExpr">cartouche;</expression> + <property name="contentType">html</property> + </text-data> + <grid name="espece1" id="3684"> + <column id="3685"/> + <row id="3686"> + <cell id="3687"> + <label id="3688"> + <property name="style">label-general</property> + <property name="paddingRight">0px</property> + <property name="display">inline</property> + <text-property name="text" key="espece"></text-property> + </label> + <data id="3689"> + <property name="fontSize">7pt</property> + <property name="fontWeight">bold</property> + <property name="textAlign">left</property> + <property name="display">inline</property> + <property name="resultSetColumn">species-lib</property> + </data> + </cell> + </row> + <row id="3690"> + <cell id="3691"> + <label id="3692"> + <property name="style">label-general</property> + <property name="paddingRight">0px</property> + <property name="display">inline</property> + <text-property name="text" key="categ-lot"></text-property> + </label> + <data id="3693"> + <property name="textAlign">left</property> + <property name="display">inline</property> + <property name="resultSetColumn">categorisation-du-lot</property> + </data> + </cell> + </row> + <row id="3694"> + <cell id="3695"> + <label id="3696"> + <property name="style">label-general</property> + <property name="paddingRight">0px</property> + <property name="display">inline</property> + <text-property name="text" key="poids.total-dans-la-capture"></text-property> + </label> + <data id="3697"> + <property name="style">data-calcule</property> + <structure name="numberFormat"> + <property name="category">Custom</property> + <property name="pattern">#0.####</property> + </structure> + <property name="textAlign">left</property> + <property name="display">inline</property> + <property name="resultSetColumn">poids-total-dans-la-capture</property> + </data> + </cell> + </row> + <row id="3698"> + <cell id="3699"> + <label id="3700"> + <property name="style">label-general</property> + <property name="paddingRight">0px</property> + <property name="display">inline</property> + <text-property name="text" key="nbre-indiv-capt"></text-property> + </label> + <data id="3701"> + <property name="style">data-calcule</property> + <structure name="numberFormat"> + <property name="category">Custom</property> + <property name="pattern">#0.#</property> + </structure> + <property name="textAlign">left</property> + <property name="display">inline</property> + <property name="resultSetColumn">sumNbre-indiv-capt</property> + </data> + </cell> + </row> + <row id="3702"> + <cell id="3703"> + <label id="3704"> + <property name="style">label-general</property> + <property name="paddingRight">0px</property> + <property name="display">inline</property> + <text-property name="text" key="nbre-indiv-kg"></text-property> + </label> + <data id="3705"> + <property name="style">data-calcule</property> + <structure name="numberFormat"> + <property name="category">Custom</property> + <property name="pattern">#0.#</property> + </structure> + <property name="textAlign">left</property> + <property name="display">inline</property> + <property name="resultSetColumn">sumNbre-indiv-par-kg</property> + </data> + </cell> + </row> + <row id="3706"> + <cell id="3707"> + <label id="3708"> + <property name="style">label-general</property> + <property name="paddingRight">0px</property> + <property name="display">inline</property> + <text-property name="text" key="poids.moyen"></text-property> + </label> + <text-data id="3709"> + <property name="style">data-calcule</property> + <property name="display">inline</property> + <expression name="valueExpr">if (row["Poids_Reference"]>0 && row["sumNbr"]>0){ +BirtMath.round(((row["Poids_Reference"]/row["sumNbr"])*1000),1); +}</expression> + <property name="contentType">html</property> + </text-data> + </cell> + </row> + <row id="3710"> + <cell id="3711"> + <label id="3712"> + <property name="style">label-general</property> + <property name="paddingRight">0px</property> + <property name="display">inline</property> + <text-property name="text" key="longueur-moy"></text-property> + </label> + <text-data id="3713"> + <property name="style">data-calcule</property> + <property name="display">inline</property> + <expression name="valueExpr">if (row["sumNbIclasseTaille"]>0){ + + if (row["Unite_Taille"]=="mm"){ + BirtMath.round(row["sumNbIclasseTaille"]/row["sumNbr"],0); + } else { + BirtMath.round(row["sumNbIclasseTaille"]/row["sumNbr"],1); + } +}</expression> + <property name="contentType">html</property> + </text-data> + <data id="3714"> + <property name="style">data-calcule</property> + <property name="display">inline</property> + <property name="resultSetColumn">Unite_Taille</property> + </data> + </cell> + </row> + <row id="3715"> + <cell id="3716"> + <property name="paddingTop">10pt</property> + <label id="3717"> + <property name="style">label-general</property> + <property name="paddingRight">0px</property> + <property name="display">inline</property> + <text-property name="text" key="mode-mensuration"></text-property> + </label> + <data id="3718"> + <property name="textAlign">left</property> + <property name="display">inline</property> + <property name="resultSetColumn">Libelle_Longueur</property> + </data> + </cell> + </row> + <row id="3719"> + <cell id="3720"> + <property name="paddingBottom">10pt</property> + <label id="3721"> + <property name="style">label-general</property> + <property name="paddingRight">0px</property> + <property name="display">inline</property> + <text-property name="text" key="pas-mesure"></text-property> + </label> + <data id="3722"> + <property name="style">cell-left</property> + <property name="display">inline</property> + <property name="resultSetColumn">Precision_Mesure</property> + </data> + <text-data id="3723"> + <expression name="valueExpr">reportContext.setPersistentGlobalVariable("VariablePasMesure",row["Precision_Mesure"]+"");</expression> + <property name="contentType">html</property> + </text-data> + </cell> + </row> + </grid> + </cell> + </row> + </grid> + </header> + <footer> + <grid id="3514"> + <property name="marginBottom">5mm</property> + <column id="3515"/> + <row id="3516"> + <property name="textAlign">center</property> + <cell id="3517"> + <property name="paddingTop">0pt</property> + <property name="paddingLeft">0pt</property> + <property name="paddingBottom">0pt</property> + <property name="paddingRight">0pt</property> + <grid name="classeTailleTotal" id="3520"> + <property name="width">90mm</property> + <column id="3521"> + <property name="width">30mm</property> + </column> + <column id="3522"> + <property name="width">30mm</property> + </column> + <column id="3523"> + <property name="width">30mm</property> + </column> + <row id="3524"> + <cell id="3525"> + <property name="borderBottomColor">#000000</property> + <property name="borderBottomStyle">solid</property> + <property name="borderBottomWidth">1px</property> + <property name="borderLeftColor">#000000</property> + <property name="borderLeftStyle">solid</property> + <property name="borderLeftWidth">1px</property> + <property name="borderRightColor">#000000</property> + <property name="borderRightStyle">solid</property> + <property name="borderRightWidth">1px</property> + <property name="paddingTop">0px</property> + <property name="paddingLeft">0px</property> + <property name="paddingBottom">0px</property> + <property name="paddingRight">0px</property> + <label id="3526"> + <property name="style">cell-right</property> + <property name="fontWeight">bold</property> + <property name="marginRight">5pt</property> + <text-property name="text" key="total"></text-property> + </label> + </cell> + <cell id="3527"> + <property name="borderBottomColor">#000000</property> + <property name="borderBottomStyle">solid</property> + <property name="borderBottomWidth">1px</property> + <property name="borderLeftColor">#000000</property> + <property name="borderLeftStyle">solid</property> + <property name="borderLeftWidth">1px</property> + <property name="borderRightColor">#000000</property> + <property name="borderRightStyle">solid</property> + <property name="borderRightWidth">1px</property> + <property name="paddingTop">0px</property> + <property name="paddingLeft">0px</property> + <property name="paddingBottom">0px</property> + <property name="paddingRight">0px</property> + <data id="3528"> + <property name="fontWeight">bold</property> + <property name="resultSetColumn">sumNbr</property> + </data> + </cell> + <cell id="3529"> + <property name="borderBottomColor">#000000</property> + <property name="borderBottomStyle">solid</property> + <property name="borderBottomWidth">1px</property> + <property name="borderLeftColor">#000000</property> + <property name="borderLeftStyle">solid</property> + <property name="borderLeftWidth">1px</property> + <property name="borderRightColor">#000000</property> + <property name="borderRightStyle">solid</property> + <property name="borderRightWidth">1px</property> + <property name="paddingTop">0px</property> + <property name="paddingLeft">0px</property> + <property name="paddingBottom">0px</property> + <property name="paddingRight">0px</property> + <data id="3530"> + <property name="fontWeight">bold</property> + <property name="resultSetColumn">Poids_Reference</property> + </data> + </cell> + </row> + </grid> + </cell> + </row> + <row id="3518"> + <property name="pageBreakAfter">auto</property> + <cell id="3519"> + <grid name="chart" id="3531"> + <property name="pageBreakAfter">auto</property> + <list-property name="visibility"> + <structure> + <property name="format">all</property> + <expression name="valueExpr" type="javascript">row["Precision_Mesure"]==null</expression> + </structure> + </list-property> + <column id="3532"/> + <row id="3533"> + <cell id="3534"> + <property name="paddingTop">10pt</property> + <property name="paddingBottom">1mm</property> + <property name="textAlign">center</property> + <extended-item extensionName="Chart" name="chartClasseTaille" id="3576"> + <xml-property name="xmlRepresentation"><![CDATA[<model:ChartWithAxes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:attribute="http://www.birt.eclipse.org/ChartModelAttribute" xmlns:data="http://www.birt.eclipse.org/ChartModelData" xmlns:layout="http://www.birt.eclipse.org/ChartModelLayout" xmlns:model="http://www.birt.eclipse.org/ChartModel" xmlns:type="http://www.birt.eclipse.org/ChartModelType"> + <Version>2.5.3</Version> + <Type>Bar Chart</Type> + <SubType>Side-by-side</SubType> + <Description> + <Value></Value> + <Font> + <Alignment/> + </Font> + </Description> + <Block> + <Children xsi:type="layout:TitleBlock"> + <Bounds> + <Left>0.0</Left> + <Top>0.0</Top> + <Width>0.0</Width> + <Height>0.0</Height> + </Bounds> + <Insets> + <Top>3.0</Top> + <Left>3.0</Left> + <Bottom>3.0</Bottom> + <Right>3.0</Right> + </Insets> + <Row>-1</Row> + <Column>-1</Column> + <Rowspan>-1</Rowspan> + <Columnspan>-1</Columnspan> + <Outline> + <Style>Solid</Style> + <Thickness>1</Thickness> + <Color> + <Transparency>255</Transparency> + <Red>0</Red> + <Green>0</Green> + <Blue>0</Blue> + </Color> + <Visible>false</Visible> + </Outline> + <Visible>false</Visible> + <Label> + <Caption> + <Value>Bar Chart Title</Value> + <Font> + <Size>16.0</Size> + <Bold>true</Bold> + <Alignment> + <horizontalAlignment>Center</horizontalAlignment> + <verticalAlignment>Center</verticalAlignment> + </Alignment> + </Font> + </Caption> + <Background xsi:type="attribute:ColorDefinition"> + <Transparency>0</Transparency> + <Red>255</Red> + <Green>255</Green> + <Blue>255</Blue> + </Background> + <Outline> + <Style>Solid</Style> + <Thickness>1</Thickness> + <Color> + <Transparency>255</Transparency> + <Red>0</Red> + <Green>0</Green> + <Blue>0</Blue> + </Color> + </Outline> + <Insets> + <Top>0.0</Top> + <Left>2.0</Left> + <Bottom>0.0</Bottom> + <Right>3.0</Right> + </Insets> + <Visible>true</Visible> + </Label> + </Children> + <Children xsi:type="layout:Plot"> + <Bounds> + <Left>0.0</Left> + <Top>0.0</Top> + <Width>0.0</Width> + <Height>0.0</Height> + </Bounds> + <Anchor>North</Anchor> + <Stretch>Horizontal</Stretch> + <Insets> + <Top>3.0</Top> + <Left>3.0</Left> + <Bottom>3.0</Bottom> + <Right>3.0</Right> + </Insets> + <Row>-1</Row> + <Column>-1</Column> + <Rowspan>-1</Rowspan> + <Columnspan>-1</Columnspan> + <Outline> + <Style>Solid</Style> + <Thickness>1</Thickness> + <Color> + <Transparency>255</Transparency> + <Red>0</Red> + <Green>0</Green> + <Blue>0</Blue> + </Color> + <Visible>false</Visible> + </Outline> + <Visible>true</Visible> + <HorizontalSpacing>0</HorizontalSpacing> + <VerticalSpacing>0</VerticalSpacing> + <ClientArea> + <Outline> + <Style>Solid</Style> + <Thickness>0</Thickness> + <Color> + <Transparency>255</Transparency> + <Red>0</Red> + <Green>0</Green> + <Blue>0</Blue> + </Color> + <Visible>false</Visible> + </Outline> + <ShadowColor> + <Transparency>0</Transparency> + <Red>255</Red> + <Green>255</Green> + <Blue>255</Blue> + </ShadowColor> + <Insets> + <Top>0.0</Top> + <Left>0.0</Left> + <Bottom>0.0</Bottom> + <Right>0.0</Right> + </Insets> + </ClientArea> + </Children> + <Children xsi:type="layout:Legend"> + <Bounds> + <Left>0.0</Left> + <Top>0.0</Top> + <Width>0.0</Width> + <Height>0.0</Height> + </Bounds> + <Insets> + <Top>3.0</Top> + <Left>3.0</Left> + <Bottom>3.0</Bottom> + <Right>3.0</Right> + </Insets> + <Row>-1</Row> + <Column>-1</Column> + <Rowspan>-1</Rowspan> + <Columnspan>-1</Columnspan> + <Outline> + <Style>Solid</Style> + <Thickness>1</Thickness> + <Color> + <Transparency>255</Transparency> + <Red>0</Red> + <Green>0</Green> + <Blue>0</Blue> + </Color> + <Visible>false</Visible> + </Outline> + <Visible>false</Visible> + <ClientArea> + <Outline> + <Style>Solid</Style> + <Thickness>0</Thickness> + <Color> + <Transparency>255</Transparency> + <Red>0</Red> + <Green>0</Green> + <Blue>0</Blue> + </Color> + <Visible>false</Visible> + </Outline> + <Insets> + <Top>2.0</Top> + <Left>2.0</Left> + <Bottom>2.0</Bottom> + <Right>2.0</Right> + </Insets> + </ClientArea> + <Text> + <Value></Value> + <Font> + <Alignment/> + </Font> + </Text> + <Orientation>Vertical</Orientation> + <Direction>Top_Bottom</Direction> + <Separator> + <Style>Solid</Style> + <Thickness>1</Thickness> + <Color> + <Transparency>255</Transparency> + <Red>0</Red> + <Green>0</Green> + <Blue>0</Blue> + </Color> + <Visible>true</Visible> + </Separator> + <Position>Right</Position> + <ItemType>Series</ItemType> + <Title> + <Caption> + <Value></Value> + <Font> + <Alignment/> + </Font> + </Caption> + <Background xsi:type="attribute:ColorDefinition"> + <Transparency>0</Transparency> + <Red>255</Red> + <Green>255</Green> + <Blue>255</Blue> + </Background> + <Outline> + <Style>Solid</Style> + <Thickness>1</Thickness> + <Color> + <Transparency>255</Transparency> + <Red>0</Red> + <Green>0</Green> + <Blue>0</Blue> + </Color> + <Visible>false</Visible> + </Outline> + <Insets> + <Top>0.0</Top> + <Left>2.0</Left> + <Bottom>0.0</Bottom> + <Right>3.0</Right> + </Insets> + <Visible>false</Visible> + </Title> + <TitlePosition>Above</TitlePosition> + </Children> + <Bounds> + <Left>0.0</Left> + <Top>0.0</Top> + <Width>283.46456692913387</Width> + <Height>141.73228346456693</Height> + </Bounds> + <Insets> + <Top>3.0</Top> + <Left>3.0</Left> + <Bottom>3.0</Bottom> + <Right>3.0</Right> + </Insets> + <Row>-1</Row> + <Column>-1</Column> + <Rowspan>-1</Rowspan> + <Columnspan>-1</Columnspan> + <Outline> + <Style>Solid</Style> + <Thickness>1</Thickness> + <Color> + <Transparency>255</Transparency> + <Red>0</Red> + <Green>0</Green> + <Blue>0</Blue> + </Color> + <Visible>false</Visible> + </Outline> + <Background xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>255</Red> + <Green>255</Green> + <Blue>255</Blue> + </Background> + <Visible>true</Visible> + </Block> + <Dimension>Two_Dimensional</Dimension> + <Units>Points</Units> + <SeriesThickness>10.0</SeriesThickness> + <ExtendedProperties> + <Name>enable.area.alt</Name> + <Value>false</Value> + </ExtendedProperties> + <SampleData> + <BaseSampleData> + <DataSetRepresentation>6,4,12,8,10</DataSetRepresentation> + </BaseSampleData> + <OrthogonalSampleData> + <DataSetRepresentation>5,4,12</DataSetRepresentation> + <SeriesDefinitionIndex>0</SeriesDefinitionIndex> + </OrthogonalSampleData> + </SampleData> + <Interactivity/> + <EmptyMessage> + <Caption> + <Value>This chart contains no data.</Value> + <Font> + <Alignment> + <horizontalAlignment>Center</horizontalAlignment> + <verticalAlignment>Center</verticalAlignment> + </Alignment> + </Font> + </Caption> + <Background xsi:type="attribute:ColorDefinition"> + <Transparency>64</Transparency> + <Red>127</Red> + <Green>127</Green> + <Blue>127</Blue> + </Background> + <Outline> + <Color> + <Transparency>128</Transparency> + <Red>127</Red> + <Green>127</Green> + <Blue>127</Blue> + </Color> + <Visible>true</Visible> + </Outline> + <Insets> + <Top>10.0</Top> + <Left>10.0</Left> + <Bottom>10.0</Bottom> + <Right>10.0</Right> + </Insets> + <Visible>false</Visible> + </EmptyMessage> + <Axes> + <Type>Linear</Type> + <Title> + <Caption> + <Value>classe-taille=X-Axis Title</Value> + <Font> + <Size>8.0</Size> + <Bold>true</Bold> + <Alignment> + <horizontalAlignment>Center</horizontalAlignment> + <verticalAlignment>Center</verticalAlignment> + </Alignment> + </Font> + </Caption> + <Background xsi:type="attribute:ColorDefinition"> + <Transparency>0</Transparency> + <Red>255</Red> + <Green>255</Green> + <Blue>255</Blue> + </Background> + <Outline> + <Style>Solid</Style> + <Thickness>1</Thickness> + <Color> + <Transparency>255</Transparency> + <Red>0</Red> + <Green>0</Green> + <Blue>0</Blue> + </Color> + </Outline> + <Insets> + <Top>5.0</Top> + <Left>0.0</Left> + <Bottom>0.0</Bottom> + <Right>0.0</Right> + </Insets> + <Visible>true</Visible> + </Title> + <TitlePosition>Below</TitlePosition> + <AssociatedAxes> + <Type>Linear</Type> + <Title> + <Caption> + <Value>nbre-indiv=Y-Axis Title</Value> + <Font> + <Size>8.0</Size> + <Bold>true</Bold> + <Alignment> + <horizontalAlignment>Center</horizontalAlignment> + <verticalAlignment>Center</verticalAlignment> + </Alignment> + <Rotation>90.0</Rotation> + </Font> + </Caption> + <Background xsi:type="attribute:ColorDefinition"> + <Transparency>0</Transparency> + <Red>255</Red> + <Green>255</Green> + <Blue>255</Blue> + </Background> + <Outline> + <Style>Solid</Style> + <Thickness>1</Thickness> + <Color> + <Transparency>255</Transparency> + <Red>0</Red> + <Green>0</Green> + <Blue>0</Blue> + </Color> + </Outline> + <Insets> + <Top>0.0</Top> + <Left>0.0</Left> + <Bottom>5.0</Bottom> + <Right>0.0</Right> + </Insets> + <Visible>true</Visible> + </Title> + <TitlePosition>Left</TitlePosition> + <SeriesDefinitions> + <Query> + <Definition></Definition> + </Query> + <SeriesPalette> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>80</Red> + <Green>166</Green> + <Blue>218</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>242</Red> + <Green>88</Green> + <Blue>106</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>232</Red> + <Green>172</Green> + <Blue>57</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>128</Red> + <Green>255</Green> + <Blue>128</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>64</Red> + <Green>128</Green> + <Blue>128</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>128</Red> + <Green>128</Green> + <Blue>192</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>170</Red> + <Green>85</Green> + <Blue>85</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>128</Red> + <Green>128</Green> + <Blue>0</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>192</Red> + <Green>192</Green> + <Blue>192</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>255</Red> + <Green>255</Green> + <Blue>128</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>128</Red> + <Green>192</Green> + <Blue>128</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>7</Red> + <Green>146</Green> + <Blue>94</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>0</Red> + <Green>128</Green> + <Blue>255</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>255</Red> + <Green>128</Green> + <Blue>192</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>0</Red> + <Green>255</Green> + <Blue>255</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>255</Red> + <Green>128</Green> + <Blue>128</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>0</Red> + <Green>128</Green> + <Blue>192</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>128</Red> + <Green>128</Green> + <Blue>192</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>255</Red> + <Green>0</Green> + <Blue>255</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>128</Red> + <Green>64</Green> + <Blue>64</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>255</Red> + <Green>128</Green> + <Blue>64</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>80</Red> + <Green>240</Green> + <Blue>120</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>0</Red> + <Green>64</Green> + <Blue>128</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>128</Red> + <Green>0</Green> + <Blue>64</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>255</Red> + <Green>0</Green> + <Blue>128</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>128</Red> + <Green>128</Green> + <Blue>64</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>128</Red> + <Green>128</Green> + <Blue>128</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>255</Red> + <Green>128</Green> + <Blue>255</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>0</Red> + <Green>64</Green> + <Blue>0</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>0</Red> + <Green>0</Green> + <Blue>0</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>255</Red> + <Green>255</Green> + <Blue>255</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>255</Red> + <Green>128</Green> + <Blue>0</Blue> + </Entries> + </SeriesPalette> + <Series xsi:type="type:BarSeries"> + <Visible>true</Visible> + <Label> + <Caption> + <Value></Value> + <Font> + <Alignment/> + </Font> + </Caption> + <Background xsi:type="attribute:ColorDefinition"> + <Transparency>0</Transparency> + <Red>255</Red> + <Green>255</Green> + <Blue>255</Blue> + </Background> + <Outline> + <Style>Solid</Style> + <Thickness>1</Thickness> + <Color> + <Transparency>255</Transparency> + <Red>0</Red> + <Green>0</Green> + <Blue>0</Blue> + </Color> + <Visible>false</Visible> + </Outline> + <Insets> + <Top>0.0</Top> + <Left>2.0</Left> + <Bottom>0.0</Bottom> + <Right>3.0</Right> + </Insets> + <Visible>false</Visible> + </Label> + <DataDefinition> + <Definition>row["Nbr"]</Definition> + <Grouping> + <Enabled>false</Enabled> + <GroupType>Text</GroupType> + <AggregateExpression xsi:nil="true"/> + </Grouping> + </DataDefinition> + <SeriesIdentifier>Series 1</SeriesIdentifier> + <DataPoint> + <Components> + <Type>Orthogonal_Value</Type> + </Components> + <Separator>, </Separator> + </DataPoint> + <LabelPosition>Inside</LabelPosition> + <Stacked>false</Stacked> + <Riser>Rectangle</Riser> + </Series> + <Grouping> + <GroupType>Text</GroupType> + <AggregateExpression>Sum</AggregateExpression> + </Grouping> + </SeriesDefinitions> + <Orientation>Vertical</Orientation> + <LineAttributes> + <Style>Solid</Style> + <Thickness>1</Thickness> + <Visible>true</Visible> + </LineAttributes> + <Label> + <Caption> + <Value></Value> + <Font> + <Alignment/> + </Font> + </Caption> + <Background xsi:type="attribute:ColorDefinition"> + <Transparency>0</Transparency> + <Red>255</Red> + <Green>255</Green> + <Blue>255</Blue> + </Background> + <Outline> + <Style>Solid</Style> + <Thickness>1</Thickness> + <Color> + <Transparency>255</Transparency> + <Red>0</Red> + <Green>0</Green> + <Blue>0</Blue> + </Color> + </Outline> + <Insets> + <Top>0.0</Top> + <Left>2.0</Left> + <Bottom>0.0</Bottom> + <Right>3.0</Right> + </Insets> + <Visible>true</Visible> + </Label> + <LabelPosition>Left</LabelPosition> + <MajorGrid> + <LineAttributes> + <Style>Solid</Style> + <Thickness>1</Thickness> + <Color> + <Transparency>255</Transparency> + <Red>196</Red> + <Green>196</Green> + <Blue>196</Blue> + </Color> + <Visible>false</Visible> + </LineAttributes> + <TickStyle>Left</TickStyle> + <TickAttributes> + <Style>Solid</Style> + <Thickness>1</Thickness> + <Color> + <Transparency>255</Transparency> + <Red>0</Red> + <Green>0</Green> + <Blue>0</Blue> + </Color> + <Visible>true</Visible> + </TickAttributes> + </MajorGrid> + <MinorGrid> + <LineAttributes> + <Style>Solid</Style> + <Thickness>1</Thickness> + <Color> + <Transparency>255</Transparency> + <Red>225</Red> + <Green>225</Green> + <Blue>225</Blue> + </Color> + <Visible>false</Visible> + </LineAttributes> + <TickStyle>Across</TickStyle> + <TickAttributes> + <Style>Solid</Style> + <Thickness>1</Thickness> + <Color> + <Transparency>255</Transparency> + <Red>225</Red> + <Green>225</Green> + <Blue>225</Blue> + </Color> + <Visible>false</Visible> + </TickAttributes> + </MinorGrid> + <Scale> + <Min xsi:type="data:NumberDataElement"> + <Value>0.0</Value> + </Min> + <MinorGridsPerUnit>5</MinorGridsPerUnit> + <AutoExpand>true</AutoExpand> + </Scale> + <Origin> + <Type>Value</Type> + <Value xsi:type="data:NumberDataElement"> + <Value>0.0</Value> + </Value> + </Origin> + <PrimaryAxis>true</PrimaryAxis> + <Percent>false</Percent> + <Aligned>false</Aligned> + <SideBySide>false</SideBySide> + </AssociatedAxes> + <SeriesDefinitions> + <Query> + <Definition></Definition> + </Query> + <SeriesPalette> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>80</Red> + <Green>166</Green> + <Blue>218</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>242</Red> + <Green>88</Green> + <Blue>106</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>232</Red> + <Green>172</Green> + <Blue>57</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>128</Red> + <Green>255</Green> + <Blue>128</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>64</Red> + <Green>128</Green> + <Blue>128</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>128</Red> + <Green>128</Green> + <Blue>192</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>170</Red> + <Green>85</Green> + <Blue>85</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>128</Red> + <Green>128</Green> + <Blue>0</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>192</Red> + <Green>192</Green> + <Blue>192</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>255</Red> + <Green>255</Green> + <Blue>128</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>128</Red> + <Green>192</Green> + <Blue>128</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>7</Red> + <Green>146</Green> + <Blue>94</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>0</Red> + <Green>128</Green> + <Blue>255</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>255</Red> + <Green>128</Green> + <Blue>192</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>0</Red> + <Green>255</Green> + <Blue>255</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>255</Red> + <Green>128</Green> + <Blue>128</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>0</Red> + <Green>128</Green> + <Blue>192</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>128</Red> + <Green>128</Green> + <Blue>192</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>255</Red> + <Green>0</Green> + <Blue>255</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>128</Red> + <Green>64</Green> + <Blue>64</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>255</Red> + <Green>128</Green> + <Blue>64</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>80</Red> + <Green>240</Green> + <Blue>120</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>0</Red> + <Green>64</Green> + <Blue>128</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>128</Red> + <Green>0</Green> + <Blue>64</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>255</Red> + <Green>0</Green> + <Blue>128</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>128</Red> + <Green>128</Green> + <Blue>64</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>128</Red> + <Green>128</Green> + <Blue>128</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>255</Red> + <Green>128</Green> + <Blue>255</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>0</Red> + <Green>64</Green> + <Blue>0</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>0</Red> + <Green>0</Green> + <Blue>0</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>255</Red> + <Green>255</Green> + <Blue>255</Blue> + </Entries> + <Entries xsi:type="attribute:ColorDefinition"> + <Transparency>255</Transparency> + <Red>255</Red> + <Green>128</Green> + <Blue>0</Blue> + </Entries> + </SeriesPalette> + <Series> + <Visible>true</Visible> + <Label> + <Caption> + <Value></Value> + <Font> + <Alignment/> + </Font> + </Caption> + <Background xsi:type="attribute:ColorDefinition"> + <Transparency>0</Transparency> + <Red>255</Red> + <Green>255</Green> + <Blue>255</Blue> + </Background> + <Outline> + <Style>Solid</Style> + <Thickness>1</Thickness> + <Color> + <Transparency>255</Transparency> + <Red>0</Red> + <Green>0</Green> + <Blue>0</Blue> + </Color> + <Visible>false</Visible> + </Outline> + <Insets> + <Top>0.0</Top> + <Left>2.0</Left> + <Bottom>0.0</Bottom> + <Right>3.0</Right> + </Insets> + <Visible>false</Visible> + </Label> + <DataDefinition> + <Definition>row["Taille"]</Definition> + </DataDefinition> + <SeriesIdentifier></SeriesIdentifier> + <DataPoint> + <Components> + <Type>Orthogonal_Value</Type> + </Components> + <Separator>, </Separator> + </DataPoint> + <LabelPosition>Outside</LabelPosition> + <Stacked>false</Stacked> + </Series> + <Grouping> + <Enabled>false</Enabled> + <GroupType>Numeric</GroupType> + <AggregateExpression>Sum</AggregateExpression> + </Grouping> + </SeriesDefinitions> + <Orientation>Horizontal</Orientation> + <LineAttributes> + <Style>Solid</Style> + <Thickness>1</Thickness> + <Visible>true</Visible> + </LineAttributes> + <Label> + <Caption> + <Value></Value> + <Font> + <Alignment/> + </Font> + </Caption> + <Background xsi:type="attribute:ColorDefinition"> + <Transparency>0</Transparency> + <Red>255</Red> + <Green>255</Green> + <Blue>255</Blue> + </Background> + <Outline> + <Style>Solid</Style> + <Thickness>1</Thickness> + <Color> + <Transparency>255</Transparency> + <Red>0</Red> + <Green>0</Green> + <Blue>0</Blue> + </Color> + </Outline> + <Insets> + <Top>0.0</Top> + <Left>2.0</Left> + <Bottom>0.0</Bottom> + <Right>3.0</Right> + </Insets> + <Visible>true</Visible> + </Label> + <FormatSpecifier xsi:type="attribute:JavaNumberFormatSpecifier"> + <Pattern>##.###</Pattern> + </FormatSpecifier> + <LabelPosition>Below</LabelPosition> + <Staggered>false</Staggered> + <Interval>1</Interval> + <MajorGrid> + <LineAttributes> + <Style>Solid</Style> + <Thickness>1</Thickness> + <Color> + <Transparency>255</Transparency> + <Red>196</Red> + <Green>196</Green> + <Blue>196</Blue> + </Color> + <Visible>false</Visible> + </LineAttributes> + <TickStyle>Below</TickStyle> + <TickAttributes> + <Style>Solid</Style> + <Thickness>1</Thickness> + <Color> + <Transparency>255</Transparency> + <Red>0</Red> + <Green>0</Green> + <Blue>0</Blue> + </Color> + <Visible>true</Visible> + </TickAttributes> + </MajorGrid> + <MinorGrid> + <LineAttributes> + <Style>Solid</Style> + <Thickness>1</Thickness> + <Color> + <Transparency>255</Transparency> + <Red>225</Red> + <Green>225</Green> + <Blue>225</Blue> + </Color> + <Visible>false</Visible> + </LineAttributes> + <TickStyle>Across</TickStyle> + <TickAttributes> + <Style>Solid</Style> + <Thickness>1</Thickness> + <Color> + <Transparency>255</Transparency> + <Red>225</Red> + <Green>225</Green> + <Blue>225</Blue> + </Color> + <Visible>false</Visible> + </TickAttributes> + </MinorGrid> + <Scale> + <Min xsi:type="data:NumberDataElement"> + <Value>0.0</Value> + </Min> + <MinorGridsPerUnit>5</MinorGridsPerUnit> + <ShowOutside>false</ShowOutside> + <AutoExpand>false</AutoExpand> + </Scale> + <Origin> + <Type>Value</Type> + <Value xsi:type="data:NumberDataElement"> + <Value>0.0</Value> + </Value> + </Origin> + <PrimaryAxis>true</PrimaryAxis> + <CategoryAxis>false</CategoryAxis> + <Percent>false</Percent> + </Axes> + <Orientation>Vertical</Orientation> + <UnitSpacing>50.0</UnitSpacing> + <Rotation/> + <ReverseCategory>false</ReverseCategory> +</model:ChartWithAxes> +]]></xml-property> + <property name="outputFormat">SVG</property> + <list-property name="filter"> + <structure> + <property name="operator">is-not-null</property> + <expression name="expr">row["Taille"]</expression> + </structure> + </list-property> + <property name="inheritColumns">false</property> + <property name="height">50mm</property> + <property name="width">185mm</property> + </extended-item> + </cell> + </row> + </grid> + </cell> + </row> + </grid> + </footer> + </group> + <detail> + <grid id="3492"> + <property name="textAlign">center</property> + <column id="3493"/> + <row id="3494"> + <cell id="3495"> + <property name="paddingTop">0pt</property> + <property name="paddingLeft">0pt</property> + <property name="paddingBottom">0pt</property> + <property name="paddingRight">0pt</property> + <grid name="classeTaille" id="3496"> + <property name="textAlign">left</property> + <property name="width">90mm</property> + <column id="3497"> + <property name="width">30mm</property> + </column> + <column id="3498"> + <property name="width">30mm</property> + </column> + <column id="3499"> + <property name="width">30mm</property> + </column> + <row id="3500"> + <list-property name="visibility"> + <structure> + <property name="format">all</property> + <expression name="valueExpr">row["NumOrdre_Taille_H2"] != null && row["NumOrdre_Taille_H2"] !=1</expression> + </structure> + </list-property> + <cell id="3501"> + <property name="style">grid-header-cell</property> + <property name="paddingTop">0px</property> + <property name="paddingLeft">0px</property> + <property name="paddingBottom">0px</property> + <property name="paddingRight">0px</property> + <label id="3502"> + <text-property name="text" key="classe-taille"></text-property> + </label> + </cell> + <cell id="3503"> + <property name="style">grid-header-cell</property> + <property name="paddingTop">0px</property> + <property name="paddingLeft">0px</property> + <property name="paddingBottom">0px</property> + <property name="paddingRight">0px</property> + <label id="3504"> + <text-property name="text" key="nbre"></text-property> + </label> + </cell> + <cell id="3505"> + <property name="style">grid-header-cell</property> + <property name="paddingTop">0px</property> + <property name="paddingLeft">0px</property> + <property name="paddingBottom">0px</property> + <property name="paddingRight">0px</property> + <label id="3506"> + <text-property name="text" key="poids"></text-property> + </label> + </cell> + </row> + <row id="3507"> + <list-property name="visibility"> + <structure> + <property name="format">all</property> + <expression name="valueExpr">row["NumOrdre_Taille_H2"]==null</expression> + </structure> + </list-property> + <cell id="3508"> + <property name="borderBottomColor">#000000</property> + <property name="borderBottomStyle">solid</property> + <property name="borderBottomWidth">1px</property> + <property name="borderLeftColor">#000000</property> + <property name="borderLeftStyle">solid</property> + <property name="borderLeftWidth">1px</property> + <property name="borderRightColor">#000000</property> + <property name="borderRightStyle">solid</property> + <property name="borderRightWidth">1px</property> + <property name="paddingTop">0px</property> + <property name="paddingLeft">0px</property> + <property name="paddingBottom">0px</property> + <property name="paddingRight">0px</property> + <data id="3509"> + <property name="style">cell-right</property> + <property name="marginRight">5pt</property> + <property name="textAlign">center</property> + <property name="resultSetColumn">Taille</property> + </data> + </cell> + <cell id="3510"> + <property name="borderBottomColor">#000000</property> + <property name="borderBottomStyle">solid</property> + <property name="borderBottomWidth">1px</property> + <property name="borderLeftColor">#000000</property> + <property name="borderLeftStyle">solid</property> + <property name="borderLeftWidth">1px</property> + <property name="borderRightColor">#000000</property> + <property name="borderRightStyle">solid</property> + <property name="borderRightWidth">1px</property> + <property name="paddingTop">0px</property> + <property name="paddingLeft">0px</property> + <property name="paddingBottom">0px</property> + <property name="paddingRight">0px</property> + <data id="3511"> + <property name="resultSetColumn">Nbr</property> + </data> + </cell> + <cell id="3512"> + <property name="borderBottomColor">#000000</property> + <property name="borderBottomStyle">solid</property> + <property name="borderBottomWidth">1px</property> + <property name="borderLeftColor">#000000</property> + <property name="borderLeftStyle">solid</property> + <property name="borderLeftWidth">1px</property> + <property name="borderRightColor">#000000</property> + <property name="borderRightStyle">solid</property> + <property name="borderRightWidth">1px</property> + <property name="paddingTop">0px</property> + <property name="paddingLeft">0px</property> + <property name="paddingBottom">0px</property> + <property name="paddingRight">0px</property> + <data id="3513"> + <property name="resultSetColumn">Poids_Classe_Taille</property> + </data> + </cell> + </row> + </grid> + </cell> + </row> + </grid> + </detail> + </list> + </cell> + </row> + </grid> + <grid name="rapport-espece-benthos" id="3327"> + <list-property name="visibility"> + <structure> + <property name="format">all</property> + <expression name="valueExpr" type="javascript">true</expression> + </structure> + </list-property> + <structure name="toc"> + <expression name="expressionValue">getMessage("title.rapport-espece-benthos");</expression> + </structure> + <column id="3328"/> + <row id="3329"> + <cell id="3330"> + <label id="3331"> + <property name="style">report-title</property> + <property name="fontSize">medium</property> + <property name="paddingTop">0px</property> + <property name="paddingBottom">5px</property> + <property name="textAlign">center</property> + <text-property name="text" key="title.rapport-espece-benthos"></text-property> + </label> + </cell> + </row> + </grid> + <grid name="rapport-macro-dechets" id="3332"> + <property name="masterPage">Simple MasterPage Portrait</property> + <property name="pageBreakBefore">always</property> + <structure name="toc"> + <expression name="expressionValue">getMessage("title.rapport-macro-dechets");</expression> + </structure> + <column id="3333"/> + <row id="3334"> + <cell id="3335"> + <label id="3336"> + <property name="style">report-title</property> + <property name="fontSize">medium</property> + <property name="paddingTop">0px</property> + <property name="paddingBottom">5px</property> + <property name="textAlign">center</property> + <text-property name="text" key="title.rapport-macro-dechets"></text-property> + </label> + </cell> + </row> + <row id="3337"> + <cell id="3338"> + <text-data id="3603"> + <property name="paddingTop">10pt</property> + <expression name="valueExpr">cartouche;</expression> + <property name="contentType">html</property> + </text-data> + </cell> + </row> + <row id="3373"> + <cell id="3374"> + <grid name="detail-macro-dechets" id="3375"> + <column id="3376"/> + <row id="3377"> + <cell id="3378"> + <label id="3381"> + <property name="style">label-general</property> + <property name="paddingRight">0px</property> + <property name="display">inline</property> + <text-property name="text" key="poids.total"></text-property> + </label> + <data id="3574"> + <property name="fontWeight">normal</property> + <property name="fontStyle">normal</property> + <property name="fontVariant">normal</property> + <structure name="numberFormat"> + <property name="category">Custom</property> + <property name="pattern">#0.####</property> + </structure> + <property name="textAlign">left</property> + <property name="display">inline</property> + <list-property name="highlightRules"> + <structure> + <property name="operator">eq</property> + <expression name="testExpr" type="javascript">row["Poids_Total_Macro_Dechet_Calcule"]</expression> + <simple-property-list name="value1"> + <value type="javascript">"Y"</value> + </simple-property-list> + <property name="style">data-calcule</property> + </structure> + </list-property> + <property name="resultSetColumn">Poids_Total_Macro_Dechet</property> + </data> + </cell> + </row> + <row id="3379"> + <cell id="3380"> + <property name="paddingTop">10pt</property> + <table id="3382"> + <property name="dataSet">marineLitter</property> + <list-property name="boundDataColumns"> + <structure> + <property name="name">Annee</property> + <expression name="expression">dataSetRow["Annee"]</expression> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="name">Serie</property> + <expression name="expression">dataSetRow["Serie"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Serie_Partielle</property> + <expression name="expression">dataSetRow["Serie_Partielle"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Engin</property> + <expression name="expression">dataSetRow["Engin"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Code_Station</property> + <expression name="expression">dataSetRow["Code_Station"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Numero_Trait</property> + <expression name="expression">dataSetRow["Numero_Trait"]</expression> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="name">Poche</property> + <expression name="expression">dataSetRow["Poche"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Navire</property> + <expression name="expression">dataSetRow["Navire"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">MarineLitterCategory</property> + <expression name="expression">dataSetRow["MarineLitterCategory"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">MarineLitterSizeCategory</property> + <expression name="expression">dataSetRow["MarineLitterSizeCategory"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Number</property> + <expression name="expression">dataSetRow["Number"]</expression> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="name">Weight</property> + <expression name="expression">dataSetRow["Weight"]</expression> + <property name="dataType">decimal</property> + </structure> + <structure> + <property name="name">Commentaire</property> + <expression name="expression">dataSetRow["Commentaire"]</expression> + <property name="dataType">string</property> + </structure> + </list-property> + <list-property name="filter"> + <structure> + <property name="operator">eq</property> + <expression name="expr" type="javascript">row["Numero_Trait"]</expression> + <simple-property-list name="value1"> + <value>row._outer["Numero_Trait"]</value> + </simple-property-list> + <property name="updateAggregation">true</property> + </structure> + <structure> + <property name="operator">eq</property> + <expression name="expr" type="javascript">row["Code_Station"]</expression> + <simple-property-list name="value1"> + <value>row._outer["Code_Station"]</value> + </simple-property-list> + <property name="updateAggregation">true</property> + </structure> + </list-property> + <column id="3401"/> + <column id="3402"/> + <column id="3403"> + <property name="width">20mm</property> + </column> + <column id="3404"> + <property name="width">20mm</property> + </column> + <column id="3405"/> + <header> + <row id="3383"> + <cell id="3384"> + <label id="3406"> + <text-property name="text" key="categorie"></text-property> + </label> + </cell> + <cell id="3385"> + <label id="3407"> + <text-property name="text" key="categorie-taille"></text-property> + </label> + </cell> + <cell id="3386"> + <label id="3408"> + <text-property name="text" key="nbre"></text-property> + </label> + </cell> + <cell id="3387"> + <label id="3409"> + <text-property name="text" key="poids.sans-unite"></text-property> + </label> + </cell> + <cell id="3388"> + <label id="3410"> + <text-property name="text" key="commentaire_bis"></text-property> + </label> + </cell> + </row> + </header> + <detail> + <row id="3389"> + <property name="style">grid-detail-cell</property> + <cell id="3390"> + <data id="3411"> + <property name="textAlign">left</property> + <property name="resultSetColumn">MarineLitterCategory</property> + </data> + </cell> + <cell id="3391"> + <data id="3412"> + <property name="resultSetColumn">MarineLitterSizeCategory</property> + </data> + </cell> + <cell id="3392"> + <data id="3413"> + <property name="resultSetColumn">Number</property> + </data> + </cell> + <cell id="3393"> + <data id="3414"> + <structure name="numberFormat"> + <property name="category">Custom</property> + <property name="pattern">#0.####</property> + </structure> + <property name="resultSetColumn">Weight</property> + </data> + </cell> + <cell id="3394"> + <data id="3415"> + <property name="resultSetColumn">Commentaire</property> + </data> + </cell> + </row> + </detail> + </table> + </cell> + </row> + </grid> + </cell> + </row> + </grid> + <grid name="rapport-capt-accident" id="3416"> + <property name="masterPage">Simple MasterPage Portrait</property> + <property name="pageBreakBefore">always</property> + <structure name="toc"> + <expression name="expressionValue">getMessage("title.rapport-capture-accidentelles");</expression> + </structure> + <column id="3417"/> + <row id="3418"> + <cell id="3419"> + <label id="3420"> + <property name="style">report-title</property> + <property name="fontSize">medium</property> + <property name="paddingTop">0px</property> + <property name="paddingBottom">5px</property> + <property name="textAlign">center</property> + <text-property name="text" key="title.rapport-capture-accidentelles"></text-property> + </label> + </cell> + </row> + <row id="3421"> + <cell id="3422"> + <text-data id="3604"> + <property name="paddingTop">10pt</property> + <expression name="valueExpr">cartouche;</expression> + <property name="contentType">html</property> + </text-data> + </cell> + </row> + <row id="3457"> + <cell id="3458"> + <table id="3460"> + <property name="dataSet">accidentalCatch</property> + <list-property name="boundDataColumns"> + <structure> + <property name="name">Annee</property> + <expression name="expression">dataSetRow["Annee"]</expression> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="name">Serie</property> + <expression name="expression">dataSetRow["Serie"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Serie_Partielle</property> + <expression name="expression">dataSetRow["Serie_Partielle"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Engin</property> + <expression name="expression">dataSetRow["Engin"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Code_Station</property> + <expression name="expression">dataSetRow["Code_Station"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Numero_Trait</property> + <expression name="expression">dataSetRow["Numero_Trait"]</expression> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="name">Poche</property> + <expression name="expression">dataSetRow["Poche"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Navire</property> + <expression name="expression">dataSetRow["Navire"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">BatchId</property> + <expression name="expression">dataSetRow["BatchId"]</expression> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="name">ReferenceTaxonId</property> + <expression name="expression">dataSetRow["ReferenceTaxonId"]</expression> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="name">ReferenceTaxonName</property> + <expression name="expression">dataSetRow["ReferenceTaxonName"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">Commentaire</property> + <expression name="expression">dataSetRow["Commentaire"]</expression> + <property name="dataType">string</property> + </structure> + <structure> + <property name="name">CaracteristicId</property> + <expression name="expression">dataSetRow["CaracteristicId"]</expression> + <property name="dataType">integer</property> + </structure> + <structure> + <property name="name">CaracteristicValue</property> + <expression name="expression">dataSetRow["CaracteristicValue"]</expression> + <property name="dataType">string</property> + </structure> + </list-property> + <list-property name="filter"> + <structure> + <property name="operator">eq</property> + <expression name="expr" type="javascript">row["Numero_Trait"]</expression> + <simple-property-list name="value1"> + <value>row._outer["Numero_Trait"]</value> + </simple-property-list> + <property name="updateAggregation">true</property> + </structure> + <structure> + <property name="operator">eq</property> + <expression name="expr" type="javascript">row["Code_Station"]</expression> + <simple-property-list name="value1"> + <value>row._outer["Code_Station"]</value> + </simple-property-list> + <property name="updateAggregation">true</property> + </structure> + </list-property> + <column id="3473"/> + <column id="3474"> + <property name="width">25mm</property> + </column> + <column id="3475"> + <property name="width">40mm</property> + </column> + <header> + <row id="3461"> + <cell id="3462"> + <label id="3476"> + <text-property name="text" key="espece_bis"></text-property> + </label> + </cell> + <cell id="3463"> + <label id="3477"> + <text-property name="text" key="caracteristique"></text-property> + </label> + </cell> + <cell id="3464"> + <label id="3478"> + <text-property name="text" key="valeur"></text-property> + </label> + </cell> + </row> + </header> + <detail> + <row id="3465"> + <property name="style">grid-detail-cell</property> + <cell id="3466"> + <data id="3479"> + <property name="textAlign">left</property> + <property name="resultSetColumn">ReferenceTaxonName</property> + </data> + </cell> + <cell id="3467"> + <data id="3481"> + <property name="resultSetColumn">CaracteristicId</property> + </data> + </cell> + <cell id="3468"> + <data id="3482"> + <property name="resultSetColumn">CaracteristicValue</property> + </data> + </cell> + </row> + </detail> + </table> + </cell> + </row> + </grid> + </cell> + </row> + </grid> + </detail> + </list> + </cell> + </row> + </grid> + </body> + <list-property name="images"> + <structure> + <property name="name">logo-ifremer.PNG</property> + <property name="type">image/png</property> + <property name="data"> + iVBORw0KGgoAAAANSUhEUgAAApUAAACDCAIAAABTI3dfAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAEnFJREFUeF7tneG2 + oCiuRqvf/3nq+arPjGscC5V8iYgQ9ln3R9cUhmSDbEFP3X/+/Pnzix8IQAACEIAABOYi8ONvfiAAAQhA + AAIQmIvAr7nSJdtxCPz+/XucZMgEAhCAwGoE8PdqI+6rV5H0Txulma9jWkMAAhCAQJUA/maC3BLYxbz9 + x52kj39VbwlrCEAAAhBoRQB/tyKZOc5u5U3hFUkf/4p9eeY5QW0QgMDXBPD31yMwUv/FTnpP7c7fda8X + mkfnIw01uUAAAtMTwN/TD2HDAo4n5OfD8/1vj9q+/O/jHv1yy8778oajRigIQGBNAvh7zXE3qr4zdCFm + U+Rn5deP3xkMCEAAAhAQCeBvEdRazUQxK82KM/bC3xyqrzWxqBYCEGhHAH+3Yzl5pOJMuzj3rquaffnk + g0/6EIDAfATw93xj9lLGxcvvrRfvDltvXwQ/n6tX3pEX39mZb9P1L+kqn9a/hJ2wEIAABGIE8HeMW/Kr + Lo+1dTd7WxbPCmeXn3HffRZXvHGvP4XsHZ2fVFo9uySfKJQHAQh8RwB/f8d+4J7PH5+/vR2/3CKfJV08 + WByvavjNnff5I9B+4MEnNQhAYA4C+HuOcfoqS0WQAXuJl1QeGoo9uhjQ9VK/W+1fDS79QgACUxPA31MP + X9fkdUdO0VI8Ie928GC+xe862HQGAQgMTwB/Dz9EwyQ4hZX1JEV/HwPuQ6H3Ems5zJiTCAQgMC4B/D3u + 2AybWcxJCa46+rvPvnzYOUBiEIDA5wTw9+dDME0CxQFvAh8/KaGPvy9/EWCaGUOiEIDAmwTw95t0k8Y+ + SuWJArnWSyDphKIsCEAgQgB/R6gtfo3XOmna/4z757UsPvcoHwIQ2AngbyaDm8DnDvskgZ4H5vUC3QPG + BRCAQEYC+DvjqHap6ROJDtLp5xvxLiNMJxCAwNAE8PfQwzNgcrz8HucZYsDpQUoQgEA3Avi7G+okHe3+ + Ln4xehCrLZVGkilFGRCAQIgA/g5hW/ii/bfIljLlsMUuPBMpHQKrE8Dfq8+AcP3DKm21xMIjyIUQgMDU + BPD31MPXO3lefo/5cNB7HtAfBCAwAAH8PcAgTJLCrq6ffMfU2MpZTTKJSBMCEGhGAH83Q7lOoJU1OXLt + 68xAKoUABH4I4G+mwS2B4h/f3r9cY/89psWZyhCAwFIE8PdSwx0sll8VG1PY56yCA8xlEIDAhATw94SD + 1j1l/D2Lv49nJN2nCR1CAAJdCeDvrrjn7WwigS2e6rxzjMwhAAEXAfztwrVQ47uX34vbcYryF5qmlAqB + hQng74UHv1r65a96/1wxhcAWT5I5DQEIrEAAf68wyo9qvHPhFnRxUw5b/qMh52IIQGAGAvh7hlHqlWPx + b5tj6GH1bCbWa8rQDwQg8BkB/P0Z+pE7Ll5+76ma2qDBUARGnmPkBgEIPCSAvx8CzHn57m9+c2woHweS + yTlBqQoCEODfX2MO7IfklygqL78DLuGSbwkw2yEAgUwE2H9nGs14LecNNy+/v3XtS73HpwhXQgACgxHA + 34MNyEfpXPqbw/OXJPpt2I+mGN1CAAKNCeDvxkBnD7er5aeQ438f//itfuj9IYHZpyj5QwACGwH8vehM + 2H9VbBPzkULxW2SFLThXf6jPzy9fdMZTNgTSEcDf6YbUWVCxyS5EfikbFN7WwT15OmcHzSEAgXEJ4O9x + x6ZPZpUD831r3lZXi0TrM3z0AgEILEsAfy879BeF8/I7/GzBNIIABCDQmQD+7gz8++72T83Pqdz5mw/Z + lO/zvx9aMoAABFYigL9XGu1TrWcx700Ul4d3q5NeuL9QKCgtPYcoHgIQ+IgA/v4I/Bjd1l9+bzneubby + V5PqWU97jNEjCwhAYGkC+Hu54S9+c+z822K7mM97cd1wOVoen1GK/15u3lAwBCAwGAH8PdiAvJzO8eX3 + 3Yvwo3oLl39u5fqmv+2RwPk55uXBITwEIAABBwH87YCVqWlF0kdvdXO5qN5Ks/P+2Pu0sY3v+Z1CpnGn + FghAIA2Bs79//hf+Lz+Bv8X86yCtv2q/f/n9/0u8mjTb/8xApd/zRD1WYfZybrD1y/yHAAQgMAUB/J1c + 1Uch3cnpocsDptQvKVx+/ON2gylF6d39751C8lkxxdpEkhCAQJ0A/l5opa7Iaf+rS5fvc8grwobtzzm8 + 52924aybEIDA+ATw94r+vjst3424Cazi8oZiPvdVOTzX76jdwYFU9V5oCQEIQOArAvh7IX9XtrCXO07x + JXRAkHVDP/d3IKWv7kD6hQAEIBAjgL8z+1s5By724ndn7IrLA9Y8X1K80q4fFdxN+ieZxG4kroIABCDQ + mQD+zuzv42RSvsxSXn4X5+qXl+j6rEcL3wx6ApcPEOF+uRACEIBANwL4ezl/iy+/d7Nuc/Go/yd2LK59 + yd/HnCvZdrvN6AgCEIBAcwL4exV/71PnfGBeP4UuFNvW5c0ndOWB4FLkbyRATAhAAAIdCODvnP4uTsvv + XoQ/fPl9eXl9d15/Gng+4wPv6Sud/vr753l6RIAABCDQigD+zunv4/wQPwF76HJ943u5g281ocU0js3O + XRfavvtjw5wJBQEIQMBLAH/n9/fZ5XezZN+mH11+1r+5w1Yk6p2pYvv94CH22ls099ZMTIlmEIAABN4g + gL/zrMJ3h+R3/q5/kX4W4RZHFKT5jdsbs9nstEj+mIPL3Pj7jeEjJgQg4CKAv/P4ex9418vvwsrn2VPZ + i1/+Vf0Lc9fs9DauvPw+Hgkcn0K2LmI/3vRoDwEIQKAhAfyd0N/nDbe5NVc+Shft+O1n3oHeY/Lm/Lzh + MkQoCEAgQAB/J/f33eF5MVeOW/bKh2x3e3HzQ/TA1NR3xpfBjyI/b7iPl+Dv8OhwIQQg8CEB/J3E3+YO + u3BY5eV3/cB8n6x3h+eVJ4PARFfkWqR0+ce7epX4fH8eGDgugQAE3iaAv5P4+85hdxPovOGu72J3/e8P + CuaHbE3mruJXb+1NNt+cnzcZX4JAAAJhAvg7m7+PU6H+hXll23qeT5fH0YXLtz8WZ+nhqbldqPxUnjzM + 3pX4qNrESAMIQKA/Afy9ir/NA/Nt8hWn4uengfPn5a/OWsWvb/v71QIJDgEIQCBGAH9n9vfdXtzl8qPX + C8cfN9yx+WdeFfa3GVnc34txaAYBCECgMwH8ncrfylds+yb7LOZi8lU+Sr/cl78xd/H3G1SJCQEIJCCA + v1P5+27DXZmpyjvy4uX39gTQZ/bj7z6c6QUCEJiOAP5O6++HLi+8fv5tsT5zHX/34UwvEIDAdATwdx5/ + V/bExUn43TQVD8x7znL83ZM2fUEAAhMRwN+p/K0cax/bmMrv8IVa/W7B3xOtJqQKAQj0JIC/8/i77YF5 + INobExd/v0GVmBCAQAIC+Hsyfys77GJeKpe0/UdXGt4Ya/q7yf9/0jq6hmP0MNSe55M4x2KfxIldOxHq + WIFcNSYB/D2ZvwPTyHVgvsVXPkoPZBK4pJW/lTiuNmYt4TW9uNDs6NjAVUKTf1fO7PEy/9hV51Ct4rgg + b429P4EuvOgqXTyZVK0yJ05zAvg7ib+VTfYmZsXQ+Ntcnc1b0eXvSmOzo72BmfNlAz3+XUtXpbr56onp + xT4vsIigd/2GNV207xo3Z0LATwjg7yT+3mePqN7iwFzUf/85qqyVSlZKHFcbs9Mm66y4RXZl3tzieqXe + PGNPDOdezMHSG3hLaJ5ME9p6vbQcmQD+nsnfAcvWvzA/7sUDwTvMbGW5VNJQ4rjamJ02WWe7+Vvs6LJq + sVIX3mPjY6dNgphj1+q54Y3tbxPaYQJcOBQB/D2TvwNTRzkwF7fsgd6fX6Ks10ovShxXG7PTJuusolVX + 2mJWZnW6U/eWT/JsG8RVXZOuG+7ClRE0UccIcNVoBPB3Bn8rW+fzv80y2lwM7O22dUopxFzRvA3MTpV1 + 9ieI+VPvyLzc28Cs69xAqdSbRtF+6/ThT6A0/THFm1s4mSa0w71z4VAE8Le0+g81Zs+TGXnDXVSnLIsK + ECWOq43ZaZN1tv50oiQcMJBZmmuMmqh34/D8x1uaa/Ptaiw+dwaelhRKYQ5cOBQB/J3W37qkle37V7O2 + 1WKkxHG1MYGY0UQh3XWkxPeu/ntMs7rAY4GZcJ8GrtLEh4/LmEo5zZN5OKkC+XDJhwTw9xL+1l3+4Vzs + uQjqW6UwEGX5VtrE/F1J+0mn4TE6dtrK/fog3vUuDq5ylBIjIybQiljs+SyQJJf0IYC/0/r7OIHwd8yC + 4UNOcRt0KYZCSwExmGuHqXAzQswo4VEoEg4wCasrLO8tSfPHhVoJWJ9UWwRvp7QfkwD+Xm4qj3xafr5J + zOXv4WJkxg/ft2bkcwO9r4dSMTWgZ2KGEsWp46rkpgRxlWZWp0R7Plixp6WtXyVD2kxKAH/nnN/zbriL + G+mNFdm1GoZvbCVz0W2uxxoxYTM9MY5pOLFGM59WcfS6zNLEUGZpYpytmevHFZnG0xHA35P5e67d8/P7 + QVmtnvRixg8HNyOLQnLJ27XfarUvVCpVMDaJ0yTInm0fRAocMaXwpHLlQONBCODvyfx9nDcruLztcux1 + oUuHgZOD2AlnH6notbcaoyZxmgRRdrquFbzVkOn7b1d6NJ6UAP6e2N8ruLzhcnx5i5rxwze2GTkmb3MF + 1xM2MxRDrRlHhNP5USA8qVzl0HgQAmd//+FndgL/3Zcn+THdoG8TB/R3YBXouZMT0zPHKGUcsSj87QJF + YxcB/J3Ec1nLMN2Av4+IfDe/BVeMZoVRj7jmiiPCUfztmsMmJVc0VxU0Ho0A/s4qviR1vb1amfHDd6wZ + ObbOsv82R8Qkb0YwX1J4x65JSs0fBRQOtBmZAP5O4rmsZZgLn3clLe5GM3747jUjxzJXwrZqI9be6pHC + TLtJPiJ2M5m2DcTSmj9Y6P3SckAC+Dur+JLUpayST+4rM344uBlZFIn3gUPpV2wj1o6/RZ6VZiJq/K2D + WqEl/k7iuaxlKCvjkxvVjB8ObkbG395HE3EsTPJKHDNI2wZKSpyf65QWaYm/s4ovSV3KKvnkXjXjh4Ob + kfE3/t4niT7NzHmlh6Ll7ATwdxLPZS3DXK1iFtzvWzN++A43I8cyV8K2aiPWzvn5c+Aias7PdVArtMTf + WcWXpC5lZXxyo5rxw8HNyPib/Tf77/D9xYX/eZhLssxTRlICL1mQ/XdDsOy/FZijUcJ/CQjg76Tey1KW + sjI+uQ/N+OHgZuQ39t/hbJ9cOJqZTPJKsU2CKB152wybmLcQ2j8ngL+ziC5pHeZqFbNgh/33S68qW8ny + +dohMtQ7MsdaDNUkTpMgYsKuZsMm5qqCxk0I4O+k3stSlrla4e8joiaLgjdIq0cKc6zFxJrEaRJETNjV + bNjEXFXQuAkB/J1FdEnrMFcr/I2/i6XQnDPK0tkkiNKRt82wiXkLof1zAvg7qfeylGWuVvi7QPR8UfBG + SLn/fun1h5ftub15RzzvggizEMDfWUSXtA5ztVrN36ZX+i89+Lsnc/OO6JkMfX1LAH8n9V6WsszVCn+f + EXVeU/B3T+DmHdEzGfr6lgD+ziK6pHWYqxX+xt9vvP/eYrZ6NGm4ypt3RMO+CDU4Afyd1HtZyjJXqwX9 + bXrlIRPvmtVKcuZYi4m1ijMaZ+WRovPQiyNCs5cI4O8soktah7kWP1ywzPhPbrz3gr8a2VtyYn+/qvDY + 1H1v6L3jTvvPCeDvpN7LUpa5WsUWwf3GM+M/uUXfC25GjmHZwnpLXtzfT4h5Ub/6PBFIhku+JYC/s4gu + aR0viWp2fyvruCLjS7zeJSm3v4dCrSTjHT7az0sAfyf1Xpay8Pfd4qKQibXxLmf4O8Y5sHHH397Jmbs9 + /s4iuqR1KCvjk1vUjD9scGUpN6u7a+CqOr2/x0GtZOIaOxpPTQB/J/VelrIUAz25A834wwbfEnvpx1X1 + Cv4eBLWShmvsaDw1AfydRXRJ61D89OQONOMPG3xPzCwh0MBV9SL+Vtz5NmolB9fY0XhqAvg7qfeylKUs + iE/uQDP+sMGPiZlVeBu4ql7H34o+X0WtJOAaOxpPTQB/ZxFd0jqU1fDJHWjGHzb4OTGzFr2Bq+ql/N38 + tYULNf724srdHn8n9V6WshTlPLlFzfjDBr9LzKyoyTdr+u5fB2hmLoZqFcfszuyoOWr8bQ7KUg3wdxbR + Ja1DWSKf3LFm/GGDm4mZpW0NzDhmgwX33wWTbqjxtzkbl2qAv5N6j7IgAAEIQCA1AfydengpDgIQgAAE + khLA30kHlrIgAAEIQCA1AfydengpDgIQgAAEkhL4F9OQMdkvAe1SAAAAAElFTkSuQmCC + </property> + </structure> + </list-property> +</report> Added: trunk/tutti-service/src/test/resources/report/2013.12.05/version.appup =================================================================== --- trunk/tutti-service/src/test/resources/report/2013.12.05/version.appup (rev 0) +++ trunk/tutti-service/src/test/resources/report/2013.12.05/version.appup 2013-12-05 17:37:15 UTC (rev 1432) @@ -0,0 +1 @@ +2013.12.05 Modified: trunk/tutti-ui-swing/src/main/java/fr/ifremer/tutti/ui/swing/content/report/ReportUIModel.java =================================================================== --- trunk/tutti-ui-swing/src/main/java/fr/ifremer/tutti/ui/swing/content/report/ReportUIModel.java 2013-12-04 13:15:03 UTC (rev 1431) +++ trunk/tutti-ui-swing/src/main/java/fr/ifremer/tutti/ui/swing/content/report/ReportUIModel.java 2013-12-05 17:37:15 UTC (rev 1432) @@ -57,7 +57,7 @@ protected List<File> reports; - protected final ReportModel editObject = new ReportModel(); + protected final ReportModel editObject = new ReportModel(birtReportHome); public ReportUIModel() { super(null, toBeanBinder); @@ -114,6 +114,6 @@ @Override protected ReportModel newEntity() { - return new ReportModel(); + return new ReportModel(birtReportHome); } }
participants (1)
-
tchemit@users.forge.codelutin.com