Lima-commits
Threads by month
- ----- 2026 -----
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
February 2012
- 1 participants
- 24 discussions
r3346 - in trunk: . lima-business lima-business/src/main/java/org/chorem/lima/service
by echatellier@users.chorem.org 23 Feb '12
by echatellier@users.chorem.org 23 Feb '12
23 Feb '12
Author: echatellier
Date: 2012-02-23 17:09:21 +0100 (Thu, 23 Feb 2012)
New Revision: 3346
Url: http://chorem.org/repositories/revision/lima/3346
Log:
Update to openejb 4 (beta)
Modified:
trunk/lima-business/pom.xml
trunk/lima-business/src/main/java/org/chorem/lima/service/LimaServiceFactory.java
trunk/pom.xml
Modified: trunk/lima-business/pom.xml
===================================================================
--- trunk/lima-business/pom.xml 2012-02-22 16:49:09 UTC (rev 3345)
+++ trunk/lima-business/pom.xml 2012-02-23 16:09:21 UTC (rev 3346)
@@ -86,10 +86,6 @@
<groupId>org.apache.openejb</groupId>
<artifactId>openejb-ejbd</artifactId>
</dependency>
- <dependency>
- <groupId>org.apache.openejb</groupId>
- <artifactId>ejb31-api-experimental</artifactId>
- </dependency>
</dependencies>
<!-- ************************************************************* -->
Modified: trunk/lima-business/src/main/java/org/chorem/lima/service/LimaServiceFactory.java
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/service/LimaServiceFactory.java 2012-02-22 16:49:09 UTC (rev 3345)
+++ trunk/lima-business/src/main/java/org/chorem/lima/service/LimaServiceFactory.java 2012-02-23 16:09:21 UTC (rev 3346)
@@ -144,12 +144,13 @@
*/
public static void destroy() throws Exception {
- // destroy code (only in embedded mode)
+ /* not available in openejb 4
+ destroy code (only in embedded mode)
Assembler assembler = SystemInstance.get().getComponent(Assembler.class);
for (AppInfo appInfo : assembler.getDeployedApplications()) {
assembler.destroyApplication(appInfo.jarPath);
}
- OpenEJB.destroy();
+ OpenEJB.destroy();*/
}
/**
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2012-02-22 16:49:09 UTC (rev 3345)
+++ trunk/pom.xml 2012-02-23 16:09:21 UTC (rev 3346)
@@ -123,18 +123,12 @@
<dependency>
<groupId>org.apache.openejb</groupId>
<artifactId>javaee-api</artifactId>
- <version>5.0-3</version>
+ <version>6.0-3</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.apache.openejb</groupId>
- <artifactId>ejb31-api-experimental</artifactId>
- <version>${openEjbVersion}</version>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>org.apache.openejb</groupId>
<artifactId>openejb-ejbd</artifactId>
<version>${openEjbVersion}</version>
<scope>runtime</scope>
@@ -322,7 +316,7 @@
<topiaVersion>2.6.7</topiaVersion>
<jaxxVersion>2.5-SNAPSHOT</jaxxVersion>
<nuitonI18nVersion>2.4.1</nuitonI18nVersion>
- <openEjbVersion>3.1.4</openEjbVersion>
+ <openEjbVersion>4.0.0-beta-2</openEjbVersion>
<slf4jVersion>1.6.4</slf4jVersion>
<!-- license to use -->
@@ -350,7 +344,7 @@
<plugin>
<groupId>org.nuiton.jaxx</groupId>
- <artifactId>maven-jaxx-plugin</artifactId>
+ <artifactId>jaxx-maven-plugin</artifactId>
<version>${jaxxVersion}</version>
</plugin>
1
0
r3345 - in trunk/lima-business/src/test/java/org/chorem/lima/business: . accountingrules
by echatellier@users.chorem.org 22 Feb '12
by echatellier@users.chorem.org 22 Feb '12
22 Feb '12
Author: echatellier
Date: 2012-02-22 17:49:09 +0100 (Wed, 22 Feb 2012)
New Revision: 3345
Url: http://chorem.org/repositories/revision/lima/3345
Log:
Add test about Ledger account
Added:
trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/ImportServiceRuleFrTest.java
Modified:
trunk/lima-business/src/test/java/org/chorem/lima/business/ImportServiceImplTest.java
Modified: trunk/lima-business/src/test/java/org/chorem/lima/business/ImportServiceImplTest.java
===================================================================
--- trunk/lima-business/src/test/java/org/chorem/lima/business/ImportServiceImplTest.java 2012-02-22 15:32:20 UTC (rev 3344)
+++ trunk/lima-business/src/test/java/org/chorem/lima/business/ImportServiceImplTest.java 2012-02-22 16:49:09 UTC (rev 3345)
@@ -30,6 +30,7 @@
import java.text.ParseException;
import org.apache.commons.io.IOUtils;
+import org.chorem.lima.entity.Account;
import org.chorem.lima.entity.FiscalPeriod;
import org.chorem.lima.entity.FiscalPeriodImpl;
import org.junit.Assert;
@@ -55,6 +56,8 @@
*/
protected void importEBPData() throws IOException, LimaException, ParseException {
+ clearService.clearDatabase();
+
// create fiscal period (mandatory for import)
FiscalPeriod fiscalPeriod = new FiscalPeriodImpl();
fiscalPeriod.setBeginDate(df.parse("January 1, 2012"));
@@ -105,4 +108,32 @@
Assert.assertNotNull(accountService.getAccountByNumber("401TEEMP"));
Assert.assertNotNull(accountService.getAccountByNumber("411TECLI"));
}
+
+ /**
+ * Test que les comptes tiers sont correctement rattachés à l'arbre du
+ * plan comptable.
+ *
+ * @throws Exception
+ */
+ @Test
+ public void testImportAccountLedgerAccount() throws Exception {
+ importEBPData();
+
+ Account compteTiers = accountService.getAccountByNumber("4");
+ Account employeAccount = accountService.getAccountByNumber("401TEEMP");
+ Assert.assertEquals(compteTiers, employeAccount.getGeneralLedger());
+ }
+
+ /**
+ * Do some test on imported accounts.
+ *
+ * @throws Exception
+ */
+ @Test
+ public void testImportEntryBookEBP() throws Exception {
+ importEBPData();
+
+ Assert.assertNotNull(entryBookService.getEntryBookByCode("EV"));
+ Assert.assertNotNull(entryBookService.getEntryBookByCode("BQ"));
+ }
}
Added: trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/ImportServiceRuleFrTest.java
===================================================================
--- trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/ImportServiceRuleFrTest.java (rev 0)
+++ trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/ImportServiceRuleFrTest.java 2012-02-22 16:49:09 UTC (rev 3345)
@@ -0,0 +1,60 @@
+/*
+ * #%L
+ * $Id$
+ * $HeadURL$
+ * %%
+ * Copyright (C) 2012 Codelutin, Chatellier Eric
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this program. If not, see
+ * <http://www.gnu.org/licenses/gpl-3.0.html>.
+ * #L%
+ */
+
+package org.chorem.lima.business.accountingrules;
+
+import org.chorem.lima.business.ImportServiceImplTest;
+import org.chorem.lima.business.LimaConfig;
+import org.junit.Assert;
+import org.junit.BeforeClass;
+import org.junit.Test;
+
+/**
+ * Add configuration to add specific test on French rules set.
+ *
+ * (redo all test defined in ImportServiceImplTest).
+ *
+ * Plus ajout de test specific à la locale FR.
+ *
+ * @author chatellier
+ * @version $Revision$
+ *
+ * Last update : $Date$
+ * By : $Author$
+ */
+public class ImportServiceRuleFrTest extends ImportServiceImplTest {
+
+ @BeforeClass
+ public static void installFrenchRule() throws Exception {
+ LimaConfig.getInstance().setAccountingRule(FranceAccountingRules.class.getName());
+ }
+
+ /**
+ * Test une fois que la regles est correctement instanciée car
+ * elle peut être mise en cache dans {@link LimaConfig}.
+ */
+ @Test
+ public void testRuleInstance() {
+ Assert.assertTrue(LimaConfig.getInstance().getAccountingRules() instanceof FranceAccountingRules);
+ }
+}
Property changes on: trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/ImportServiceRuleFrTest.java
___________________________________________________________________
Added: svn:keywords
+ Author Date Id Revision HeadURL
1
0
r3344 - in trunk/lima-business/src: main/java/org/chorem/lima/business/ejb test/java/org/chorem/lima/business test/resources test/resources/ebp
by echatellier@users.chorem.org 22 Feb '12
by echatellier@users.chorem.org 22 Feb '12
22 Feb '12
Author: echatellier
Date: 2012-02-22 16:32:20 +0100 (Wed, 22 Feb 2012)
New Revision: 3344
Url: http://chorem.org/repositories/revision/lima/3344
Log:
Add ebp import test
Added:
trunk/lima-business/src/test/java/org/chorem/lima/business/ImportServiceImplTest.java
trunk/lima-business/src/test/resources/ebp/
trunk/lima-business/src/test/resources/ebp/comptes.txt
trunk/lima-business/src/test/resources/ebp/ecritures.txt
trunk/lima-business/src/test/resources/ebp/journaux.txt
Modified:
trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/ImportServiceImpl.java
trunk/lima-business/src/test/java/org/chorem/lima/business/AbstractLimaTest.java
trunk/lima-business/src/test/resources/log4j.properties
Modified: trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/ImportServiceImpl.java
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/ImportServiceImpl.java 2012-02-22 13:04:31 UTC (rev 3343)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/ImportServiceImpl.java 2012-02-22 15:32:20 UTC (rev 3344)
@@ -29,6 +29,8 @@
import au.com.bytecode.opencsv.bean.ColumnPositionMappingStrategy;
import au.com.bytecode.opencsv.bean.CsvToBean;
import org.apache.commons.lang3.StringUtils;
+import org.apache.commons.logging.Log;
+import org.apache.commons.logging.LogFactory;
import org.apache.pdfbox.exceptions.COSVisitorException;
import org.apache.pdfbox.pdmodel.PDDocument;
import org.apache.pdfbox.pdmodel.interactive.form.PDField;
@@ -131,6 +133,8 @@
@Stateless
public class ImportServiceImpl extends AbstractLimaService implements ImportService, ImportServiceLocal {
+ private static final Log log = LogFactory.getLog(ImportServiceImpl.class);
+
private TopiaContext rootContext;
@EJB
@@ -168,6 +172,9 @@
@Override
public String importEntriesFromEbp(String datas) throws LimaException {
+
+ long before = System.currentTimeMillis();
+
SimpleDateFormat epbDateFormat = new SimpleDateFormat("dd/MM/yyyy");
StringBuilder result = new StringBuilder();
@@ -292,11 +299,16 @@
result.append(_("lima-business.import.entryadded", entry.getDescription(), entry.getAmount()));
}
}
+
+ if (log.isInfoEnabled()) {
+ long after = System.currentTimeMillis();
+ log.info("Imported form EBP : " + list.size() + " entries in " + (after-before) + " ms");
+ }
// commit
commitTransaction(topiaContext);
- } catch (Exception eeeTE) {
- doCatch(topiaContext, eeeTE);
+ } catch (Exception ex) {
+ doCatch(topiaContext, ex);
} finally {
doFinally(topiaContext);
}
@@ -305,6 +317,8 @@
@Override
public String importAccountsChartFromEbp(String datas) throws LimaException {
+ long before = System.currentTimeMillis();
+
StringBuilder result = new StringBuilder();
TopiaContext topiaContext = beginTransaction(rootContext);
@@ -381,6 +395,12 @@
}
}
}
+
+ if (log.isInfoEnabled()) {
+ long after = System.currentTimeMillis();
+ log.info("Imported form EBP : " + list.size() + " accounts in " + (after-before) + " ms");
+ }
+
} catch (Exception eeeTE) {
doCatch(topiaContext, eeeTE);
} finally {
Modified: trunk/lima-business/src/test/java/org/chorem/lima/business/AbstractLimaTest.java
===================================================================
--- trunk/lima-business/src/test/java/org/chorem/lima/business/AbstractLimaTest.java 2012-02-22 13:04:31 UTC (rev 3343)
+++ trunk/lima-business/src/test/java/org/chorem/lima/business/AbstractLimaTest.java 2012-02-22 15:32:20 UTC (rev 3344)
@@ -45,12 +45,14 @@
import org.chorem.lima.business.ejbinterface.FinancialPeriodService;
import org.chorem.lima.business.ejbinterface.FinancialTransactionService;
import org.chorem.lima.business.ejbinterface.FiscalPeriodService;
+import org.chorem.lima.business.ejbinterface.ImportService;
import org.chorem.lima.business.ejbinterface.ReportService;
import org.chorem.lima.business.monitorable.AccountServiceMonitorable;
import org.chorem.lima.business.monitorable.EntryBookServiceMonitorable;
import org.chorem.lima.business.monitorable.FinancialPeriodServiceMonitorable;
import org.chorem.lima.business.monitorable.FinancialTransactionServiceMonitorable;
import org.chorem.lima.business.monitorable.FiscalPeriodServiceMonitorable;
+import org.chorem.lima.business.monitorable.ImportServiceMonitorable;
import org.chorem.lima.business.monitorable.ReportServiceMonitorable;
import org.chorem.lima.entity.Account;
import org.chorem.lima.entity.AccountImpl;
@@ -66,7 +68,6 @@
import org.chorem.lima.entity.LimaCallaoDAOHelper;
import org.chorem.lima.service.LimaServiceFactory;
import org.junit.After;
-import org.junit.Before;
import org.junit.BeforeClass;
import org.nuiton.i18n.I18n;
import org.nuiton.i18n.init.ClassPathI18nInitializer;
@@ -93,6 +94,7 @@
protected static FinancialTransactionService financialTransactionService;
protected static FiscalPeriodService fiscalPeriodService;
protected static ReportService reportService;
+ protected static ImportService importService;
/**
* This is a before class method, but junit will fail to run inherited
@@ -124,6 +126,7 @@
financialTransactionService = LimaServiceFactory.getService(FinancialTransactionServiceMonitorable.class);
fiscalPeriodService = LimaServiceFactory.getService(FiscalPeriodServiceMonitorable.class);
reportService = LimaServiceFactory.getService(ReportServiceMonitorable.class);
+ importService = LimaServiceFactory.getService(ImportServiceMonitorable.class);
}
/**
Added: trunk/lima-business/src/test/java/org/chorem/lima/business/ImportServiceImplTest.java
===================================================================
--- trunk/lima-business/src/test/java/org/chorem/lima/business/ImportServiceImplTest.java (rev 0)
+++ trunk/lima-business/src/test/java/org/chorem/lima/business/ImportServiceImplTest.java 2012-02-22 15:32:20 UTC (rev 3344)
@@ -0,0 +1,108 @@
+/*
+ * #%L
+ *
+ *
+ * $Id$
+ * $HeadURL$
+ * %%
+ * Copyright (C) 2012 Codelutin, Chatellier Eric
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Lesser Public License for more details.
+ *
+ * You should have received a copy of the GNU General Lesser Public
+ * License along with this program. If not, see
+ * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * #L%
+ */
+
+package org.chorem.lima.business;
+
+import java.io.IOException;
+import java.io.InputStream;
+import java.text.ParseException;
+
+import org.apache.commons.io.IOUtils;
+import org.chorem.lima.entity.FiscalPeriod;
+import org.chorem.lima.entity.FiscalPeriodImpl;
+import org.junit.Assert;
+import org.junit.Test;
+
+/**
+ * Test du service d'import en faisant des import/export EBP et xml.
+ *
+ * @author chatellier
+ * @version $Revision$
+ *
+ * Last update : $Date$
+ * By : $Author$
+ */
+public class ImportServiceImplTest extends AbstractLimaTest {
+
+ /**
+ * Import files available in src/test/resources/ebp.
+ *
+ * @throws IOException
+ * @throws LimaException
+ * @throws ParseException
+ */
+ protected void importEBPData() throws IOException, LimaException, ParseException {
+
+ // create fiscal period (mandatory for import)
+ FiscalPeriod fiscalPeriod = new FiscalPeriodImpl();
+ fiscalPeriod.setBeginDate(df.parse("January 1, 2012"));
+ fiscalPeriod.setEndDate(df.parse("December 31, 2012"));
+ fiscalPeriodService.createFiscalPeriod(fiscalPeriod);
+
+ // import files
+ InputStream accountStream = null;
+ InputStream entryBookStream = null;
+ InputStream entriesStream = null;
+ try {
+ accountStream = ImportServiceImplTest.class.getResourceAsStream("/ebp/comptes.txt");
+ String accountData = IOUtils.toString(accountStream, "ISO-8859-1");
+ importService.importAccountsChartFromEbp(accountData);
+ accountStream.close();
+
+ entryBookStream = ImportServiceImplTest.class.getResourceAsStream("/ebp/journaux.txt");
+ String entryBookData = IOUtils.toString(entryBookStream, "ISO-8859-1");
+ //importService.importAccountsChartFromEbp(entryBookData);
+ entryBookStream.close();
+
+ entriesStream = ImportServiceImplTest.class.getResourceAsStream("/ebp/ecritures.txt");
+ String entriesData = IOUtils.toString(entriesStream, "ISO-8859-1");
+ importService.importEntriesFromEbp(entriesData);
+ entriesStream.close();
+ }
+ finally {
+ IOUtils.closeQuietly(accountStream);
+ IOUtils.closeQuietly(entryBookStream);
+ IOUtils.closeQuietly(entriesStream);
+ }
+ }
+
+ /**
+ * Do some test on imported accounts.
+ *
+ * @throws Exception
+ */
+ @Test
+ public void testImportAccountsEBP() throws Exception {
+ importEBPData();
+
+ Assert.assertEquals(571, accountService.getAllAccounts().size());
+ Assert.assertEquals("Créances", accountService.getAccountByNumber("78174000").getLabel());
+ Assert.assertEquals(14, accountService.getChildrenAccounts(accountService.getAccountByNumber("1")).size());
+
+ // test employe and client
+ Assert.assertNotNull(accountService.getAccountByNumber("401TEEMP"));
+ Assert.assertNotNull(accountService.getAccountByNumber("411TECLI"));
+ }
+}
Property changes on: trunk/lima-business/src/test/java/org/chorem/lima/business/ImportServiceImplTest.java
___________________________________________________________________
Added: svn:keywords
+ Author Date Id Revision HeadURL
Added: trunk/lima-business/src/test/resources/ebp/comptes.txt
===================================================================
--- trunk/lima-business/src/test/resources/ebp/comptes.txt (rev 0)
+++ trunk/lima-business/src/test/resources/ebp/comptes.txt 2012-02-22 15:32:20 UTC (rev 3344)
@@ -0,0 +1,572 @@
+Numero,Intitule,Type,bLetManuel,bLetAuto,bLetAppro,bCentPhysique,bCentJournal,bCentGLivre,bGeleDebit,bGeleCredit,bNoEchAna,TypeRel,Categorie,CodeTVA,TypeTVA,Lettrage,Encours,Seuil,Remise,Escompte,Devise,RIB0NomBanque,RIB0AdrBanque,RIB0Agence,RIB0Guichet,RIB0Compte,RIB0CleRIB,RIB1NomBanque,RIB1AdrBanque,RIB1Agence,RIB1Guichet,RIB1Compte,RIB1CleRIB,RIB2NomBanque,RIB2AdrBanque,RIB2Agence,RIB2Guichet,RIB2Compte,RIB2CleRIB,AdresseCivilite,AdresseRaiSoc,AdresseAdresse,AdresseCodePostal,AdresseVille,AdressePays,NII,Contact0Interloc,Contact0Fonction,Contact0TelNumTel,Contact0TelNumFax,Contact0Infos,Contact1Interloc,Contact1Fonction,Contact1TelNumTel,Contact1TelNumFax,Contact1Infos,Contact2Interloc,Contact2Fonction,Contact2TelNumTel,Contact2TelNumFax,Contact2Infos,Contact3Interloc,Contact3Fonction,Contact3TelNumTel,Contact3TelNumFax,Contact3Infos,Contact4Interloc,Contact4Fonction,Contact4TelNumTel,Contact4TelNumFax,Contact4Infos,CodeRegle,NbJours,TypeJours,Limite,Grille1,Grille2,Grille3,SectGeo,SectAct,ObjCA,TailleCA,NbEmpl,Commercial,JoursMois,CptTva,CptCharge,bDecouvertAutorise,MntDecouvertAutorise,EMailTiers,WebSiteTiers,NatAchat,NatVente,NatDepense,NatRecette,NumCptBqCH,NumClearing,NumIBAN,LetPart
+44862000,TAXE PRO,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,AAB,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44861000,Etat charges a payer,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,AAD,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44860000,ETAT CHARGES A PAYER,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,AAF,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44700000,Autres imp�ts; taxes et versements assimil�s,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+447,Autres imp�ts; taxes et versements assimil�s,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44670000,Autres TVA � d�duire,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44600000,Obligations cautionn�es,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+446,Obligations cautionn�es,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44587000,Taxes sur le chiffre d'affaires sur factures � �tablir,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,3,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44587,Taxes sur le chiffre d'affaires sur factures � �tablir,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,3,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44586000,Taxes sur le chif d'af sur factures non parvenues,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,3,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44586,Taxes sur le chiffre d'affaires sur factures non parvenues,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,3,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44584000,TVA r�cup�r�e d'avance,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44584,TVA r�cup�r�e d'avance,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44583000,Remboursement de taxes sur le chiffre d'affaires demand�,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44583,Remboursement de taxes sur le chiffre d'affaires demand�,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44580000,TVA A REGUL,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,AAC,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44578000,Taxes assimil�es � la TVA,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44578,Taxes assimil�es � la TVA,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44572000,TVA encaiss�e,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,AAC,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+4457142,TVA Collect�e 5.5 Encais. CEE,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,2,2,2,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+4457141,TVA Collect�e 5.5 Encais. France,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,2,2,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+4457132,TVA Collect�e 19.6 Encais. CEE,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,2,1,2,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+4457131,TVA Collect�e 19.6 Encais. France,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,2,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+4457122,TVA Collect�e 5.5 D�bit CEE,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,2,2,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+4457121,TVA Collect�e 5.5 D�bit France,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,2,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+4457113,TVA,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+4457112,TVA Collect�e 19.6 D�bit CEE,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,2,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+4457111,TVA Collect�e 19.6 D�bit France,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44571000,TVA collect�e,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44571,TVA collect�e,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44568000,Taxes assimil�es � la TVA,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44568,Taxes assimil�es � la TVA,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44567000,Cr�dit de TVA � reporter,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44567,Cr�dit de TVA � reporter,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+4456642,TVA sur autres bien et services 5.5 Encais. CEE,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,2,2,2,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+4456641,TVA sur autres bien et services 5.5 Encais. France,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,2,2,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+4456632,TVA sur autres bien et services 19.6 Encais. CEE,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,2,1,2,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+4456631,TVA sur autres bien et services 19.6 Encais. France,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,2,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+4456622,TVA sur autres bien et services 5.5 D�bit CEE,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,2,2,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44566210,TVA sur autres bien et services 5.5 D�bit France,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,2,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+4456621,TVA sur autres bien et services 5.5 D�bit France,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,2,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+445662,achat cee,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44566130,TVA/ABS 2;1%,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+4456612,TVA sur autres bien et services 19.6 D�bit CEE,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,2,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+4456611,TVA sur autres bien et services 19.6 D�bit France,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44566000,TVA sur autres bien et services,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,AAQ,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44566,TVA sur autres bien et services,0,Non,Non,Non,Non,Oui,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44562000,TVA sur immobilisations,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,3,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44562,TVA sur immobilisations,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,3,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+4456,Taxes sur le chiffre d'affaires d�ductibles,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44551000,TVA � d�caisser,0,Oui,Oui,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,AAR,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Non,,,,
+44551,TVA � d�caisser,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Non,,,,
+4452,tva cee,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44500000,Etat - Taxes sur le chiffre d'affaires,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44870000,Imp�t d�grevements � recevoir ,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+455,Associ�s - Comptes courants,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Oui,,,,
+45500000,Associ�s - Comptes courants,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Oui,,,,
+46,DEBITEURS ET CREDITEURS DIVERS,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+462,Cr�ances sur cessions d'immobilisations,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+46200000,Cr�ances sur cessions d'immobilisations,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+46700000,Subvention Oseo � recevoir,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,AAA,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+46720000,D�biteurs et crediteurs divers,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,AAA,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+4687,Produits � recevoir,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+46870000,Produits � recevoir,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+47,COMPTES TRANSITOIRES OU D'ATTENTE,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+470,Compte d'attente,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Oui,,,,
+47000000,Compte d'attente,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Oui,,,,
+47200000,Compte d'attente,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Oui,,,,
+481,Charges � repartir sur plusieurs exercices,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+48100000,Charges � repartir sur plusieurs exercices,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+486,Charges constat�es d'avance,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+48600000,Charges constat�es d'avance,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+487,Produits constat�s d'avance,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+48700000,Produits constat�s d'avance,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+491,Provisions pour d�pr�ciation des comptes de clients,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+49100000,Provisions pour d�pr�ciation des comptes de clients,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+496,Provisions pour d�pr�ciation des comptes de d�biteurs divers,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+49600000,Provisions pour d�pr�ciation des comptes de d�biteurs divers,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+5,COMPTES FINANCIERS,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+50,VALEURS MOBILIERES DE PLACEMENT,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+50300000,VMP - Actions,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+51,BANQUES; ETABLISSEMENTS FINANCIERS ET ASSIMILES,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+511,Valeurs � I'encaissement,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+51100000,Valeurs � I'encaissement,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+512,Banques,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+51200000,Banques,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+5121,Reglement par ch�ques ,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+5122,R�glement par CB,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+5123,R�glement par LCR,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+5124,R�glement en especes,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+517,Autres organismes financiers,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+51700000,Autres organismes financiers,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+5186,Int�r�ts courus � payer,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+51860000,Int�r�ts courus � payer,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+519,Concours bancaires courant,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+51900000,Concours bancaires courant,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+5191,Cr�dit de mobilisation de cr�ances commerciales (CMCC),0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+51910000,Cr�dit de mobilisation de cr�ances commerciales (CMCC),0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+5193,Mobilisation de cr�ances n�es � l��tranger,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+51930000,Mobilisation de cr�ances n�es � l��tranger,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+53,CAISSE,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+531,Caisse si�ge social,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+53100000,Caisse si�ge social,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+54,REGIES D'AVANCES ET ACCREDITIFS,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+58,VIREMENTS INTERNES,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+445,Etat - Taxes sur le chiffre d'affaires,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44430000,IS � payer,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,AAD,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Non,,,,
+44410000,Cr�dit Impot Recherche � recevoir,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,AAA,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44400000,Etat - Imp�ts sur les b�n�fices,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Non,,,,
+444,Etat - Imp�ts sur les b�n�fices,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Non,,,,
+4424,Obligataires,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+43870000,URSSAF � recevoir,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+43860000,Autres charges � payer,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Oui,,,,
+4386,Autres charges � payer,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Oui,,,,
+43820000,charges sociales sur cong�s � payer,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,AAE,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Oui,,,,
+43740000,Pr�voyance,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,AAJ,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+42840000,Int�ressement � verser aux salari�s,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+43730000,Mutuelle,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,AAM,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Oui,,,,
+43722000,Retraite Cadre AGIRC,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,AAK,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+43720000,Retraite ARRCO,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,AAV,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Oui,,,,
+43710000,P�le Emploi,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,ABI,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Oui,,,,
+43700000,retraite,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Oui,,,,
+437,Autres organismes sociaux,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Oui,,,,
+43110000,Urssaf-csg-crds-forfait social,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,AAC,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Oui,,,,
+43100000,Urssaf,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,AAZ,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Oui,,,,
+431,S�curit� sociale,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Oui,,,,
+43,SECURITE SOCIALE ET AUTRES ORGANISMES SOCIAUX,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+42860000,Personnel -autres charges a payer,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,AAD,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Non,,,,
+42820000,Dettes provisionn�es pour cong�s � payer,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Non,,,,
+4282,Dettes provisionn�es pour cong�s � payer,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Non,,,,
+42800000,Personnel - Charges � payer et produits � recevoir,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Non,,,,
+428,Personnel - Charges � payer et produits � recevoir,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Non,,,,
+42100000,Personnel - R�mun�rations dues,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,ABW,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Non,,,,
+421,Personnel - R�mun�rations dues,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Non,,,,
+41810000,Facture � Emettre,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,AAA,0,0,0,0,,,,,,,,,,,,,,,,,,,,,FAE,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+40100000,Fournisseurs divers,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,AQF,0,0,0,0,,,,,,,,,,,,,,,,,,,,,Fournisseurs,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+4,COMPTES DE TIERS,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+39700000,Provisions pour d�pr�ciation des stocks de marchandises,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+397,Provisions pour d�pr�ciation des stocks de marchandises,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+39500000,Provisions pour d�pr�ciation des stocks de produits,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+395,Provisions pour d�pr�ciation des stocks de produits,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+39400000,Provisions pour d�pr�ciation des en-cours de production de s,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+394,Provisions pour d�pr�ciation des en-cours de production de s,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+39300000,Provisions pour d�pr�ciation des encours de production de bi,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+393,Provisions pour d�pr�ciation des encours de production de bi,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+39200000,Provisions pour d�pr�ciation des autres approvisionnements,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+392,Provisions pour d�pr�ciation des autres approvisionnements,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+39100000,Provisions pour d�pr�ciation des mati�res premi�res (et four,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+391,Provisions pour d�pr�ciation des mati�res premi�res (et four,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+37,STOCKS DE MARCHANDISES,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+35,STOCKS DE PRODUITS,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+34,EN-COURS DE PRODUCTION DE SERVICES,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+33,EN-COURS DE PRODUCTION DE BIENS,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+32,AUTRES APPROVISIONNEMENTS,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+31,MATIERES PREMIERES (et fournitures),1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+3,COMPTES DE STOCKS ET D'EN-COURS,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+29700000,Provisions pour d�pr�ciation des autres immobilisations fina,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+297,Provisions pour d�pr�ciation des autres immobilisations fina,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+29600000,Provisions pour d�pr�ciation des participations et cr�ances,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+296,Provisions pour d�pr�ciation des participations et cr�ances,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+29100000,Provisions pour d�pr�ciation des immobilisations corporelles,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+291,Provisions pour d�pr�ciation des immobilisations corporelles,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+29000000,Provisions pour d�pr�ciation des immobilisations incorporell,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+290,Provisions pour d�pr�ciation des immobilisations incorporell,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+28183100,AMORTISSEMENT MATERIEL,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+28150000,Installations techniques; mat�riel et outillage industriels,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+2815,Installations techniques; mat�riel et outillage industriels,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+28130000,Constructions m�me ventilation que celle du compte 213),0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+2813,Constructions m�me ventilation que celle du compte 213),0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+28100000,Amortissements des immobilisations corporelles,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+281,Amortissements des immobilisations corporelles,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+28010000,Frais �tablissement (m�me ventilation que celle du compte 20,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+2801,Frais �tablissement (m�me ventilation que celle du compte 20,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+28000000,Amortissements des immobilisations incorporelles,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+280,Amortissements des immobilisations incorporelles,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+27500000,D�p�ts et cautionnements vers�s,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+275,D�p�ts et cautionnements vers�s,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+27,AUTRES IMMOBILISATIONS FINANCIERES,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+23,IMMOBILlSATlONS EN COURS,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+21831000,MATERIEL INFORMATIQUE,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+21830000,Mat�riel de bureau et mat�riel informatique,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+2183,Mat�riel de bureau et mat�riel informatique,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+21820000,Mat�riel de transport,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+2182,Mat�riel de transport,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+21540000,Mat�riel industriel (1),0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+2154,Mat�riel industriel (1),0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+21,IMMOBlLlSATIONS CORPORELLES,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+20800000,Autres immobilisations incorporelles,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+208,Autres immobilisations incorporelles,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+20700000,Fonds commercial,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+207,Fonds commercial,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+20600000,Droit au bail,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+206,Droit au bail,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+20500000,Concessions et droits similaires; brevets; licences; marques,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+205,Concessions et droits similaires; brevets; licences; marques,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+20300000,Frais de recherche et de d�veloppement,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+203,Frais de recherche et de d�veloppement,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+20100000,Frais d'�tablissement,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+201,Frais d'�tablissement,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+2,COMPTES D'IMMOBILISATIONS,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+17100000,Dettes rattach�es a des participations (groupe),0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+171,Dettes rattach�es a des participations (groupe),0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+16900000,Primes de remboursement des obligations,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Oui,,,,
+169,Primes de remboursement des obligations,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Oui,,,,
+16884000,Sur emprunts aupr�s des �tablissements de cr�dit,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Oui,,,,
+16884,Sur emprunts aupr�s des �tablissements de cr�dit,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Oui,,,,
+16400000,Emprunts aupr�s des �tablissements de cr�dit,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Oui,,,,
+164,Emprunts aupr�s des �tablissements de cr�dit,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Oui,,,,
+16300000,Autres emprunts obligataires,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Oui,,,,
+163,Autres emprunts obligataires,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Oui,,,,
+16,EMPRUNTS ET DETTES ASSIMILEES,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+15820000,Provisions pour charges sociales et fiscales sur cong�s � pa,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+1582,Provisions pour charges sociales et fiscales sur cong�s � pa,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+15100000,Provisions pour risques,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+151,Provisions pour risques,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+15,PROVlSlONS POUR RISQUES ET CHARGES,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+14800000,Autres provisions r�glement�es,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+148,Autres provisions r�glement�es,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+14700000,Plus-values r�investies,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+147,Plus-values r�investies,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+14600000,Provision sp�ciale de r��valuation,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+146,Provision sp�ciale de r��valuation,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+14500000,Amortissements d�rogatoires,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+145,Amortissements d�rogatoires,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+14,PROVISIONS REGLEMENTEES,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+12900000,R�sultat de l'exercice (perte),0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+129,R�sultat de l'exercice (perte),0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+12000000,R�sultat de l'exercice (b�n�fice),0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+120,R�sultat de l'exercice (b�n�fice),0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+12,RESULTAT NET DE L'EXERCICE (b�n�fice ou perte),1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+11000000,report a nouveau,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+11,REPORT A NOUVEAU (solde cr�diteur ou d�biteur),1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+10800000,Compte de l'exploitant,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Oui,,,,
+108,Compte de l'exploitant,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Oui,,,,
+10680000,Autres r�serves,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+1068,Autres r�serves,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+10640000,R�serves r�glementes,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+1064,R�serves r�glementes,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+10630000,R�serves statutaires ou contractuelles,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+1063,R�serves statutaires ou contractuelles,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+10620000,R�serves indisponibles,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+1062,R�serves indisponibles,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+10611000,r�serve l�gale,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+10610000,R�serve l�gale,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+1061,R�serve l�gale,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+10500000,Ecarts de r��valuation,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+105,Ecarts de r��valuation,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+10131000,Capital non amorti,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+10100000,Capital,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+101,Capital,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+1,COMPTES DE CAPITAUX,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+44865000,Etat charges � payer formation prof,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,AAC,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+581,Virements internes,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+58100000,Virements internes,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+590,Provisions pour d�pr�ciation des valeurs mobili�res de place,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+59000000,Provisions pour d�pr�ciation des valeurs mobili�res de place,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+6,COMPTES DE CHARGES,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+60,ACHATS (sauf 603),1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+601,Achats stock�s - Mati�res premi�res (et fournitures),0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60100000,Achats stock�s - Mati�res premi�res (et fournitures),0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60110000,ACHATS MATERIELS INFORMATIQUES,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60111,Achats stock�s - Mati�res premi�res France,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60111000,Achats stock�s - Mati�res premi�res France,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60112,Achats stock�s - Mati�res premi�res CEE,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,2,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60112000,Achats stock�s - Mati�res premi�res CEE,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,2,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+6022,Fournitures consommables,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60220000,Fournitures consommables,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60221000,achat carburant,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60224000,Fourniture de magasin,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60225000,Fourniture de bureau,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60227000,Frais postaux,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+6026,Emballages,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60260000,Emballages,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+603,VARIATION DES STOCKS (approvisionnements et marchandises),1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60300000,VARIATION DES STOCKS (approvisionnements et marchandises),1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+6031,Variation des stocks de mati�res premi�res (et fournitures),0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60310000,Variation des stocks de mati�res premi�res (et fournitures),0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+6037,Variation des stocks de marchandises,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60370000,Variation des stocks de marchandises,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60400000,Prestations de services,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+605,Achat de materiel; equipement et travaux,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60510000,achat mat�riel informatique,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+606,Achats non stockes de mati�res et fournitures,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60600000,Achats non stockes de mati�res et fournitures,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60611000,�l�ctricit�,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60612000,gaz,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60620000,Repas,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60630000,Petit �quipement,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60635000,frais d'am�nagement,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60640000,fournitures administratives,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60660000,CARBURANTS,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+607,Achats de marchandises,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,1,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60700000,Achats de marchandises,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+6071,Achat marchandise CEE,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,2,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60710000,achats divers,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60711000,Achats de marchandises France,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60712000,Achats de marchandises CEE,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,2,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+6072,Achats en francise,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,7,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+608,Frais accessoires d'achat,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60800000,Frais accessoires d'achat,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60811,Frais accessoires d'achat France,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60811000,Frais accessoires d'achat France,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60812,Frais accessoires d'achat CEE,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,2,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60812000,Frais accessoires d'achat CEE,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,2,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+609,Rabais; remises et ristournes obtenus sur achats,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60900000,Rabais; remises et ristournes obtenus sur achats,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+60940000,RRR sur prestations de services,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+61,Services ext�rieurs,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+611,Sous-traitance g�n�rale,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+61100000,Sous-traitance g�n�rale,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+612,Redevances de cr�dit-bail,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+61200000,Redevances de cr�dit-bail,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+613,Locations,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+61300000,Locations,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+61320000,loyer,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+61330000,location de v�hicule,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+61350000,location mobili�re,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+6136,Malis sur emballages,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+61360000,Malis sur emballages,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+614,Charges locatives et de copropri�t�,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+61400000,Charges locatives et de copropri�t�,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+615,Entretien et r�parations,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+61500000,Entretien et r�parations,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+61520000,Entretien et r�parations sur biens immo,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+61560000,entretien locaux,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+616,Primes d'assurance,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+61600000,Primes d'assurance,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+61610000,assurance v�hicule,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+61638000,assurance sur autre bien,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+61641000,ASSURANCE RESPONSABILITE CIVILE,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+61810000,achat de documentation,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+61830000,achat revue,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+61850000,frais de formation,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+61851000,Conf�rence,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+62,Autres services ext�rieurs,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+621,Personnel ext�rieur � l'entreprise,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+62100000,Personnel ext�rieur � l'entreprise,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+62150000,Indemnit�s Stagiaires,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+622,R�mun�rations interm�diaires et honoraires,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+62200000,R�mun�rations interm�diaires et honoraires,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+62210000,Cotisations; Adh�sions; Dons,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+6226,Honoraires,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+62260000,Honoraires expert-comptable,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+62268000,Honoraires Divers,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+62269000,R�mun�rations interm�diaires,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+62281000,cotisations,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+623,Publicit�; publications; relations publiques,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+62300000,Publicit�; publications; relations publiques,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+62330000,Foires et Salons,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+62340000,Cadeaux,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+62360000,catalogues et imprim�s,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+62380000,divers (dons;pourboires...),0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+624,Transports de biens et transports collectifs du personnel,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+62400000,Transports de biens et transports collectifs du personnel,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+62410000,transport sur achat,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+625,D�placements; missions et r�ceptions,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+62500000,D�placements; missions et r�ceptions,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+62510000,voyages et d�placements,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+62520000,conf�rence,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+626,Frais postaux et frais de t�l�communications,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+62600000,Frais postaux et frais de t�l�communications,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+62610000,forfait internet,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+62620000,T�l�communications,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+62620100,INTERNET,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+627,Services bancaires et assimiles,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+62700000,Services bancaires et assimiles,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+6272,Commissions et frais sur �mission d'emprunts,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+62720000,Commissions et frais sur �mission d'emprunts,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+6275,Frais sur effets (commissions d'endos...),0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+62750000,Frais sur effets (commissions d'endos...),0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+62810000,COTISATIONS,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+63,IMPOTS; TAXES ET VERSEMENTS,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+63120000,TAXE D APPRENTISSAGE,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+63130000,TFC 2033,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+63140000,Fongecif,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+63150000,fafiec,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+633,Imp�ts; taxes et versements assimiles sur r�mun�rations (aut,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+63300000,Imp�ts; taxes et versements assimiles sur r�mun�rations (aut,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+63330000,Formation Professionelle Continue,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+6334,Participation des employeurs � l'effort de construction,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+63340000,Participation des employeurs � l'effort de construction,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+635,Autres imp�ts taxes et versements assimiles (administration,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+63500000,Autres imp�ts taxes; versements assimiles (administration),0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+63510000,IFA (Imposition Forfaitaire Annuelle),0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+63511000,TAXE PROFESSIONELLE,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+63512000,Taxe Fonciere,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+63700000,versement cgpme,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+6371,Contribution sociale de solidarit� � la charge des soci�t�s,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+63710000,Contribution sociale de solidarit� � la charge des soci�t�s,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+641,R�mun�rations du personnel,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+64100000,R�mun�rations du personnel,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+64110000,Indemnit� stagiaire,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+64110200,Maladie; maternit�,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+6412,Cong�s payes,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+64120000,Cong�s payes,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+64122000,cong�s � payer,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+64130000,PRIMES ET PARTICIPATION,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+6414,Indemnit�s et avantages divers,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+64140000,Indemnit�s et avantages divers,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+64141000,,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+644,R�mun�ration du travail de l'exploitant,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+64400000,R�mun�ration du travail de l'exploitant,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+645,Charges de s�curit� sociale et de pr�voyance,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+64500000,Charges de s�curit� sociale et de pr�voyance,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+6451,Cotisations � l'URSSAF,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+64510000,Cotisations � l'URSSAF,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+6453,Cotisations aux caisses de retraites,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+64530000,Cotisations aux caisses de retraites ARRCO,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+64533000,Cotisation AGIRC,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+6454,Cotisations aux ASSEDIC,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+64540000,Cotisations aux ASSEDIC,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+64550000,Cotisations mutuelle,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+64580000,Cotisation Prevoyance Mederic,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+64581000,Provision pour cong�s � payer,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+646,Cotisations sociales personnelles de l'exploitant,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+64600000,Cotisations sociales personnelles de l'exploitant,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+64700000,abondements pee,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+64710000,Abond PEI et PERCOI,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+64750000,MEDECINE DU TRAVAIL,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+64810000,Interessement,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+65,AUTRES CHARGES DE GESTION COURANTE,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+651,Redevances pour concessions; brevets; licences; marques; pro,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+65100000,Redevances pour concessions; brevets; licences; marques; pro,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+654,Pertes sur cr�ances irr�couvrables,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+65400000,Pertes sur cr�ances irr�couvrables,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+65440000,Cr�ances des exercices ant�rieurs,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+655,Quote-part de r�sultat sur op�rations faites en commun,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+65500000,Quote-part de r�sultat sur op�rations faites en commun,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+65800000,Frais divers gestion,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+66,CHARGES FINANCIERES,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+6611,Int�r�ts des emprunts et dettes,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Non,,,,
+66110000,Int�r�ts des emprunts et dettes,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Non,,,,
+6615,Int�r�ts des comptes courants et des d�p�ts cr�diteurs,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Non,,,,
+66150000,Int�r�ts des comptes courants et des d�p�ts cr�diteurs,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Non,,,,
+6616,Int�r�ts bancaires et sur op�rations de financement (escompt,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Non,,,,
+66160000,Int�r�ts bancaires et sur op�rations de financement (escompt,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Non,,,,
+66165000,Interets bancaires,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Non,,,,
+6617,Int�r�ts des obligations cautionn�es,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Non,,,,
+66170000,Int�r�ts des obligations cautionn�es,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Oui,Non,,,,
+665,Escomptes accord�s,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Oui,Non,Oui,,,,
+66500000,Escomptes accord�s,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Oui,Non,Oui,,,,
+6688,Pertes de change ou de conversion,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+66880000,Pertes de change ou de conversion,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+67,CHARGES EXCEPTIONNELLES,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+67100000,Charges exceptionnelles sur op�rations de gestion,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+675,Valeurs comptables des �l�ments d'actif c�d�s,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+67520000,Val nette compt immo ced�es ,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+681,Dotations aux amort. - Charges d'exploitation,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+68100000,Dotations aux amort. - Charges d'exploitation,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+6811,Dotations aux amortissements sur immobilisations incorporell,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+68110000,Dotations aux amortissements sur immobilisations incorporell,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+68111,Dotations aux amort. immobilisations incorporelles,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+68112000,Dot aux amort des immo corporelles,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+68112600,DOTATION AMORT MATERIEL,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+6812,Dotations aux amortissements des charges d'exploitation � r�,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+68120000,Dotations aux amortissements des charges d'exploitation � r�,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+6815,Dotations aux provisions pour risques et charges d'exploitat,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+68150000,Dotations aux provisions pour risques et charges d'exploitat,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+68161,Dotations provisions d�pr�c. immos incorporelles,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+68162,Dotations provisions d�pr�c. immos corporelles,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+68173,Stocks et en-cours,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+68173000,Stocks et en-cours,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+68174,Cr�ances,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+68174000,Cr�ances,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+686,Dotations aux amortissements et aux provisions - Charges fin,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+68600000,Dotations aux amortissements et aux provisions - Charges fin,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+6861,Dotations aux amortissements des primes de remboursement des,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+68610000,Dotations aux amortissements des primes de remboursement des,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+6866,Dotation aux provisions pour d�pr�ciation des �l�ments finan,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+68660000,Dotation aux provisions pour d�pr�ciation des �l�ments finan,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+687,Dotations aux amortissements et aux provisions - Charges exc,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+68700000,Dotations aux amortissements et aux provisions - Charges exc,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+6871,Dotations aux amortissements exceptionnels sur immobilisatio,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+68710000,Dotations aux amortissements exceptionnels sur immobilisatio,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+68725,Amortissements d�rogatoires,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+68725000,Amortissements d�rogatoires,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+691,Participation des salaries aux fruits de l'expansion,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+69100000,Participation des salaries aux fruits de l'expansion,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+695,Imp�ts sur les b�n�fices,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+69500000,Imp�ts sur les b�n�fices,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+697,Imposition forfaitaire annuelle des soci�t�s,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+69700000,Imposition forfaitaire annuelle des soci�t�s,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+699,Produits - Reports en arri�re des d�ficits,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+69900000,Produits - Reports en arri�re des d�ficits,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+7,COMPTES DE PRODUITS,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+701,Ventes de produits finis,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Oui,Non,Oui,,,,
+70100000,Ventes de produits finis,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Oui,Non,Oui,,,,
+70111,Ventes de produits finis France,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Oui,Non,Oui,,,,
+70111000,Ventes de produits finis France,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Oui,Non,Oui,,,,
+70112,Ventes de produits finis CEE,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,2,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Oui,Non,Oui,,,,
+70112000,Ventes de produits finis CEE,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,2,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Oui,Non,Oui,,,,
+706,Prestations de services,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Oui,Non,Oui,,,,
+70600000,Prestations de services,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Oui,Non,Oui,,,,
+70611,Prestations de services France,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Oui,Non,Oui,,,,
+70611000,Prestations de services France,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Oui,Non,Oui,,,,
+70612,Prestations de services CEE,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,2,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Oui,Non,Oui,,,,
+70612000,Prestations de services CEE,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,2,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Oui,Non,Oui,,,,
+707,Ventes de marchandises,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Oui,Non,Oui,,,,
+70700000,Ventes de marchandises,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Oui,Non,Oui,,,,
+70711,Ventes de marchandises France,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Oui,Non,Oui,,,,
+70711000,Ventes de marchandises France,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Oui,Non,Oui,,,,
+70712,Ventes de marchandises CEE,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,2,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Oui,Non,Oui,,,,
+70712000,Ventes de marchandises CEE,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,2,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Oui,Non,Oui,,,,
+70713,Compte cr�� pendant import,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Oui,Non,Oui,,,,
+708,Produits des activit�s annexes,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Oui,Non,Oui,,,,
+70800000,Produits des activit�s annexes,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Oui,Non,Oui,,,,
+7085,Ports et frais accessoires factures,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Oui,Non,Oui,,,,
+70850000,Ports et frais accessoires factures,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Oui,Non,Oui,,,,
+7086,Bonis sur reprises d'emballages consignes,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Oui,Non,Oui,,,,
+70860000,Bonis sur reprises d'emballages consignes,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Oui,Non,Oui,,,,
+7088,Autres produits activit�s annexes (cessions d'approvisionnem,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+70880000,Autres produits activit�s annexes (cessions d'approvisionnem,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+709,Rabais; remises et ristournes accord�es par l'entreprise,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Oui,Non,Oui,,,,
+70900000,Rabais; remises et ristournes accord�es par l'entreprise,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Oui,Non,Oui,,,,
+713,VARIATION DES STOCKS (en-cours de production; produits),1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+71300000,VARIATION DES STOCKS (en-cours de production; produits),1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+7133,Variation des en-cours de production de biens,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+71330000,Variation des en-cours de production de biens,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+7134,Variation des en-cours de production de services,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+71340000,Variation des en-cours de production de services,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+7135,Variation des stocks de produits,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+71350000,Variation des stocks de produits,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+72,PRODUCTION IMMOBILISEE,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+721,Immobilisations incorporelles,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+72100000,Immobilisations incorporelles,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+74,SUBVENTlONS D'EXPLOITATION,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+74000000,Subventions d'exploitation recues,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+75,AUTRES PRODUITS DE GESTION COURANTE,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+758,Produits divers de gestion courante,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+75800000,Produits divers de gestion courante,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+76,PRODUITS FINANCIERS,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+765,Escomptes obtenus,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+76500000,Escomptes obtenus,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Oui,Non,Oui,Non,,,,
+7688,Gains de change ou de conversion,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+76880000,Gains de change ou de conversion,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+77,PRODUITS EXCEPTIONNELS,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+775,Produits des cessions �l�ments d'actif,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+77500000,Produits des cessions �l�ments d'actif,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+78,REPRISES SUR AMORTISSEMENTS ET PROVISIONS,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+781,Reprises sur amortissements et provisions (� inscrire dans l,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+78100000,Reprises sur amortissements et provisions (� inscrire dans l,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+78161,Reprises prov. d�pr�c. immos incorporelles,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+78162,Reprises prov. d�pr�c. immos corporelles,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+78173,Stocks et en-cours,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+78173000,Stocks et en-cours,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+78174,Cr�ances,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+78174000,Cr�ances,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+786,Reprises sur provisions a inscrire dans les produits financi,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+78600000,Reprises sur provisions a inscrire dans les produits financi,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+7866,Reprises sur provisions pour d�pr�ciation des �l�ments finan,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+78660000,Reprises sur provisions pour d�pr�ciation des �l�ments finan,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+787,Reprises sur provisions (� inscrire dans les produits except,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+78700000,Reprises sur provisions (� inscrire dans les produits except,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+78725,Reprises sur provisions - Amort. d�rogatoires,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+79,TRANSFERTS DE CHARGES,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+791,Transfert de charges d'exploitation,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+79100000,Transfert de charges d'exploitation,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+79120000,Transferts charges d'exploitation,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+8,COMPTES SPECIAUX,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+80,ENGAGEMENTS HORS BILAN,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+801,Engagements donn�s par l'entreprise,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+80100000,Engagements donn�s par l'entreprise,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+802,Engagements re�us par l'entreprise,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+80200000,Engagements re�us par l'entreprise,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+809,Contrepartie des engagements,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+80900000,Contrepartie des engagements,0,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+88,RESULTAT EN INSTANCE D'AFFECTATION,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+89,BILAN,1,Non,Non,Non,Non,Non,Non,Non,Non,Non,0,1,1,1,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+401TEEMP,NF Test Employe ,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,AAR,0,0,0,0,,,,,,,,,,,,,,,,,,,,,NF Test Employe,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
+411TECLI,Test Client,0,Oui,Oui,Oui,Non,Non,Non,Non,Non,Non,0,1,1,1,ABB,0,0,0,0,,,,,,,,,,,,,,,,,,,,,Test Client,,,,FRANCE,,,,,,,,,,,,,,,,,,,,,,,,,,,,0,0,0,,,,,,0,0,0,,0,,,0,0,,,Non,Non,Non,Non,,,,
\ No newline at end of file
Added: trunk/lima-business/src/test/resources/ebp/ecritures.txt
===================================================================
--- trunk/lima-business/src/test/resources/ebp/ecritures.txt (rev 0)
+++ trunk/lima-business/src/test/resources/ebp/ecritures.txt 2012-02-22 15:32:20 UTC (rev 3344)
@@ -0,0 +1,20 @@
+Journal,Compte,DatEcr,DatVal,DatSai,DatEch,Poste,Piece,NumDoc,Libelle,Debit,Credit,Devise,TauxDevise,DevDebit,DevCredit,CDebit,CCredit,Lettre,Rapp,CodReg,Cheque,CptTVA,MoisTVA,GTypEcr,GNumEcr,DateReleve,DatLet,SoftImport,RefBVR,NumAdhBVR,DatderGen,LetPart,bSaisieKM
+AC,62610000,03/01/2010,,12/01/2010,03/01/2010,,600,,Téléphone,29.33,0,,0,0,0,0,0,,,,0,,,0x00000000,0,,,,,,,,Non
+AC,44566000,03/01/2010,,12/01/2010,03/01/2010,,600,,Téléphone,3.5,0,,0,0,0,0,0,,,,0,,,0x00000000,0,,29/03/2010,,,,,,Non
+AC,40104200,03/01/2010,,12/01/2010,03/01/2010,,600,,Téléphone,0,32.83,,0,0,0,0,0,ABR,,,0,,,0x00000000,0,,19/01/2010,,,,,,Non
+AC,62510000,14/01/2010,,12/02/2010,14/01/2010,,605abc,,Hébergement,699.85,0,,0,0,0,0,0,,,,0,,,0x00000000,0,,,,,,,,Non
+AC,44566000,14/01/2010,,12/02/2010,14/01/2010,,605abc,,Hébergement,3.35,0,,0,0,0,0,0,,,,0,,,0x00000000,0,,29/03/2010,,,,,,Non
+AC,40100000,14/01/2010,,12/02/2010,14/01/2010,,605abc,,Hébergement,0,703.2,,0,0,0,0,0,APM,,,0,,,0x00000000,0,,15/02/2010,,,,,,Non
+AC,62510000,30/01/2010,,15/02/2010,30/01/2010,,401NF,,TE-20100131-1,125.78,0,,0,0,0,0,0,,,,0,,,0x00000000,0,,,,,,,,Non
+AC,62610000,30/01/2010,,15/02/2010,30/01/2010,,401NF,,TE-20100131-1,26.95,0,,0,0,0,0,0,,,,0,,,0x00000000,0,,,,,,,,Non
+AC,44566000,30/01/2010,,15/02/2010,30/01/2010,,401NF,,TE-20100131-1,14.71,0,,0,0,0,0,0,,,,0,,,0x00000000,0,,29/03/2010,,,,,,Non
+AC,401TEEMP,30/01/2010,,15/02/2010,30/01/2010,,401NF,,TE-20100131-1,0,167.44,,0,0,0,0,0,AAP,,,0,,,0x00000000,0,,16/02/2010,,,,,,Non
+BQ,51200000,08/02/2010,,16/02/2010,08/02/2010,,VIRT,,NF Test Employe,0,167.44,,0,0,0,0,0,,,,0,,,0x00000000,0,,,,,,,,Non
+BQ,401TEEMP,08/02/2010,,16/02/2010,08/02/2010,,VIRT,,NF Test Employe,167.44,0,,0,0,0,0,0,AAP,,,0,,,0x00000000,0,,16/02/2010,,,,,,Non
+AC,60630000,24/01/2010,,15/02/2010,24/01/2010,,609,,Petit équipement,26.9,0,,0,0,0,0,0,,,,0,,,0x00000000,0,,,,,,,,Non
+AC,44566000,24/01/2010,,15/02/2010,24/01/2010,,609,,Petit équipement,5.27,0,,0,0,0,0,0,,,,0,,,0x00000000,0,,29/03/2010,,,,,,Non
+AC,40100000,24/01/2010,,15/02/2010,24/01/2010,,609,,Petit équipement,0,32.17,,0,0,0,0,0,APN,,,0,,,0x00000000,0,,16/02/2010,,,,,,Non
+BQ,40100000,15/02/2010,,16/02/2010,15/02/2010,,VIRT,,MonFournisseur,32.17,0,,0,0,0,0,0,APN,,,0,,,0x00000000,0,,16/02/2010,,,,,,Non
+BQ,51200000,15/02/2010,,16/02/2010,15/02/2010,,VIRT,,MonFournisseur,0,32.17,,0,0,0,0,0,,,,0,,,0x00000000,0,,,,,,,,Non
+BQ,411TECLI,20/04/2010,,19/04/2010,20/04/2010,,VIRT,,Test Client,0,5395.44,,0,0,0,0,0,AAV,,,0,,,0x00000000,0,,19/04/2010,,,,,,Non
+VE,411TECLI,15/03/2010,,26/03/2010,15/03/2010,,FA100315-01,,Test Client,5395.44,0,,0,0,0,0,0,AAV,,,0,,,0x00000000,0,,19/04/2010,,,,,,Non
Added: trunk/lima-business/src/test/resources/ebp/journaux.txt
===================================================================
--- trunk/lima-business/src/test/resources/ebp/journaux.txt (rev 0)
+++ trunk/lima-business/src/test/resources/ebp/journaux.txt 2012-02-22 15:32:20 UTC (rev 3344)
@@ -0,0 +1,10 @@
+Code,Type,Libelle,TypePiece,NextPiece,CpteType,CpteCompte,Contact,RIBNomBanque,RIBAdrBanque,RIBAgence,RIBGuichet,RIBCompte,RIBCleRIB,Lcr,Preleve,MemoDateCreat,MemoDateModif,Devise,CompteTP,NumCptBqCH,NumClearing,bSaisieKM
+AC,0,Achats de marchandises,1,709,0,,,,,,,,,,,28/08/2003,13/09/2010,,,,,Oui
+AN,4,A-nouveaux,0,AN,0,,,,,,,,,,,28/08/2003,01/07/2010,,,,,Non
+BQ,2,Notre Banque,1,VIRT,1,51200000,,,,,,,,,,28/08/2003,21/09/2010,,,,,Oui
+CA,2,Caisse,0,,0,,,,,,,,,,,28/08/2003,28/08/2003,,,,,Oui
+INVR,3,,0,IM2,0,,,,,,,,,,,,14/09/2010,,,,,Oui
+JT,3,Ecritures Expert comptable,0,JT,0,,,,,,,,,,,,25/05/2009,,,,,Oui
+OD,3,Op�rations diverses,0,Interesst,0,,,,,,,,,,,28/08/2003,14/09/2010,,,,,Oui
+ODR,3,Op�r. diverses (assistants),0,IM3-5,0,,,,,,,,,,,25/05/2009,25/05/2009,,,,,Oui
+VE,1,Ventes et prestations,0,FA100907-01,0,,,,,,,,,,,28/08/2003,09/09/2010,,,,,Oui
Modified: trunk/lima-business/src/test/resources/log4j.properties
===================================================================
--- trunk/lima-business/src/test/resources/log4j.properties 2012-02-22 13:04:31 UTC (rev 3343)
+++ trunk/lima-business/src/test/resources/log4j.properties 2012-02-22 15:32:20 UTC (rev 3344)
@@ -31,4 +31,4 @@
log4j.appender.stdout.layout.ConversionPattern=%5p [%t] (%F:%L) %M - %m%n
# package level
-#log4j.logger.org.chorem.lima=DEBUG
\ No newline at end of file
+log4j.logger.org.chorem.lima=INFO
\ No newline at end of file
1
0
r3343 - in trunk/lima-swing/src: main/java/org/chorem/lima/ui test/java
by echatellier@users.chorem.org 22 Feb '12
by echatellier@users.chorem.org 22 Feb '12
22 Feb '12
Author: echatellier
Date: 2012-02-22 14:04:31 +0100 (Wed, 22 Feb 2012)
New Revision: 3343
Url: http://chorem.org/repositories/revision/lima/3343
Log:
Remove empty packages
Removed:
trunk/lima-swing/src/main/java/org/chorem/lima/ui/renderers/
trunk/lima-swing/src/test/java/org/
1
0
r3342 - trunk/lima-business/src/test/java/org/chorem/lima/business
by echatellier@users.chorem.org 22 Feb '12
by echatellier@users.chorem.org 22 Feb '12
22 Feb '12
Author: echatellier
Date: 2012-02-22 14:01:41 +0100 (Wed, 22 Feb 2012)
New Revision: 3342
Url: http://chorem.org/repositories/revision/lima/3342
Log:
Refactor test to not inject test data for all test and allow import test to use their own data
Modified:
trunk/lima-business/src/test/java/org/chorem/lima/business/AbstractLimaTest.java
trunk/lima-business/src/test/java/org/chorem/lima/business/AccountServiceImplTest.java
trunk/lima-business/src/test/java/org/chorem/lima/business/EntryBookServiceImplTest.java
trunk/lima-business/src/test/java/org/chorem/lima/business/FinancialPeriodServiceImplTest.java
trunk/lima-business/src/test/java/org/chorem/lima/business/FinancialTransactionServiceImplTest.java
trunk/lima-business/src/test/java/org/chorem/lima/business/FiscalPeriodServiceImplTest.java
trunk/lima-business/src/test/java/org/chorem/lima/business/ReportServiceImplTest.java
Modified: trunk/lima-business/src/test/java/org/chorem/lima/business/AbstractLimaTest.java
===================================================================
--- trunk/lima-business/src/test/java/org/chorem/lima/business/AbstractLimaTest.java 2012-02-22 13:01:01 UTC (rev 3341)
+++ trunk/lima-business/src/test/java/org/chorem/lima/business/AbstractLimaTest.java 2012-02-22 13:01:41 UTC (rev 3342)
@@ -197,11 +197,17 @@
/**
* Create a basic database with some objects to reuse then in subtests.
*
+ * Not called by default (<code>@Before</code>) to allow init test with
+ * CSV or EBP import.
+ *
* @throws LimaException
* @throws ParseException
*/
- @Before
- public void initTestDatabase() throws LimaException, ParseException {
+ protected void initTestDatabase() throws LimaException, ParseException {
+
+ // clear database
+ clearService.clearDatabase();
+
initTestAccounts();
initTestTransactions();
}
@@ -213,8 +219,6 @@
* @throws ParseException
*/
protected void initTestAccounts() throws LimaException, ParseException {
- // clear database
- clearService.clearDatabase();
// creation d'un plan compatble de test
Account classFinancier = new AccountImpl();
@@ -226,6 +230,16 @@
accountVmp.setAccountNumber("50");
accountVmp.setLabel("Valeurs mobilières de placement");
accountService.createAccount(classFinancier, accountVmp);
+
+ Account accountPel = new AccountImpl();
+ accountPel.setAccountNumber("501");
+ accountPel.setLabel("Parts dans des entreprises liées");
+ accountService.createAccount(accountVmp, accountPel);
+
+ Account accountAP = new AccountImpl();
+ accountAP.setAccountNumber("502");
+ accountAP.setLabel("Actions propres");
+ accountService.createAccount(accountVmp, accountAP);
Account accountBefa = new AccountImpl();
accountBefa.setAccountNumber("51");
Modified: trunk/lima-business/src/test/java/org/chorem/lima/business/AccountServiceImplTest.java
===================================================================
--- trunk/lima-business/src/test/java/org/chorem/lima/business/AccountServiceImplTest.java 2012-02-22 13:01:01 UTC (rev 3341)
+++ trunk/lima-business/src/test/java/org/chorem/lima/business/AccountServiceImplTest.java 2012-02-22 13:01:41 UTC (rev 3342)
@@ -25,11 +25,13 @@
package org.chorem.lima.business;
+import java.text.ParseException;
import java.util.List;
import org.chorem.lima.entity.Account;
import org.chorem.lima.entity.AccountImpl;
import org.junit.Assert;
+import org.junit.Before;
import org.junit.Test;
/**
@@ -44,6 +46,11 @@
*/
public class AccountServiceImplTest extends AbstractLimaTest {
+ @Before
+ public void initTest() throws LimaException, ParseException {
+ initTestDatabase();
+ }
+
/**
* Création d'un compte dans le plan comptable.
* @throws LimaException
@@ -167,7 +174,7 @@
@Test
public void getAllAccountTest() throws LimaException {
List<Account> listAccount = accountService.getAllAccounts();
- Assert.assertEquals(5, listAccount.size());
+ Assert.assertEquals(7, listAccount.size());
}
/**
@@ -177,14 +184,14 @@
*/
@Test
public void removeAccountTest() throws LimaException {
- Account accountToRemove = accountService.getAccountByNumber("51");
+ Account accountToRemove = accountService.getAccountByNumber("50");
// On souhaite supprimer le compte 51. Ce compte existe bien. Il possede
// des fils. La suppression se déroule bien.
accountService.removeAccount(accountToRemove);
- // Il ne doit rester que 2 compte (5, 50)
- Assert.assertEquals(2, accountService.getAllAccounts().size());
+ // Il ne doit rester que 4 compte (5, 51, 511, 512)
+ Assert.assertEquals(4, accountService.getAllAccounts().size());
}
/**
Modified: trunk/lima-business/src/test/java/org/chorem/lima/business/EntryBookServiceImplTest.java
===================================================================
--- trunk/lima-business/src/test/java/org/chorem/lima/business/EntryBookServiceImplTest.java 2012-02-22 13:01:01 UTC (rev 3341)
+++ trunk/lima-business/src/test/java/org/chorem/lima/business/EntryBookServiceImplTest.java 2012-02-22 13:01:41 UTC (rev 3342)
@@ -25,9 +25,12 @@
package org.chorem.lima.business;
+import java.text.ParseException;
+
import org.chorem.lima.entity.EntryBook;
import org.chorem.lima.entity.EntryBookImpl;
import org.junit.Assert;
+import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
@@ -43,6 +46,11 @@
protected static final String JOURNAL_DES_VENTES = "Journal des ventes";
+ @Before
+ public void initTest() throws LimaException, ParseException {
+ initTestDatabase();
+ }
+
/**
* Permet de tester l'ajout d'un journal dans la base de données.
* (erreur duplication).
Modified: trunk/lima-business/src/test/java/org/chorem/lima/business/FinancialPeriodServiceImplTest.java
===================================================================
--- trunk/lima-business/src/test/java/org/chorem/lima/business/FinancialPeriodServiceImplTest.java 2012-02-22 13:01:01 UTC (rev 3341)
+++ trunk/lima-business/src/test/java/org/chorem/lima/business/FinancialPeriodServiceImplTest.java 2012-02-22 13:01:41 UTC (rev 3342)
@@ -25,6 +25,9 @@
package org.chorem.lima.business;
+import java.text.ParseException;
+
+import org.junit.Before;
import org.junit.Test;
/**
@@ -41,6 +44,11 @@
*/
public class FinancialPeriodServiceImplTest extends AbstractLimaTest {
+ @Before
+ public void initTest() throws LimaException, ParseException {
+ initTestDatabase();
+ }
+
/**
* Permet de tester l'ajout d'un timespan.
*/
Modified: trunk/lima-business/src/test/java/org/chorem/lima/business/FinancialTransactionServiceImplTest.java
===================================================================
--- trunk/lima-business/src/test/java/org/chorem/lima/business/FinancialTransactionServiceImplTest.java 2012-02-22 13:01:01 UTC (rev 3341)
+++ trunk/lima-business/src/test/java/org/chorem/lima/business/FinancialTransactionServiceImplTest.java 2012-02-22 13:01:41 UTC (rev 3342)
@@ -50,6 +50,11 @@
*/
public class FinancialTransactionServiceImplTest extends AbstractLimaTest {
+ @Before
+ public void initTest() throws LimaException, ParseException {
+ initTestDatabase();
+ }
+
/**
* Test to find all unbalanced transactions.
* Nothing wrong here.
Modified: trunk/lima-business/src/test/java/org/chorem/lima/business/FiscalPeriodServiceImplTest.java
===================================================================
--- trunk/lima-business/src/test/java/org/chorem/lima/business/FiscalPeriodServiceImplTest.java 2012-02-22 13:01:01 UTC (rev 3341)
+++ trunk/lima-business/src/test/java/org/chorem/lima/business/FiscalPeriodServiceImplTest.java 2012-02-22 13:01:41 UTC (rev 3342)
@@ -25,10 +25,13 @@
package org.chorem.lima.business;
+import java.text.ParseException;
+
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.chorem.lima.business.ejb.FiscalPeriodServiceImpl;
import org.junit.AfterClass;
+import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import org.nuiton.topia.TopiaContext;
@@ -57,6 +60,11 @@
private TopiaContext rootContext;
+ @Before
+ public void initTest() throws LimaException, ParseException {
+ initTestDatabase();
+ }
+
public FiscalPeriodServiceImplTest() {
LimaConfig config = LimaConfig.getInstance();
try {
Modified: trunk/lima-business/src/test/java/org/chorem/lima/business/ReportServiceImplTest.java
===================================================================
--- trunk/lima-business/src/test/java/org/chorem/lima/business/ReportServiceImplTest.java 2012-02-22 13:01:01 UTC (rev 3341)
+++ trunk/lima-business/src/test/java/org/chorem/lima/business/ReportServiceImplTest.java 2012-02-22 13:01:41 UTC (rev 3342)
@@ -38,6 +38,7 @@
import org.chorem.lima.entity.FinancialTransaction;
import org.chorem.lima.entity.FinancialTransactionImpl;
import org.junit.Assert;
+import org.junit.Before;
import org.junit.Test;
/**
@@ -45,6 +46,11 @@
*/
public class ReportServiceImplTest extends AbstractLimaTest {
+ @Before
+ public void initTest() throws LimaException, ParseException {
+ initTestDatabase();
+ }
+
/**
* Test de génération du rapport des comptes.
*
1
0
r3341 - in trunk/lima-swing/src/main/java/org/chorem/lima/ui: fiscalperiod opening
by echatellier@users.chorem.org 22 Feb '12
by echatellier@users.chorem.org 22 Feb '12
22 Feb '12
Author: echatellier
Date: 2012-02-22 14:01:01 +0100 (Wed, 22 Feb 2012)
New Revision: 3341
Url: http://chorem.org/repositories/revision/lima/3341
Log:
Fix compilation
Modified:
trunk/lima-swing/src/main/java/org/chorem/lima/ui/fiscalperiod/AddPeriod.jaxx
trunk/lima-swing/src/main/java/org/chorem/lima/ui/opening/CreateFiscalPeriodPanel.jaxx
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/fiscalperiod/AddPeriod.jaxx
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/fiscalperiod/AddPeriod.jaxx 2012-02-22 10:41:37 UTC (rev 3340)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/fiscalperiod/AddPeriod.jaxx 2012-02-22 13:01:01 UTC (rev 3341)
@@ -33,7 +33,7 @@
org.chorem.lima.entity.FiscalPeriodImpl
org.chorem.lima.entity.FiscalPeriod
org.chorem.lima.business.LimaException
- org.chorem.lima.business.FiscalPeriodServiceMonitorable
+ org.chorem.lima.business.monitorable.FiscalPeriodServiceMonitorable
org.chorem.lima.service.LimaServiceFactory
org.chorem.lima.ui.fiscalperiod.FiscalPeriodTableModel
</import>
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/opening/CreateFiscalPeriodPanel.jaxx
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/opening/CreateFiscalPeriodPanel.jaxx 2012-02-22 10:41:37 UTC (rev 3340)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/opening/CreateFiscalPeriodPanel.jaxx 2012-02-22 13:01:01 UTC (rev 3341)
@@ -29,7 +29,7 @@
org.apache.commons.lang3.time.DateUtils
org.jdesktop.swingx.JXDatePicker
org.chorem.lima.entity.FiscalPeriod
- org.chorem.lima.business.FiscalPeriodServiceMonitorable
+ org.chorem.lima.business.monitorable.FiscalPeriodServiceMonitorable
org.chorem.lima.business.LimaException
org.chorem.lima.service.LimaServiceFactory
</import>
1
0
Author: echatellier
Date: 2012-02-22 11:41:37 +0100 (Wed, 22 Feb 2012)
New Revision: 3340
Url: http://chorem.org/repositories/revision/lima/3340
Log:
Update to commons-lang3
Modified:
trunk/lima-business/pom.xml
trunk/lima-business/src/license/THIRD-PARTY.properties
trunk/lima-business/src/main/java/org/chorem/lima/business/accountingrules/DefaultAccountingRules.java
trunk/lima-business/src/main/java/org/chorem/lima/business/accountingrules/FranceAccountingRules.java
trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/ExportServiceImpl.java
trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/FinancialStatementServiceImpl.java
trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/FiscalPeriodServiceImpl.java
trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/HttpServerServiceImpl.java
trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/ImportServiceImpl.java
trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/ReportServiceImpl.java
trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/VatStatementServiceImpl.java
trunk/lima-business/src/main/java/org/chorem/lima/business/migration/MigrationV0_6.java
trunk/lima-business/src/test/java/org/chorem/lima/business/FinancialTransactionServiceImplTest.java
trunk/lima-business/src/test/java/org/chorem/lima/business/LimaMiscTest.java
trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/AccountServiceRuleFrTest.java
trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/EntryBookServiceRuleFrTest.java
trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/FinancialPeriodServiceRuleFrTest.java
trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/FinancialTransactionServiceRuleFrTest.java
trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/FiscalPeriodServiceRuleFrTest.java
trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/ReportServiceRuleFrTest.java
trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/TestAccountingRules.java
trunk/lima-business/src/test/java/org/chorem/lima/business/ejb/ClearService.java
trunk/lima-business/src/test/java/org/chorem/lima/business/ejb/ClearServiceImpl.java
trunk/lima-business/src/test/java/org/chorem/lima/business/ejb/ClearServiceLocal.java
trunk/lima-business/src/test/java/org/chorem/lima/business/ejb/ClearServiceMonitorable.java
trunk/lima-callao/pom.xml
trunk/lima-callao/src/license/THIRD-PARTY.properties
trunk/lima-callao/src/main/java/org/chorem/lima/entity/AccountDAOImpl.java
trunk/lima-swing/pom.xml
trunk/lima-swing/src/main/java/org/chorem/lima/ui/account/AccountViewHandler.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/accountsreports/AccountsReportsPeriodSearchPanel.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/balance/BalancePeriodSearchPanel.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/celleditor/DateTableCellEditor.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/entrybooksreports/EntryBooksReportsPeriodSearchPanel.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementreport/FinancialStatementReportPeriodSearchPanel.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialtransaction/FinancialTransactionTableModel.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialtransactionsearch/FinancialTransactionPeriodSearchPanel.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialtransactionsearch/FinancialTransactionSearchTableModel.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/fiscalperiod/AddPeriod.jaxx
trunk/lima-swing/src/main/java/org/chorem/lima/ui/ledger/LedgerPeriodSearchPanel.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/lettering/LetteringPeriodSearchPanel.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/opening/CreateFiscalPeriodPanel.jaxx
trunk/lima-swing/src/main/java/org/chorem/lima/ui/vatreports/VatReportPeriodSearchPanel.java
trunk/lima-swing/src/main/java/org/chorem/lima/util/ErrorHelper.java
trunk/pom.xml
Modified: trunk/lima-business/pom.xml
===================================================================
--- trunk/lima-business/pom.xml 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-business/pom.xml 2012-02-22 10:41:37 UTC (rev 3340)
@@ -67,8 +67,8 @@
<artifactId>hibernate-core</artifactId>
</dependency>
<dependency>
- <groupId>commons-lang</groupId>
- <artifactId>commons-lang</artifactId>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
Modified: trunk/lima-business/src/license/THIRD-PARTY.properties
===================================================================
--- trunk/lima-business/src/license/THIRD-PARTY.properties 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-business/src/license/THIRD-PARTY.properties 2012-02-22 10:41:37 UTC (rev 3340)
@@ -2,12 +2,10 @@
#-------------------------------------------------------------------------------
# Already used licenses in project :
# - ANTLR 2 License
-# - Apache License Version 1.1
# - Apache Software License - Version 2.0
# - Apache Software License 2.0
# - BSD License
-# - Bouncy Castle Licence
-# - Bouncy Castle License
+# - BSD style
# - COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0
# - CPL
# - Common Development and Distribution License (CDDL) v1.0 / GPLv2 + classpath exception dual license
@@ -21,23 +19,24 @@
# - Lesser General Public License (LPGL) v 2.1
# - License Agreement for Java Transaction API Classes
# - MIT License
+# - MPL 1.1
# - Mozilla Public License
# - The Apache Software License, Version 2.0
# - The H2 License, Version 1.0
# - http://asm.ow2.org/license.html
# - http://www.apache.org/licenses/LICENSE-2.0.txt
# - jdomlicence
+# - license.txt
#-------------------------------------------------------------------------------
# Please fill the missing licenses for dependencies :
#
#
-#Thu Aug 18 08:57:26 CEST 2011
+#Wed Feb 22 11:37:51 CET 2012
antlr--antlr--2.7.6=ANTLR 2 License
com.sun.xml.bind--jaxb-impl--2.1.9=Common Development and Distribution License (CDDL) v1.0 / GPLv2 + classpath exception dual license
commons-net--commons-net--2.0=The Apache Software License, Version 2.0
commons-primitives--commons-primitives--1.0=The Apache Software License, Version 2.0
dom4j--dom4j--1.6.1=jdomlicence
-javassist--javassist--3.8.0.GA=GNU Lesser General Public License
javax.transaction--jta--1.1=License Agreement for Java Transaction API Classes
org.apache.geronimo.specs--geronimo-j2ee-management_1.0_spec--1.0=The Apache Software License, Version 2.0
org.codehaus.swizzle--swizzle-stream--1.0.1=The Apache Software License, Version 2.0
Modified: trunk/lima-business/src/main/java/org/chorem/lima/business/accountingrules/DefaultAccountingRules.java
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/accountingrules/DefaultAccountingRules.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/accountingrules/DefaultAccountingRules.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -25,7 +25,7 @@
package org.chorem.lima.business.accountingrules;
-import org.apache.commons.lang.StringUtils;
+import org.apache.commons.lang3.StringUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.chorem.lima.business.AccountingRules;
Modified: trunk/lima-business/src/main/java/org/chorem/lima/business/accountingrules/FranceAccountingRules.java
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/accountingrules/FranceAccountingRules.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/accountingrules/FranceAccountingRules.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -25,8 +25,8 @@
package org.chorem.lima.business.accountingrules;
-import org.apache.commons.lang.StringUtils;
-import org.apache.commons.lang.time.DateUtils;
+import org.apache.commons.lang3.StringUtils;
+import org.apache.commons.lang3.time.DateUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.chorem.lima.business.LimaBusinessException;
Modified: trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/ExportServiceImpl.java
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/ExportServiceImpl.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/ExportServiceImpl.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -26,7 +26,7 @@
package org.chorem.lima.business.ejb;
import au.com.bytecode.opencsv.CSVWriter;
-import org.apache.commons.lang.StringUtils;
+import org.apache.commons.lang3.StringUtils;
import org.chorem.lima.FinancialStatementWayEnum;
import org.chorem.lima.business.LimaException;
import org.chorem.lima.business.ejbinterface.ExportService;
Modified: trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/FinancialStatementServiceImpl.java
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/FinancialStatementServiceImpl.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/FinancialStatementServiceImpl.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -25,7 +25,7 @@
package org.chorem.lima.business.ejb;
-import org.apache.commons.lang.StringUtils;
+import org.apache.commons.lang3.StringUtils;
import org.chorem.lima.FinancialStatementWayEnum;
import org.chorem.lima.beans.Amounts;
import org.chorem.lima.beans.AmountsImpl;
Modified: trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/FiscalPeriodServiceImpl.java
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/FiscalPeriodServiceImpl.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/FiscalPeriodServiceImpl.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -25,7 +25,7 @@
package org.chorem.lima.business.ejb;
-import org.apache.commons.lang.time.DateUtils;
+import org.apache.commons.lang3.time.DateUtils;
import org.chorem.lima.beans.BalanceTrial;
import org.chorem.lima.beans.ReportsDatas;
import org.chorem.lima.business.AccountingRules;
Modified: trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/HttpServerServiceImpl.java
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/HttpServerServiceImpl.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/HttpServerServiceImpl.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -45,7 +45,7 @@
import javax.servlet.http.HttpServletResponse;
import org.apache.commons.io.IOUtils;
-import org.apache.commons.lang.time.DateUtils;
+import org.apache.commons.lang3.time.DateUtils;
import org.chorem.lima.business.LimaConfig;
import org.chorem.lima.business.LimaException;
import org.chorem.lima.business.ejbinterface.DocumentServiceLocal;
Modified: trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/ImportServiceImpl.java
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/ImportServiceImpl.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/ImportServiceImpl.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -28,7 +28,7 @@
import au.com.bytecode.opencsv.CSVReader;
import au.com.bytecode.opencsv.bean.ColumnPositionMappingStrategy;
import au.com.bytecode.opencsv.bean.CsvToBean;
-import org.apache.commons.lang.StringUtils;
+import org.apache.commons.lang3.StringUtils;
import org.apache.pdfbox.exceptions.COSVisitorException;
import org.apache.pdfbox.pdmodel.PDDocument;
import org.apache.pdfbox.pdmodel.interactive.form.PDField;
Modified: trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/ReportServiceImpl.java
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/ReportServiceImpl.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/ReportServiceImpl.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -25,7 +25,7 @@
package org.chorem.lima.business.ejb;
-import org.apache.commons.lang.StringUtils;
+import org.apache.commons.lang3.StringUtils;
import org.chorem.lima.beans.BalanceTrial;
import org.chorem.lima.beans.BalanceTrialImpl;
import org.chorem.lima.beans.ReportsDatas;
Modified: trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/VatStatementServiceImpl.java
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/VatStatementServiceImpl.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/VatStatementServiceImpl.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -24,7 +24,7 @@
*/
package org.chorem.lima.business.ejb;
-import org.apache.commons.lang.StringUtils;
+import org.apache.commons.lang3.StringUtils;
import org.chorem.lima.beans.Amounts;
import org.chorem.lima.beans.AmountsImpl;
import org.chorem.lima.beans.ReportsDatas;
Modified: trunk/lima-business/src/main/java/org/chorem/lima/business/migration/MigrationV0_6.java
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/migration/MigrationV0_6.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/migration/MigrationV0_6.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2011, 2012 CodeLutin, Chatellier Eric
+ * Copyright (C) 2011 - 2012 CodeLutin, Chatellier Eric
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as
Modified: trunk/lima-business/src/test/java/org/chorem/lima/business/FinancialTransactionServiceImplTest.java
===================================================================
--- trunk/lima-business/src/test/java/org/chorem/lima/business/FinancialTransactionServiceImplTest.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-business/src/test/java/org/chorem/lima/business/FinancialTransactionServiceImplTest.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -1,25 +1,23 @@
/*
* #%L
- *
- *
* $Id$
* $HeadURL$
* %%
* Copyright (C) 2012 Codelutin, Chatellier Eric
* %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
+ * it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Lesser Public License for more details.
+ * GNU General Public License for more details.
*
- * You should have received a copy of the GNU General Lesser Public
+ * You should have received a copy of the GNU General Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * <http://www.gnu.org/licenses/gpl-3.0.html>.
* #L%
*/
Modified: trunk/lima-business/src/test/java/org/chorem/lima/business/LimaMiscTest.java
===================================================================
--- trunk/lima-business/src/test/java/org/chorem/lima/business/LimaMiscTest.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-business/src/test/java/org/chorem/lima/business/LimaMiscTest.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -1,25 +1,23 @@
/*
* #%L
- *
- *
* $Id$
* $HeadURL$
* %%
* Copyright (C) 2012 Codelutin, Chatellier Eric
* %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
+ * it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Lesser Public License for more details.
+ * GNU General Public License for more details.
*
- * You should have received a copy of the GNU General Lesser Public
+ * You should have received a copy of the GNU General Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * <http://www.gnu.org/licenses/gpl-3.0.html>.
* #L%
*/
Modified: trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/AccountServiceRuleFrTest.java
===================================================================
--- trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/AccountServiceRuleFrTest.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/AccountServiceRuleFrTest.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -1,25 +1,23 @@
/*
* #%L
- *
- *
* $Id$
* $HeadURL$
* %%
* Copyright (C) 2012 Codelutin, Chatellier Eric
* %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
+ * it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Lesser Public License for more details.
+ * GNU General Public License for more details.
*
- * You should have received a copy of the GNU General Lesser Public
+ * You should have received a copy of the GNU General Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * <http://www.gnu.org/licenses/gpl-3.0.html>.
* #L%
*/
Modified: trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/EntryBookServiceRuleFrTest.java
===================================================================
--- trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/EntryBookServiceRuleFrTest.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/EntryBookServiceRuleFrTest.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -1,25 +1,23 @@
/*
* #%L
- *
- *
* $Id$
* $HeadURL$
* %%
* Copyright (C) 2012 Codelutin, Chatellier Eric
* %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
+ * it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Lesser Public License for more details.
+ * GNU General Public License for more details.
*
- * You should have received a copy of the GNU General Lesser Public
+ * You should have received a copy of the GNU General Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * <http://www.gnu.org/licenses/gpl-3.0.html>.
* #L%
*/
Modified: trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/FinancialPeriodServiceRuleFrTest.java
===================================================================
--- trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/FinancialPeriodServiceRuleFrTest.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/FinancialPeriodServiceRuleFrTest.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -1,25 +1,23 @@
/*
* #%L
- *
- *
* $Id$
* $HeadURL$
* %%
* Copyright (C) 2012 Codelutin, Chatellier Eric
* %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
+ * it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Lesser Public License for more details.
+ * GNU General Public License for more details.
*
- * You should have received a copy of the GNU General Lesser Public
+ * You should have received a copy of the GNU General Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * <http://www.gnu.org/licenses/gpl-3.0.html>.
* #L%
*/
Modified: trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/FinancialTransactionServiceRuleFrTest.java
===================================================================
--- trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/FinancialTransactionServiceRuleFrTest.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/FinancialTransactionServiceRuleFrTest.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -1,25 +1,23 @@
/*
* #%L
- *
- *
* $Id$
* $HeadURL$
* %%
* Copyright (C) 2012 Codelutin, Chatellier Eric
* %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
+ * it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Lesser Public License for more details.
+ * GNU General Public License for more details.
*
- * You should have received a copy of the GNU General Lesser Public
+ * You should have received a copy of the GNU General Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * <http://www.gnu.org/licenses/gpl-3.0.html>.
* #L%
*/
Modified: trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/FiscalPeriodServiceRuleFrTest.java
===================================================================
--- trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/FiscalPeriodServiceRuleFrTest.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/FiscalPeriodServiceRuleFrTest.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -1,25 +1,23 @@
/*
* #%L
- *
- *
* $Id$
* $HeadURL$
* %%
* Copyright (C) 2012 Codelutin, Chatellier Eric
* %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
+ * it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Lesser Public License for more details.
+ * GNU General Public License for more details.
*
- * You should have received a copy of the GNU General Lesser Public
+ * You should have received a copy of the GNU General Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * <http://www.gnu.org/licenses/gpl-3.0.html>.
* #L%
*/
Modified: trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/ReportServiceRuleFrTest.java
===================================================================
--- trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/ReportServiceRuleFrTest.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/ReportServiceRuleFrTest.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -1,25 +1,23 @@
/*
* #%L
- *
- *
* $Id$
* $HeadURL$
* %%
* Copyright (C) 2012 Codelutin, Chatellier Eric
* %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
+ * it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Lesser Public License for more details.
+ * GNU General Public License for more details.
*
- * You should have received a copy of the GNU General Lesser Public
+ * You should have received a copy of the GNU General Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * <http://www.gnu.org/licenses/gpl-3.0.html>.
* #L%
*/
Modified: trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/TestAccountingRules.java
===================================================================
--- trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/TestAccountingRules.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-business/src/test/java/org/chorem/lima/business/accountingrules/TestAccountingRules.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -1,25 +1,23 @@
/*
* #%L
- *
- *
* $Id$
* $HeadURL$
* %%
* Copyright (C) 2012 Codelutin, Chatellier Eric
* %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
+ * it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Lesser Public License for more details.
+ * GNU General Public License for more details.
*
- * You should have received a copy of the GNU General Lesser Public
+ * You should have received a copy of the GNU General Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * <http://www.gnu.org/licenses/gpl-3.0.html>.
* #L%
*/
@@ -32,7 +30,7 @@
import java.util.Date;
import java.util.List;
-import org.apache.commons.lang.time.DateUtils;
+import org.apache.commons.lang3.time.DateUtils;
import org.chorem.lima.business.LimaBusinessException;
import org.chorem.lima.business.LimaException;
import org.chorem.lima.entity.FinancialPeriod;
Modified: trunk/lima-business/src/test/java/org/chorem/lima/business/ejb/ClearService.java
===================================================================
--- trunk/lima-business/src/test/java/org/chorem/lima/business/ejb/ClearService.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-business/src/test/java/org/chorem/lima/business/ejb/ClearService.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -1,25 +1,23 @@
/*
* #%L
- *
- *
* $Id$
* $HeadURL$
* %%
* Copyright (C) 2012 Codelutin, Chatellier Eric
* %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
+ * it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Lesser Public License for more details.
+ * GNU General Public License for more details.
*
- * You should have received a copy of the GNU General Lesser Public
+ * You should have received a copy of the GNU General Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * <http://www.gnu.org/licenses/gpl-3.0.html>.
* #L%
*/
Modified: trunk/lima-business/src/test/java/org/chorem/lima/business/ejb/ClearServiceImpl.java
===================================================================
--- trunk/lima-business/src/test/java/org/chorem/lima/business/ejb/ClearServiceImpl.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-business/src/test/java/org/chorem/lima/business/ejb/ClearServiceImpl.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -1,25 +1,23 @@
/*
* #%L
- *
- *
* $Id$
* $HeadURL$
* %%
* Copyright (C) 2012 Codelutin, Chatellier Eric
* %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
+ * it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Lesser Public License for more details.
+ * GNU General Public License for more details.
*
- * You should have received a copy of the GNU General Lesser Public
+ * You should have received a copy of the GNU General Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * <http://www.gnu.org/licenses/gpl-3.0.html>.
* #L%
*/
Modified: trunk/lima-business/src/test/java/org/chorem/lima/business/ejb/ClearServiceLocal.java
===================================================================
--- trunk/lima-business/src/test/java/org/chorem/lima/business/ejb/ClearServiceLocal.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-business/src/test/java/org/chorem/lima/business/ejb/ClearServiceLocal.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -1,25 +1,23 @@
/*
* #%L
- *
- *
* $Id$
* $HeadURL$
* %%
* Copyright (C) 2012 Codelutin, Chatellier Eric
* %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
+ * it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Lesser Public License for more details.
+ * GNU General Public License for more details.
*
- * You should have received a copy of the GNU General Lesser Public
+ * You should have received a copy of the GNU General Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * <http://www.gnu.org/licenses/gpl-3.0.html>.
* #L%
*/
Modified: trunk/lima-business/src/test/java/org/chorem/lima/business/ejb/ClearServiceMonitorable.java
===================================================================
--- trunk/lima-business/src/test/java/org/chorem/lima/business/ejb/ClearServiceMonitorable.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-business/src/test/java/org/chorem/lima/business/ejb/ClearServiceMonitorable.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -1,25 +1,23 @@
/*
* #%L
- *
- *
* $Id$
* $HeadURL$
* %%
* Copyright (C) 2012 Codelutin, Chatellier Eric
* %%
* This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as
+ * it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Lesser Public License for more details.
+ * GNU General Public License for more details.
*
- * You should have received a copy of the GNU General Lesser Public
+ * You should have received a copy of the GNU General Public
* License along with this program. If not, see
- * <http://www.gnu.org/licenses/lgpl-3.0.html>.
+ * <http://www.gnu.org/licenses/gpl-3.0.html>.
* #L%
*/
Modified: trunk/lima-callao/pom.xml
===================================================================
--- trunk/lima-callao/pom.xml 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-callao/pom.xml 2012-02-22 10:41:37 UTC (rev 3340)
@@ -20,8 +20,8 @@
<artifactId>nuiton-i18n</artifactId>
</dependency>
<dependency>
- <groupId>commons-lang</groupId>
- <artifactId>commons-lang</artifactId>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
Modified: trunk/lima-callao/src/license/THIRD-PARTY.properties
===================================================================
--- trunk/lima-callao/src/license/THIRD-PARTY.properties 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-callao/src/license/THIRD-PARTY.properties 2012-02-22 10:41:37 UTC (rev 3340)
@@ -10,16 +10,17 @@
# - Lesser General Public License (LPGL) v 2.1
# - License Agreement for Java Transaction API Classes
# - MIT License
+# - MPL 1.1
# - The Apache Software License, Version 2.0
# - The H2 License, Version 1.0
# - jdomlicence
+# - license.txt
#-------------------------------------------------------------------------------
# Please fill the missing licenses for dependencies :
#
#
-#Thu Aug 18 08:57:19 CEST 2011
+#Wed Feb 22 11:37:18 CET 2012
antlr--antlr--2.7.6=ANTLR 2 License
commons-primitives--commons-primitives--1.0=The Apache Software License, Version 2.0
dom4j--dom4j--1.6.1=jdomlicence
-javassist--javassist--3.8.0.GA=GNU Lesser General Public License
javax.transaction--jta--1.1=License Agreement for Java Transaction API Classes
Modified: trunk/lima-callao/src/main/java/org/chorem/lima/entity/AccountDAOImpl.java
===================================================================
--- trunk/lima-callao/src/main/java/org/chorem/lima/entity/AccountDAOImpl.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-callao/src/main/java/org/chorem/lima/entity/AccountDAOImpl.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -25,7 +25,7 @@
package org.chorem.lima.entity;
-import org.apache.commons.lang.StringUtils;
+import org.apache.commons.lang3.StringUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.nuiton.topia.TopiaException;
Modified: trunk/lima-swing/pom.xml
===================================================================
--- trunk/lima-swing/pom.xml 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-swing/pom.xml 2012-02-22 10:41:37 UTC (rev 3340)
@@ -78,8 +78,8 @@
<artifactId>commons-logging</artifactId>
</dependency>
<dependency>
- <groupId>commons-lang</groupId>
- <artifactId>commons-lang</artifactId>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>commons-io</groupId>
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/account/AccountViewHandler.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/account/AccountViewHandler.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/account/AccountViewHandler.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -25,7 +25,7 @@
package org.chorem.lima.ui.account;
-import org.apache.commons.lang.ObjectUtils;
+import org.apache.commons.lang3.ObjectUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.chorem.lima.business.LimaException;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/accountsreports/AccountsReportsPeriodSearchPanel.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/accountsreports/AccountsReportsPeriodSearchPanel.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/accountsreports/AccountsReportsPeriodSearchPanel.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -25,7 +25,7 @@
package org.chorem.lima.ui.accountsreports;
-import org.apache.commons.lang.time.DateUtils;
+import org.apache.commons.lang3.time.DateUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.chorem.lima.entity.FinancialPeriod;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/balance/BalancePeriodSearchPanel.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/balance/BalancePeriodSearchPanel.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/balance/BalancePeriodSearchPanel.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -25,7 +25,7 @@
package org.chorem.lima.ui.balance;
-import org.apache.commons.lang.time.DateUtils;
+import org.apache.commons.lang3.time.DateUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.chorem.lima.entity.FinancialPeriod;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/celleditor/DateTableCellEditor.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/celleditor/DateTableCellEditor.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/celleditor/DateTableCellEditor.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -25,7 +25,7 @@
package org.chorem.lima.ui.celleditor;
-import org.apache.commons.lang.time.DateUtils;
+import org.apache.commons.lang3.time.DateUtils;
import org.chorem.lima.LimaContext;
import org.jdesktop.swingx.JXDatePicker;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/entrybooksreports/EntryBooksReportsPeriodSearchPanel.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/entrybooksreports/EntryBooksReportsPeriodSearchPanel.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/entrybooksreports/EntryBooksReportsPeriodSearchPanel.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -25,7 +25,7 @@
package org.chorem.lima.ui.entrybooksreports;
-import org.apache.commons.lang.time.DateUtils;
+import org.apache.commons.lang3.time.DateUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.chorem.lima.entity.FinancialPeriod;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementreport/FinancialStatementReportPeriodSearchPanel.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementreport/FinancialStatementReportPeriodSearchPanel.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementreport/FinancialStatementReportPeriodSearchPanel.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -25,7 +25,7 @@
package org.chorem.lima.ui.financialstatementreport;
-import org.apache.commons.lang.time.DateUtils;
+import org.apache.commons.lang3.time.DateUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.chorem.lima.entity.FinancialPeriod;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialtransaction/FinancialTransactionTableModel.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialtransaction/FinancialTransactionTableModel.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialtransaction/FinancialTransactionTableModel.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -25,7 +25,7 @@
package org.chorem.lima.ui.financialtransaction;
-import org.apache.commons.lang.time.DateUtils;
+import org.apache.commons.lang3.time.DateUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.chorem.lima.business.LimaBusinessException;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialtransactionsearch/FinancialTransactionPeriodSearchPanel.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialtransactionsearch/FinancialTransactionPeriodSearchPanel.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialtransactionsearch/FinancialTransactionPeriodSearchPanel.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -25,7 +25,7 @@
package org.chorem.lima.ui.financialtransactionsearch;
-import org.apache.commons.lang.time.DateUtils;
+import org.apache.commons.lang3.time.DateUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.chorem.lima.entity.FinancialPeriod;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialtransactionsearch/FinancialTransactionSearchTableModel.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialtransactionsearch/FinancialTransactionSearchTableModel.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialtransactionsearch/FinancialTransactionSearchTableModel.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -25,7 +25,7 @@
package org.chorem.lima.ui.financialtransactionsearch;
-import org.apache.commons.lang.time.DateUtils;
+import org.apache.commons.lang3.time.DateUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.chorem.lima.beans.FinancialTransactionSearch;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/fiscalperiod/AddPeriod.jaxx
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/fiscalperiod/AddPeriod.jaxx 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/fiscalperiod/AddPeriod.jaxx 2012-02-22 10:41:37 UTC (rev 3340)
@@ -28,7 +28,7 @@
<import>
java.util.Date
java.util.Calendar
- org.apache.commons.lang.time.DateUtils
+ org.apache.commons.lang3.time.DateUtils
org.jdesktop.swingx.JXDatePicker
org.chorem.lima.entity.FiscalPeriodImpl
org.chorem.lima.entity.FiscalPeriod
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/ledger/LedgerPeriodSearchPanel.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/ledger/LedgerPeriodSearchPanel.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/ledger/LedgerPeriodSearchPanel.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -25,7 +25,7 @@
package org.chorem.lima.ui.ledger;
-import org.apache.commons.lang.time.DateUtils;
+import org.apache.commons.lang3.time.DateUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.chorem.lima.entity.FinancialPeriod;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/lettering/LetteringPeriodSearchPanel.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/lettering/LetteringPeriodSearchPanel.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/lettering/LetteringPeriodSearchPanel.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -24,7 +24,7 @@
*/
package org.chorem.lima.ui.lettering;
-import org.apache.commons.lang.time.DateUtils;
+import org.apache.commons.lang3.time.DateUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.chorem.lima.entity.FinancialPeriod;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/opening/CreateFiscalPeriodPanel.jaxx
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/opening/CreateFiscalPeriodPanel.jaxx 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/opening/CreateFiscalPeriodPanel.jaxx 2012-02-22 10:41:37 UTC (rev 3340)
@@ -26,7 +26,7 @@
<import>
java.util.Calendar
java.util.Date
- org.apache.commons.lang.time.DateUtils
+ org.apache.commons.lang3.time.DateUtils
org.jdesktop.swingx.JXDatePicker
org.chorem.lima.entity.FiscalPeriod
org.chorem.lima.business.FiscalPeriodServiceMonitorable
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/vatreports/VatReportPeriodSearchPanel.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/vatreports/VatReportPeriodSearchPanel.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/vatreports/VatReportPeriodSearchPanel.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -24,7 +24,7 @@
*/
package org.chorem.lima.ui.vatreports;
-import org.apache.commons.lang.time.DateUtils;
+import org.apache.commons.lang3.time.DateUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.chorem.lima.entity.FinancialPeriod;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/util/ErrorHelper.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/util/ErrorHelper.java 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/util/ErrorHelper.java 2012-02-22 10:41:37 UTC (rev 3340)
@@ -25,7 +25,7 @@
package org.chorem.lima.util;
-import org.apache.commons.lang.StringUtils;
+import org.apache.commons.lang3.StringUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.commons.mail.EmailException;
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2012-02-22 10:28:29 UTC (rev 3339)
+++ trunk/pom.xml 2012-02-22 10:41:37 UTC (rev 3340)
@@ -45,6 +45,12 @@
<artifactId>commons-email</artifactId>
<version>1.2</version>
</dependency>
+
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-lang3</artifactId>
+ <version>3.1</version>
+ </dependency>
<dependency>
<groupId>org.nuiton</groupId>
1
0
r3339 - in trunk/lima-business/src/main/java/org/chorem/lima/business: ejb ejbinterface
by echatellier@users.chorem.org 22 Feb '12
by echatellier@users.chorem.org 22 Feb '12
22 Feb '12
Author: echatellier
Date: 2012-02-22 11:28:29 +0100 (Wed, 22 Feb 2012)
New Revision: 3339
Url: http://chorem.org/repositories/revision/lima/3339
Log:
Add doc in import service.
Fix method visibility.
Modified:
trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/ImportServiceImpl.java
trunk/lima-business/src/main/java/org/chorem/lima/business/ejbinterface/ImportService.java
Modified: trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/ImportServiceImpl.java
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/ImportServiceImpl.java 2012-02-22 09:57:58 UTC (rev 3338)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/ejb/ImportServiceImpl.java 2012-02-22 10:28:29 UTC (rev 3339)
@@ -125,20 +125,14 @@
import static org.nuiton.i18n.I18n._;
/**
- * CSV import export service.
- *
- * @version $Revision$
- * <p/>
- * Last update : $Date: 2010-07-26 18:32:09 +0200 (lun., 26 juil. 2010)
- * $ By : $Author$
+ * Import export service.
+ * Currently import and export as CSV and EBP.
*/
@Stateless
public class ImportServiceImpl extends AbstractLimaService implements ImportService, ImportServiceLocal {
private TopiaContext rootContext;
- // Services
-
@EJB
private AccountServiceLocal accountService;
@@ -396,18 +390,6 @@
return result.toString();
}
- @Override
- public void importAsCiel(byte[] data) throws LimaException {
- // TODO Auto-generated method stub
-
- }
-
- @Override
- public void importAsSage(byte[] data) throws LimaException {
- // TODO Auto-generated method stub
-
- }
-
// ################ IMPORT ################
/** Remote methode to call all entities import from UI */
@@ -655,7 +637,7 @@
* @return
* @throws LimaException
*/
- public String importAccountsChartsCSV(String[] nextLine,
+ protected String importAccountsChartsCSV(String[] nextLine,
Map<String, AccountImport> accounts,
TopiaContext topiaContext)
throws LimaException {
@@ -700,7 +682,7 @@
* @return
* @throws LimaException
*/
- public String importFiscalPeriodCSV(String[] nextLine,
+ protected String importFiscalPeriodCSV(String[] nextLine,
List<FiscalPeriod> fiscalPeriods,
TopiaContext topiaContext)
throws LimaException {
@@ -738,7 +720,7 @@
* @return
* @throws LimaException
*/
- public String importEntryBooksChartCSV(String[] nextLine,
+ protected String importEntryBooksChartCSV(String[] nextLine,
TopiaContext topiaContext) throws LimaException {
StringBuilder result = new StringBuilder();
try {
@@ -773,7 +755,7 @@
* @return
* @throws LimaException
*/
- public String importLetterCSV(String[] nextLine,
+ protected String importLetterCSV(String[] nextLine,
TopiaContext topiaContext) throws LimaException {
StringBuilder result = new StringBuilder();
try {
@@ -807,7 +789,7 @@
* @param topiaContext
* @throws LimaException
*/
- public void importClosedPeriodicEntryBookCSV(String[] nextLine,
+ protected void importClosedPeriodicEntryBookCSV(String[] nextLine,
List<ClosedPeriodicEntryBookImport> closedPeriodicEntryBooks,
TopiaContext topiaContext) throws LimaException {
String locked = nextLine[1];
@@ -839,8 +821,7 @@
* @return
* @throws LimaException
*/
-
- public String importFinancialsStatementChartCSV(String[] nextLine,
+ protected String importFinancialsStatementChartCSV(String[] nextLine,
LinkedHashMap<String, ArrayList<FinancialStatementImport>> financialStatements,
TopiaContext topiaContext) throws LimaException {
StringBuilder result = new StringBuilder();
@@ -905,8 +886,7 @@
* @return
* @throws LimaException
*/
-
- public String importVatStatementChartCSV(String[] nextLine,
+ protected String importVatStatementChartCSV(String[] nextLine,
Map<String, ArrayList<VatStatementImport>> vatStatements,
TopiaContext topiaContext) throws LimaException {
@@ -961,7 +941,7 @@
* @param topiaContext
* @throws LimaException
*/
- public void importFinancialTransactionsCSV(String[] nextLine,
+ protected void importFinancialTransactionsCSV(String[] nextLine,
Map<Integer, FinancialTransactionImport> financialTransactions,
TopiaContext topiaContext) throws LimaException {
int num = new Integer(nextLine[1]);
@@ -987,7 +967,7 @@
* @param topiaContext
* @throws LimaException
*/
- public void importEntriesCSV(String[] nextLine,
+ protected void importEntriesCSV(String[] nextLine,
Map<Integer, List<EntryImport>> entries,
TopiaContext topiaContext) throws LimaException {
int num = new Integer(nextLine[1]);
@@ -1014,7 +994,7 @@
// ################ CREATE ENTITY IN DB FOR IMPORT ################
- public String createFinancialStatements(Map<String, ArrayList<FinancialStatementImport>> financialStatements,
+ protected String createFinancialStatements(Map<String, ArrayList<FinancialStatementImport>> financialStatements,
TopiaContext topiaContext) throws LimaException {
StringBuilder result = new StringBuilder();
try {
@@ -1098,7 +1078,7 @@
return result.toString();
}
- public String createVatStatements(Map<String, ArrayList<VatStatementImport>> vatStatements,
+ protected String createVatStatements(Map<String, ArrayList<VatStatementImport>> vatStatements,
TopiaContext topiaContext) throws LimaException {
StringBuilder result = new StringBuilder();
@@ -1163,7 +1143,7 @@
return result.toString();
}
- public String createFiscalPeriod(List<FiscalPeriod> fiscalPeriods,
+ protected String createFiscalPeriod(List<FiscalPeriod> fiscalPeriods,
TopiaContext topiaContext) {
StringBuilder result = new StringBuilder();
for (FiscalPeriod fiscalPeriod : fiscalPeriods) {
@@ -1190,7 +1170,7 @@
* @return
* @throws LimaException
*/
- public Letter createLetter(String letterCode,
+ protected Letter createLetter(String letterCode,
TopiaContext topiaContext) throws LimaException {
Letter letter = null;
try {
@@ -1208,7 +1188,7 @@
return letter;
}
- public String createAccounts(Map<String, AccountImport> accounts,
+ protected String createAccounts(Map<String, AccountImport> accounts,
TopiaContext topiaContext) throws LimaException {
StringBuilder result = new StringBuilder();
@@ -1265,7 +1245,7 @@
return result.toString();
}
- public String updateClosedPeriodicEntryBooks(
+ protected String updateClosedPeriodicEntryBooks(
List<ClosedPeriodicEntryBookImport> closedPeriodicEntryBooks,
TopiaContext topiaContext) throws LimaException {
StringBuilder result = new StringBuilder();
@@ -1312,7 +1292,7 @@
return result.toString();
}
- public String createFinancialTransactionsAndEntries(
+ protected String createFinancialTransactionsAndEntries(
Map<Integer, FinancialTransactionImport> financialTransactions,
Map<Integer, List<EntryImport>> entries, TopiaContext topiaContext)
throws LimaException {
@@ -1378,7 +1358,7 @@
return result.toString();
}
- public String importIdentity(String[] nextLine,
+ protected String importIdentity(String[] nextLine,
TopiaContext topiaContext) throws LimaException {
StringBuilder result = new StringBuilder();
Modified: trunk/lima-business/src/main/java/org/chorem/lima/business/ejbinterface/ImportService.java
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/ejbinterface/ImportService.java 2012-02-22 09:57:58 UTC (rev 3338)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/ejbinterface/ImportService.java 2012-02-22 10:28:29 UTC (rev 3339)
@@ -32,54 +32,56 @@
/**
* Import export service.
- * <p/>
- * Currently import and export as XML.
- *
- * @author chatellier
- * @version $Revision$
- * <p/>
- * Last update : $Date$
- * By : $Author$
+ * Currently import and export as CSV and EBP.
*/
@Remote
public interface ImportService {
/**
- * Import data as EBP CSV export.
+ * Import accounts as EBP import.
*
- * @param datas
+ * @param data import file content as string (remote service can't take File)
+ * @return result log
* @throws LimaException
*/
- String importEntriesFromEbp(String datas) throws LimaException;
+ String importAccountsChartFromEbp(String data) throws LimaException;
- String importAccountsChartFromEbp(String datas) throws LimaException;
-
/**
- * Import data as Sage Maestria export.
+ * Import entries as EBP import.
*
- * @param data
+ * @param data import file content as string (remote service can't take File)
+ * @return result log
* @throws LimaException
*/
- void importAsSage(byte[] data) throws LimaException;
+ String importEntriesFromEbp(String data) throws LimaException;
/**
- * Import data as Ciel Compta export.
- *
- * @param data
- * @throws LimaException
+ * Import data as lima CSV import.
+ *
+ * Read first line to detect file type and call {@link #importAsCSV(String, ImportExportEntityEnum)}.
+ *
+ * @param data import file content as string (remote service can't take File)
+ * @return result log
+ * @throws LimaException
*/
- void importAsCiel(byte[] data) throws LimaException;
+ String importAllAsCSV(String data) throws LimaException;
/**
- * import CSV.
- * Return result log
+ * Import content as CSV depending on import type.
+ *
+ * @param data import file content as string (remote service can't take File)
+ * @param importExportEntityEnum import type
+ * @return result log
+ * @throws LimaException
*/
- String importAllAsCSV(String path) throws LimaException;
-
- String importAsCSV(String datas,
+ String importAsCSV(String data,
ImportExportEntityEnum importExportEntityEnum) throws LimaException;
- String importAsPDF(String datas,
+ /**
+ * @deprecated import file (local, can't be used in remote mode)
+ * and wrong place for this method
+ */
+ String importAsPDF(String data,
ImportExportEntityEnum importExportEntityEnum,
boolean saveMode) throws LimaException;
}
1
0
Author: echatellier
Date: 2012-02-22 10:57:58 +0100 (Wed, 22 Feb 2012)
New Revision: 3338
Url: http://chorem.org/repositories/revision/lima/3338
Log:
Move all *Monitorable interfaces to monitorable package
Added:
trunk/lima-business/src/main/java/org/chorem/lima/business/ServiceMonitorable.java
trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/
trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/AccountServiceMonitorable.java
trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/DocumentServiceMonitorable.java
trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/EntryBookServiceMonitorable.java
trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/ExportServiceMonitorable.java
trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/FinancialPeriodServiceMonitorable.java
trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/FinancialStatementServiceMonitorable.java
trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/FinancialTransactionServiceMonitorable.java
trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/FiscalPeriodServiceMonitorable.java
trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/HttpServerServiceMonitorable.java
trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/IdentityServiceMonitorable.java
trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/ImportServiceMonitorable.java
trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/OptionsServiceMonitorable.java
trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/ReportServiceMonitorable.java
trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/VatStatementServiceMonitorable.java
Removed:
trunk/lima-business/src/main/java/org/chorem/lima/business/AccountServiceMonitorable.java
trunk/lima-business/src/main/java/org/chorem/lima/business/DocumentServiceMonitorable.java
trunk/lima-business/src/main/java/org/chorem/lima/business/EntryBookServiceMonitorable.java
trunk/lima-business/src/main/java/org/chorem/lima/business/ExportServiceMonitorable.java
trunk/lima-business/src/main/java/org/chorem/lima/business/FinancialPeriodServiceMonitorable.java
trunk/lima-business/src/main/java/org/chorem/lima/business/FinancialStatementServiceMonitorable.java
trunk/lima-business/src/main/java/org/chorem/lima/business/FinancialTransactionServiceMonitorable.java
trunk/lima-business/src/main/java/org/chorem/lima/business/FiscalPeriodServiceMonitorable.java
trunk/lima-business/src/main/java/org/chorem/lima/business/HttpServerServiceMonitorable.java
trunk/lima-business/src/main/java/org/chorem/lima/business/IdentityServiceMonitorable.java
trunk/lima-business/src/main/java/org/chorem/lima/business/ImportServiceMonitorable.java
trunk/lima-business/src/main/java/org/chorem/lima/business/OptionsServiceMonitorable.java
trunk/lima-business/src/main/java/org/chorem/lima/business/ReportServiceMonitorable.java
trunk/lima-business/src/main/java/org/chorem/lima/business/ServiceMonitorable.java
trunk/lima-business/src/main/java/org/chorem/lima/business/VatStatementServiceMonitorable.java
Modified:
trunk/lima-business/src/test/java/org/chorem/lima/business/AbstractLimaTest.java
trunk/lima-swing/src/main/java/org/chorem/lima/LimaConfig.java
trunk/lima-swing/src/main/java/org/chorem/lima/LimaMain.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/MainViewHandler.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/account/AccountTreeTableModel.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/account/AccountViewHandler.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/accountsreports/AccountsReportsViewHandler.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/balance/BalanceViewHandler.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/combobox/AccountComboBoxModel.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/combobox/EntryBookComboBoxModel.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/combobox/FinancialPeriodComboBoxModel.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/combobox/FiscalPeriodComboBoxModel.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/combobox/LetterComboBoxModel.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/combobox/SubAccountComboBoxModel.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/entrybook/EntryBookTableModel.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/entrybook/EntryBookViewHandler.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/entrybooksreports/EntryBooksReportsViewHandler.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialperiod/FinancialPeriodTable.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialperiod/FinancialPeriodTableModel.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementChartTreeTableModel.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementChartViewHandler.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementreport/FinancialStatementReportTableModel.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementreport/FinancialStatementReportViewHandler.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialtransaction/FinancialTransactionTableModel.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialtransaction/FinancialTransactionViewHandler.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialtransactionsearch/FinancialTransactionSearchTableModel.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialtransactionsearch/FinancialTransactionSearchViewHandler.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialtransactionunbalanced/FinancialTransactionUnbalancedTableModel.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/fiscalperiod/FiscalPeriodTableModel.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/fiscalperiod/FiscalPeriodViewHandler.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/home/AccountsPane.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/home/EntryBooksPane.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/home/FinancialTransactionsPane.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/home/FiscalPeriodsPane.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/identity/IdentityHandler.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/importexport/ImportExport.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/ledger/LedgerViewHandler.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/lettering/LetteringTableModel.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/lettering/LetteringViewHandler.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/opening/OpeningViewHandler.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/vatchart/VatChartTreeTableModel.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/vatchart/VatChartViewHandler.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/vatreports/VatReportTableModel.java
trunk/lima-swing/src/main/java/org/chorem/lima/ui/vatreports/VatReportViewHandler.java
Deleted: trunk/lima-business/src/main/java/org/chorem/lima/business/AccountServiceMonitorable.java
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/AccountServiceMonitorable.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/AccountServiceMonitorable.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -1,32 +0,0 @@
-/*
- * #%L
- * Lima business
- *
- * $Id$
- * $HeadURL$
- * %%
- * Copyright (C) 2008 - 2010 CodeLutin
- * %%
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public
- * License along with this program. If not, see
- * <http://www.gnu.org/licenses/gpl-3.0.html>.
- * #L%
- */
-
-package org.chorem.lima.business;
-
-import org.chorem.lima.business.ejbinterface.AccountService;
-
-public interface AccountServiceMonitorable extends AccountService, ServiceMonitorable {
-
-}
Deleted: trunk/lima-business/src/main/java/org/chorem/lima/business/DocumentServiceMonitorable.java
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/DocumentServiceMonitorable.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/DocumentServiceMonitorable.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -1,32 +0,0 @@
-/*
- * #%L
- * Lima business
- *
- * $Id$
- * $HeadURL$
- * %%
- * Copyright (C) 2008 - 2010 CodeLutin
- * %%
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public
- * License along with this program. If not, see
- * <http://www.gnu.org/licenses/gpl-3.0.html>.
- * #L%
- */
-
-package org.chorem.lima.business;
-
-import org.chorem.lima.business.ejbinterface.DocumentService;
-
-public interface DocumentServiceMonitorable extends DocumentService, ServiceMonitorable {
-
-}
Deleted: trunk/lima-business/src/main/java/org/chorem/lima/business/EntryBookServiceMonitorable.java
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/EntryBookServiceMonitorable.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/EntryBookServiceMonitorable.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -1,32 +0,0 @@
-/*
- * #%L
- * Lima business
- *
- * $Id$
- * $HeadURL$
- * %%
- * Copyright (C) 2008 - 2010 CodeLutin
- * %%
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public
- * License along with this program. If not, see
- * <http://www.gnu.org/licenses/gpl-3.0.html>.
- * #L%
- */
-
-package org.chorem.lima.business;
-
-import org.chorem.lima.business.ejbinterface.EntryBookService;
-
-public interface EntryBookServiceMonitorable extends EntryBookService, ServiceMonitorable {
-
-}
Deleted: trunk/lima-business/src/main/java/org/chorem/lima/business/ExportServiceMonitorable.java
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/ExportServiceMonitorable.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/ExportServiceMonitorable.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -1,32 +0,0 @@
-/*
- * #%L
- * Lima business
- *
- * $Id$
- * $HeadURL$
- * %%
- * Copyright (C) 2008 - 2010 CodeLutin
- * %%
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public
- * License along with this program. If not, see
- * <http://www.gnu.org/licenses/gpl-3.0.html>.
- * #L%
- */
-
-package org.chorem.lima.business;
-
-import org.chorem.lima.business.ejbinterface.ExportService;
-
-public interface ExportServiceMonitorable extends ExportService, ServiceMonitorable {
-
-}
Deleted: trunk/lima-business/src/main/java/org/chorem/lima/business/FinancialPeriodServiceMonitorable.java
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/FinancialPeriodServiceMonitorable.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/FinancialPeriodServiceMonitorable.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -1,32 +0,0 @@
-/*
- * #%L
- * Lima business
- *
- * $Id$
- * $HeadURL$
- * %%
- * Copyright (C) 2008 - 2010 CodeLutin
- * %%
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public
- * License along with this program. If not, see
- * <http://www.gnu.org/licenses/gpl-3.0.html>.
- * #L%
- */
-
-package org.chorem.lima.business;
-
-import org.chorem.lima.business.ejbinterface.FinancialPeriodService;
-
-public interface FinancialPeriodServiceMonitorable extends FinancialPeriodService, ServiceMonitorable {
-
-}
Deleted: trunk/lima-business/src/main/java/org/chorem/lima/business/FinancialStatementServiceMonitorable.java
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/FinancialStatementServiceMonitorable.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/FinancialStatementServiceMonitorable.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -1,32 +0,0 @@
-/*
- * #%L
- * Lima business
- *
- * $Id$
- * $HeadURL$
- * %%
- * Copyright (C) 2008 - 2010 CodeLutin
- * %%
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public
- * License along with this program. If not, see
- * <http://www.gnu.org/licenses/gpl-3.0.html>.
- * #L%
- */
-
-package org.chorem.lima.business;
-
-import org.chorem.lima.business.ejbinterface.FinancialStatementService;
-
-public interface FinancialStatementServiceMonitorable extends FinancialStatementService, ServiceMonitorable {
-
-}
Deleted: trunk/lima-business/src/main/java/org/chorem/lima/business/FinancialTransactionServiceMonitorable.java
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/FinancialTransactionServiceMonitorable.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/FinancialTransactionServiceMonitorable.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -1,32 +0,0 @@
-/*
- * #%L
- * Lima business
- *
- * $Id$
- * $HeadURL$
- * %%
- * Copyright (C) 2008 - 2010 CodeLutin
- * %%
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public
- * License along with this program. If not, see
- * <http://www.gnu.org/licenses/gpl-3.0.html>.
- * #L%
- */
-
-package org.chorem.lima.business;
-
-import org.chorem.lima.business.ejbinterface.FinancialTransactionService;
-
-public interface FinancialTransactionServiceMonitorable extends FinancialTransactionService, ServiceMonitorable {
-
-}
Deleted: trunk/lima-business/src/main/java/org/chorem/lima/business/FiscalPeriodServiceMonitorable.java
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/FiscalPeriodServiceMonitorable.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/FiscalPeriodServiceMonitorable.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -1,32 +0,0 @@
-/*
- * #%L
- * Lima business
- *
- * $Id$
- * $HeadURL$
- * %%
- * Copyright (C) 2008 - 2010 CodeLutin
- * %%
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public
- * License along with this program. If not, see
- * <http://www.gnu.org/licenses/gpl-3.0.html>.
- * #L%
- */
-
-package org.chorem.lima.business;
-
-import org.chorem.lima.business.ejbinterface.FiscalPeriodService;
-
-public interface FiscalPeriodServiceMonitorable extends FiscalPeriodService, ServiceMonitorable {
-
-}
Deleted: trunk/lima-business/src/main/java/org/chorem/lima/business/HttpServerServiceMonitorable.java
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/HttpServerServiceMonitorable.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/HttpServerServiceMonitorable.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -1,32 +0,0 @@
-/*
- * #%L
- * Lima business
- *
- * $Id$
- * $HeadURL$
- * %%
- * Copyright (C) 2008 - 2010 CodeLutin
- * %%
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public
- * License along with this program. If not, see
- * <http://www.gnu.org/licenses/gpl-3.0.html>.
- * #L%
- */
-
-package org.chorem.lima.business;
-
-import org.chorem.lima.business.ejbinterface.HttpServerService;
-
-public interface HttpServerServiceMonitorable extends HttpServerService, ServiceMonitorable {
-
-}
Deleted: trunk/lima-business/src/main/java/org/chorem/lima/business/IdentityServiceMonitorable.java
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/IdentityServiceMonitorable.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/IdentityServiceMonitorable.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -1,32 +0,0 @@
-/*
- * #%L
- * Lima business
- *
- * $Id$
- * $HeadURL$
- * %%
- * Copyright (C) 2008 - 2010 CodeLutin
- * %%
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public
- * License along with this program. If not, see
- * <http://www.gnu.org/licenses/gpl-3.0.html>.
- * #L%
- */
-
-package org.chorem.lima.business;
-
-import org.chorem.lima.business.ejbinterface.IdentityService;
-
-public interface IdentityServiceMonitorable extends IdentityService, ServiceMonitorable {
-
-}
Deleted: trunk/lima-business/src/main/java/org/chorem/lima/business/ImportServiceMonitorable.java
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/ImportServiceMonitorable.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/ImportServiceMonitorable.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -1,32 +0,0 @@
-/*
- * #%L
- * Lima business
- *
- * $Id$
- * $HeadURL$
- * %%
- * Copyright (C) 2008 - 2010 CodeLutin
- * %%
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public
- * License along with this program. If not, see
- * <http://www.gnu.org/licenses/gpl-3.0.html>.
- * #L%
- */
-
-package org.chorem.lima.business;
-
-import org.chorem.lima.business.ejbinterface.ImportService;
-
-public interface ImportServiceMonitorable extends ImportService, ServiceMonitorable {
-
-}
Deleted: trunk/lima-business/src/main/java/org/chorem/lima/business/OptionsServiceMonitorable.java
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/OptionsServiceMonitorable.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/OptionsServiceMonitorable.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -1,31 +0,0 @@
-/*
- * #%L
- * Lima :: business
- *
- * $Id$
- * $HeadURL$
- * %%
- * Copyright (C) 2008 - 2011 CodeLutin
- * %%
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public
- * License along with this program. If not, see
- * <http://www.gnu.org/licenses/gpl-3.0.html>.
- * #L%
- */
-package org.chorem.lima.business;
-
-import org.chorem.lima.business.ejbinterface.OptionsService;
-
-public interface OptionsServiceMonitorable extends OptionsService, ServiceMonitorable {
-
-}
Deleted: trunk/lima-business/src/main/java/org/chorem/lima/business/ReportServiceMonitorable.java
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/ReportServiceMonitorable.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/ReportServiceMonitorable.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -1,32 +0,0 @@
-/*
- * #%L
- * Lima business
- *
- * $Id$
- * $HeadURL$
- * %%
- * Copyright (C) 2008 - 2010 CodeLutin
- * %%
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public
- * License along with this program. If not, see
- * <http://www.gnu.org/licenses/gpl-3.0.html>.
- * #L%
- */
-
-package org.chorem.lima.business;
-
-import org.chorem.lima.business.ejbinterface.ReportService;
-
-public interface ReportServiceMonitorable extends ReportService, ServiceMonitorable {
-
-}
Deleted: trunk/lima-business/src/main/java/org/chorem/lima/business/ServiceMonitorable.java
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/ServiceMonitorable.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/ServiceMonitorable.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -1,32 +0,0 @@
-/*
- * #%L
- * Lima business
- *
- * $Id$
- * $HeadURL$
- * %%
- * Copyright (C) 2008 - 2010 CodeLutin
- * %%
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public
- * License along with this program. If not, see
- * <http://www.gnu.org/licenses/gpl-3.0.html>.
- * #L%
- */
-
-package org.chorem.lima.business;
-
-public interface ServiceMonitorable {
- void addServiceListener(ServiceListener l);
-
- void removeServiceListener(ServiceListener l);
-}
Copied: trunk/lima-business/src/main/java/org/chorem/lima/business/ServiceMonitorable.java (from rev 3322, trunk/lima-business/src/main/java/org/chorem/lima/business/ServiceMonitorable.java)
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/ServiceMonitorable.java (rev 0)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/ServiceMonitorable.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -0,0 +1,33 @@
+/*
+ * #%L
+ * Lima business
+ *
+ * $Id$
+ * $HeadURL$
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this program. If not, see
+ * <http://www.gnu.org/licenses/gpl-3.0.html>.
+ * #L%
+ */
+
+package org.chorem.lima.business;
+
+
+public interface ServiceMonitorable {
+ void addServiceListener(ServiceListener l);
+
+ void removeServiceListener(ServiceListener l);
+}
Deleted: trunk/lima-business/src/main/java/org/chorem/lima/business/VatStatementServiceMonitorable.java
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/VatStatementServiceMonitorable.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/VatStatementServiceMonitorable.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -1,31 +0,0 @@
-/*
- * #%L
- * Lima :: business
- *
- * $Id$
- * $HeadURL$
- * %%
- * Copyright (C) 2008 - 2011 CodeLutin
- * %%
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public
- * License along with this program. If not, see
- * <http://www.gnu.org/licenses/gpl-3.0.html>.
- * #L%
- */
-package org.chorem.lima.business;
-
-import org.chorem.lima.business.ejbinterface.VatStatementService;
-
-public interface VatStatementServiceMonitorable extends VatStatementService, ServiceMonitorable {
-
-}
Copied: trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/AccountServiceMonitorable.java (from rev 3322, trunk/lima-business/src/main/java/org/chorem/lima/business/AccountServiceMonitorable.java)
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/AccountServiceMonitorable.java (rev 0)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/AccountServiceMonitorable.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -0,0 +1,33 @@
+/*
+ * #%L
+ * Lima business
+ *
+ * $Id$
+ * $HeadURL$
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this program. If not, see
+ * <http://www.gnu.org/licenses/gpl-3.0.html>.
+ * #L%
+ */
+
+package org.chorem.lima.business.monitorable;
+
+import org.chorem.lima.business.ServiceMonitorable;
+import org.chorem.lima.business.ejbinterface.AccountService;
+
+public interface AccountServiceMonitorable extends AccountService, ServiceMonitorable {
+
+}
Copied: trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/DocumentServiceMonitorable.java (from rev 3322, trunk/lima-business/src/main/java/org/chorem/lima/business/DocumentServiceMonitorable.java)
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/DocumentServiceMonitorable.java (rev 0)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/DocumentServiceMonitorable.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -0,0 +1,33 @@
+/*
+ * #%L
+ * Lima business
+ *
+ * $Id$
+ * $HeadURL$
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this program. If not, see
+ * <http://www.gnu.org/licenses/gpl-3.0.html>.
+ * #L%
+ */
+
+package org.chorem.lima.business.monitorable;
+
+import org.chorem.lima.business.ServiceMonitorable;
+import org.chorem.lima.business.ejbinterface.DocumentService;
+
+public interface DocumentServiceMonitorable extends DocumentService, ServiceMonitorable {
+
+}
Copied: trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/EntryBookServiceMonitorable.java (from rev 3322, trunk/lima-business/src/main/java/org/chorem/lima/business/EntryBookServiceMonitorable.java)
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/EntryBookServiceMonitorable.java (rev 0)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/EntryBookServiceMonitorable.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -0,0 +1,33 @@
+/*
+ * #%L
+ * Lima business
+ *
+ * $Id$
+ * $HeadURL$
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this program. If not, see
+ * <http://www.gnu.org/licenses/gpl-3.0.html>.
+ * #L%
+ */
+
+package org.chorem.lima.business.monitorable;
+
+import org.chorem.lima.business.ServiceMonitorable;
+import org.chorem.lima.business.ejbinterface.EntryBookService;
+
+public interface EntryBookServiceMonitorable extends EntryBookService, ServiceMonitorable {
+
+}
Copied: trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/ExportServiceMonitorable.java (from rev 3322, trunk/lima-business/src/main/java/org/chorem/lima/business/ExportServiceMonitorable.java)
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/ExportServiceMonitorable.java (rev 0)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/ExportServiceMonitorable.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -0,0 +1,33 @@
+/*
+ * #%L
+ * Lima business
+ *
+ * $Id$
+ * $HeadURL$
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this program. If not, see
+ * <http://www.gnu.org/licenses/gpl-3.0.html>.
+ * #L%
+ */
+
+package org.chorem.lima.business.monitorable;
+
+import org.chorem.lima.business.ServiceMonitorable;
+import org.chorem.lima.business.ejbinterface.ExportService;
+
+public interface ExportServiceMonitorable extends ExportService, ServiceMonitorable {
+
+}
Copied: trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/FinancialPeriodServiceMonitorable.java (from rev 3322, trunk/lima-business/src/main/java/org/chorem/lima/business/FinancialPeriodServiceMonitorable.java)
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/FinancialPeriodServiceMonitorable.java (rev 0)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/FinancialPeriodServiceMonitorable.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -0,0 +1,33 @@
+/*
+ * #%L
+ * Lima business
+ *
+ * $Id$
+ * $HeadURL$
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this program. If not, see
+ * <http://www.gnu.org/licenses/gpl-3.0.html>.
+ * #L%
+ */
+
+package org.chorem.lima.business.monitorable;
+
+import org.chorem.lima.business.ServiceMonitorable;
+import org.chorem.lima.business.ejbinterface.FinancialPeriodService;
+
+public interface FinancialPeriodServiceMonitorable extends FinancialPeriodService, ServiceMonitorable {
+
+}
Copied: trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/FinancialStatementServiceMonitorable.java (from rev 3322, trunk/lima-business/src/main/java/org/chorem/lima/business/FinancialStatementServiceMonitorable.java)
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/FinancialStatementServiceMonitorable.java (rev 0)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/FinancialStatementServiceMonitorable.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -0,0 +1,33 @@
+/*
+ * #%L
+ * Lima business
+ *
+ * $Id$
+ * $HeadURL$
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this program. If not, see
+ * <http://www.gnu.org/licenses/gpl-3.0.html>.
+ * #L%
+ */
+
+package org.chorem.lima.business.monitorable;
+
+import org.chorem.lima.business.ServiceMonitorable;
+import org.chorem.lima.business.ejbinterface.FinancialStatementService;
+
+public interface FinancialStatementServiceMonitorable extends FinancialStatementService, ServiceMonitorable {
+
+}
Copied: trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/FinancialTransactionServiceMonitorable.java (from rev 3322, trunk/lima-business/src/main/java/org/chorem/lima/business/FinancialTransactionServiceMonitorable.java)
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/FinancialTransactionServiceMonitorable.java (rev 0)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/FinancialTransactionServiceMonitorable.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -0,0 +1,33 @@
+/*
+ * #%L
+ * Lima business
+ *
+ * $Id$
+ * $HeadURL$
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this program. If not, see
+ * <http://www.gnu.org/licenses/gpl-3.0.html>.
+ * #L%
+ */
+
+package org.chorem.lima.business.monitorable;
+
+import org.chorem.lima.business.ServiceMonitorable;
+import org.chorem.lima.business.ejbinterface.FinancialTransactionService;
+
+public interface FinancialTransactionServiceMonitorable extends FinancialTransactionService, ServiceMonitorable {
+
+}
Copied: trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/FiscalPeriodServiceMonitorable.java (from rev 3322, trunk/lima-business/src/main/java/org/chorem/lima/business/FiscalPeriodServiceMonitorable.java)
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/FiscalPeriodServiceMonitorable.java (rev 0)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/FiscalPeriodServiceMonitorable.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -0,0 +1,33 @@
+/*
+ * #%L
+ * Lima business
+ *
+ * $Id$
+ * $HeadURL$
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this program. If not, see
+ * <http://www.gnu.org/licenses/gpl-3.0.html>.
+ * #L%
+ */
+
+package org.chorem.lima.business.monitorable;
+
+import org.chorem.lima.business.ServiceMonitorable;
+import org.chorem.lima.business.ejbinterface.FiscalPeriodService;
+
+public interface FiscalPeriodServiceMonitorable extends FiscalPeriodService, ServiceMonitorable {
+
+}
Copied: trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/HttpServerServiceMonitorable.java (from rev 3322, trunk/lima-business/src/main/java/org/chorem/lima/business/HttpServerServiceMonitorable.java)
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/HttpServerServiceMonitorable.java (rev 0)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/HttpServerServiceMonitorable.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -0,0 +1,33 @@
+/*
+ * #%L
+ * Lima business
+ *
+ * $Id$
+ * $HeadURL$
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this program. If not, see
+ * <http://www.gnu.org/licenses/gpl-3.0.html>.
+ * #L%
+ */
+
+package org.chorem.lima.business.monitorable;
+
+import org.chorem.lima.business.ServiceMonitorable;
+import org.chorem.lima.business.ejbinterface.HttpServerService;
+
+public interface HttpServerServiceMonitorable extends HttpServerService, ServiceMonitorable {
+
+}
Copied: trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/IdentityServiceMonitorable.java (from rev 3322, trunk/lima-business/src/main/java/org/chorem/lima/business/IdentityServiceMonitorable.java)
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/IdentityServiceMonitorable.java (rev 0)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/IdentityServiceMonitorable.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -0,0 +1,33 @@
+/*
+ * #%L
+ * Lima business
+ *
+ * $Id$
+ * $HeadURL$
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this program. If not, see
+ * <http://www.gnu.org/licenses/gpl-3.0.html>.
+ * #L%
+ */
+
+package org.chorem.lima.business.monitorable;
+
+import org.chorem.lima.business.ServiceMonitorable;
+import org.chorem.lima.business.ejbinterface.IdentityService;
+
+public interface IdentityServiceMonitorable extends IdentityService, ServiceMonitorable {
+
+}
Copied: trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/ImportServiceMonitorable.java (from rev 3322, trunk/lima-business/src/main/java/org/chorem/lima/business/ImportServiceMonitorable.java)
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/ImportServiceMonitorable.java (rev 0)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/ImportServiceMonitorable.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -0,0 +1,33 @@
+/*
+ * #%L
+ * Lima business
+ *
+ * $Id$
+ * $HeadURL$
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this program. If not, see
+ * <http://www.gnu.org/licenses/gpl-3.0.html>.
+ * #L%
+ */
+
+package org.chorem.lima.business.monitorable;
+
+import org.chorem.lima.business.ServiceMonitorable;
+import org.chorem.lima.business.ejbinterface.ImportService;
+
+public interface ImportServiceMonitorable extends ImportService, ServiceMonitorable {
+
+}
Copied: trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/OptionsServiceMonitorable.java (from rev 3322, trunk/lima-business/src/main/java/org/chorem/lima/business/OptionsServiceMonitorable.java)
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/OptionsServiceMonitorable.java (rev 0)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/OptionsServiceMonitorable.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -0,0 +1,32 @@
+/*
+ * #%L
+ * Lima :: business
+ *
+ * $Id$
+ * $HeadURL$
+ * %%
+ * Copyright (C) 2008 - 2011 CodeLutin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this program. If not, see
+ * <http://www.gnu.org/licenses/gpl-3.0.html>.
+ * #L%
+ */
+package org.chorem.lima.business.monitorable;
+
+import org.chorem.lima.business.ServiceMonitorable;
+import org.chorem.lima.business.ejbinterface.OptionsService;
+
+public interface OptionsServiceMonitorable extends OptionsService, ServiceMonitorable {
+
+}
Copied: trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/ReportServiceMonitorable.java (from rev 3322, trunk/lima-business/src/main/java/org/chorem/lima/business/ReportServiceMonitorable.java)
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/ReportServiceMonitorable.java (rev 0)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/ReportServiceMonitorable.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -0,0 +1,33 @@
+/*
+ * #%L
+ * Lima business
+ *
+ * $Id$
+ * $HeadURL$
+ * %%
+ * Copyright (C) 2008 - 2010 CodeLutin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this program. If not, see
+ * <http://www.gnu.org/licenses/gpl-3.0.html>.
+ * #L%
+ */
+
+package org.chorem.lima.business.monitorable;
+
+import org.chorem.lima.business.ServiceMonitorable;
+import org.chorem.lima.business.ejbinterface.ReportService;
+
+public interface ReportServiceMonitorable extends ReportService, ServiceMonitorable {
+
+}
Copied: trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/VatStatementServiceMonitorable.java (from rev 3322, trunk/lima-business/src/main/java/org/chorem/lima/business/VatStatementServiceMonitorable.java)
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/VatStatementServiceMonitorable.java (rev 0)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/monitorable/VatStatementServiceMonitorable.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -0,0 +1,32 @@
+/*
+ * #%L
+ * Lima :: business
+ *
+ * $Id$
+ * $HeadURL$
+ * %%
+ * Copyright (C) 2008 - 2011 CodeLutin
+ * %%
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public
+ * License along with this program. If not, see
+ * <http://www.gnu.org/licenses/gpl-3.0.html>.
+ * #L%
+ */
+package org.chorem.lima.business.monitorable;
+
+import org.chorem.lima.business.ServiceMonitorable;
+import org.chorem.lima.business.ejbinterface.VatStatementService;
+
+public interface VatStatementServiceMonitorable extends VatStatementService, ServiceMonitorable {
+
+}
Modified: trunk/lima-business/src/test/java/org/chorem/lima/business/AbstractLimaTest.java
===================================================================
--- trunk/lima-business/src/test/java/org/chorem/lima/business/AbstractLimaTest.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-business/src/test/java/org/chorem/lima/business/AbstractLimaTest.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -46,6 +46,12 @@
import org.chorem.lima.business.ejbinterface.FinancialTransactionService;
import org.chorem.lima.business.ejbinterface.FiscalPeriodService;
import org.chorem.lima.business.ejbinterface.ReportService;
+import org.chorem.lima.business.monitorable.AccountServiceMonitorable;
+import org.chorem.lima.business.monitorable.EntryBookServiceMonitorable;
+import org.chorem.lima.business.monitorable.FinancialPeriodServiceMonitorable;
+import org.chorem.lima.business.monitorable.FinancialTransactionServiceMonitorable;
+import org.chorem.lima.business.monitorable.FiscalPeriodServiceMonitorable;
+import org.chorem.lima.business.monitorable.ReportServiceMonitorable;
import org.chorem.lima.entity.Account;
import org.chorem.lima.entity.AccountImpl;
import org.chorem.lima.entity.Entry;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/LimaConfig.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/LimaConfig.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/LimaConfig.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -29,7 +29,7 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.chorem.lima.actions.MiscAction;
-import org.chorem.lima.business.OptionsServiceMonitorable;
+import org.chorem.lima.business.monitorable.OptionsServiceMonitorable;
import org.chorem.lima.entity.LimaCallaoDAOHelper;
import org.chorem.lima.service.LimaServiceFactory;
import org.nuiton.topia.TopiaContextFactory;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/LimaMain.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/LimaMain.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/LimaMain.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -28,9 +28,9 @@
import jaxx.runtime.SwingUtil;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
-import org.chorem.lima.business.AccountServiceMonitorable;
-import org.chorem.lima.business.HttpServerServiceMonitorable;
import org.chorem.lima.business.ejbinterface.AccountService;
+import org.chorem.lima.business.monitorable.AccountServiceMonitorable;
+import org.chorem.lima.business.monitorable.HttpServerServiceMonitorable;
import org.chorem.lima.entity.Account;
import org.chorem.lima.service.LimaServiceFactory;
import org.chorem.lima.ui.MainView;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/MainViewHandler.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/MainViewHandler.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/MainViewHandler.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -33,7 +33,7 @@
import org.apache.commons.logging.LogFactory;
import org.chorem.lima.LimaConfig;
import org.chorem.lima.LimaContext;
-import org.chorem.lima.business.HttpServerServiceMonitorable;
+import org.chorem.lima.business.monitorable.HttpServerServiceMonitorable;
import org.chorem.lima.enums.ImportExportEnum;
import org.chorem.lima.service.LimaServiceFactory;
import org.chorem.lima.ui.account.AccountView;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/account/AccountTreeTableModel.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/account/AccountTreeTableModel.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/account/AccountTreeTableModel.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -27,10 +27,10 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
-import org.chorem.lima.business.AccountServiceMonitorable;
import org.chorem.lima.business.LimaBusinessException;
import org.chorem.lima.business.LimaException;
import org.chorem.lima.business.ejbinterface.AccountService;
+import org.chorem.lima.business.monitorable.AccountServiceMonitorable;
import org.chorem.lima.entity.Account;
import org.chorem.lima.service.LimaServiceFactory;
import org.chorem.lima.util.ErrorHelper;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/account/AccountViewHandler.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/account/AccountViewHandler.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/account/AccountViewHandler.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -28,11 +28,11 @@
import org.apache.commons.lang.ObjectUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
-import org.chorem.lima.business.AccountServiceMonitorable;
-import org.chorem.lima.business.ImportServiceMonitorable;
import org.chorem.lima.business.LimaException;
import org.chorem.lima.business.ServiceListener;
import org.chorem.lima.business.ejbinterface.AccountService;
+import org.chorem.lima.business.monitorable.AccountServiceMonitorable;
+import org.chorem.lima.business.monitorable.ImportServiceMonitorable;
import org.chorem.lima.entity.Account;
import org.chorem.lima.entity.AccountImpl;
import org.chorem.lima.enums.AccountsChartEnum;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/accountsreports/AccountsReportsViewHandler.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/accountsreports/AccountsReportsViewHandler.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/accountsreports/AccountsReportsViewHandler.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -28,11 +28,11 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.chorem.lima.beans.ReportsDatas;
-import org.chorem.lima.business.FinancialTransactionServiceMonitorable;
-import org.chorem.lima.business.ImportServiceMonitorable;
import org.chorem.lima.business.LimaException;
-import org.chorem.lima.business.ReportServiceMonitorable;
import org.chorem.lima.business.ServiceListener;
+import org.chorem.lima.business.monitorable.FinancialTransactionServiceMonitorable;
+import org.chorem.lima.business.monitorable.ImportServiceMonitorable;
+import org.chorem.lima.business.monitorable.ReportServiceMonitorable;
import org.chorem.lima.entity.Account;
import org.chorem.lima.service.LimaServiceFactory;
import org.chorem.lima.ui.combobox.AccountComboBoxModel;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/balance/BalanceViewHandler.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/balance/BalanceViewHandler.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/balance/BalanceViewHandler.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -29,13 +29,13 @@
import org.apache.commons.logging.LogFactory;
import org.chorem.lima.LimaConfig;
import org.chorem.lima.beans.BalanceTrial;
-import org.chorem.lima.business.FinancialTransactionServiceMonitorable;
-import org.chorem.lima.business.FiscalPeriodServiceMonitorable;
-import org.chorem.lima.business.HttpServerServiceMonitorable;
-import org.chorem.lima.business.ImportServiceMonitorable;
import org.chorem.lima.business.LimaException;
-import org.chorem.lima.business.ReportServiceMonitorable;
import org.chorem.lima.business.ServiceListener;
+import org.chorem.lima.business.monitorable.FinancialTransactionServiceMonitorable;
+import org.chorem.lima.business.monitorable.FiscalPeriodServiceMonitorable;
+import org.chorem.lima.business.monitorable.HttpServerServiceMonitorable;
+import org.chorem.lima.business.monitorable.ImportServiceMonitorable;
+import org.chorem.lima.business.monitorable.ReportServiceMonitorable;
import org.chorem.lima.business.utils.DocumentsEnum;
import org.chorem.lima.business.utils.FormatsEnum;
import org.chorem.lima.entity.FiscalPeriod;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/combobox/AccountComboBoxModel.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/combobox/AccountComboBoxModel.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/combobox/AccountComboBoxModel.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -27,11 +27,11 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
-import org.chorem.lima.business.AccountServiceMonitorable;
-import org.chorem.lima.business.ImportServiceMonitorable;
import org.chorem.lima.business.LimaException;
import org.chorem.lima.business.ServiceListener;
import org.chorem.lima.business.ejbinterface.AccountService;
+import org.chorem.lima.business.monitorable.AccountServiceMonitorable;
+import org.chorem.lima.business.monitorable.ImportServiceMonitorable;
import org.chorem.lima.entity.Account;
import org.chorem.lima.service.LimaServiceFactory;
import org.chorem.lima.ui.financialperiod.FinancialPeriodTableModel;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/combobox/EntryBookComboBoxModel.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/combobox/EntryBookComboBoxModel.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/combobox/EntryBookComboBoxModel.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -27,11 +27,11 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
-import org.chorem.lima.business.EntryBookServiceMonitorable;
-import org.chorem.lima.business.ImportServiceMonitorable;
import org.chorem.lima.business.LimaException;
import org.chorem.lima.business.ServiceListener;
import org.chorem.lima.business.ejbinterface.EntryBookService;
+import org.chorem.lima.business.monitorable.EntryBookServiceMonitorable;
+import org.chorem.lima.business.monitorable.ImportServiceMonitorable;
import org.chorem.lima.entity.EntryBook;
import org.chorem.lima.service.LimaServiceFactory;
import org.chorem.lima.ui.financialperiod.FinancialPeriodTableModel;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/combobox/FinancialPeriodComboBoxModel.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/combobox/FinancialPeriodComboBoxModel.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/combobox/FinancialPeriodComboBoxModel.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -27,12 +27,12 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
-import org.chorem.lima.business.FinancialPeriodServiceMonitorable;
-import org.chorem.lima.business.FiscalPeriodServiceMonitorable;
-import org.chorem.lima.business.ImportServiceMonitorable;
import org.chorem.lima.business.LimaException;
import org.chorem.lima.business.ServiceListener;
import org.chorem.lima.business.ejbinterface.FinancialPeriodService;
+import org.chorem.lima.business.monitorable.FinancialPeriodServiceMonitorable;
+import org.chorem.lima.business.monitorable.FiscalPeriodServiceMonitorable;
+import org.chorem.lima.business.monitorable.ImportServiceMonitorable;
import org.chorem.lima.entity.FinancialPeriod;
import org.chorem.lima.entity.FiscalPeriod;
import org.chorem.lima.service.LimaServiceFactory;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/combobox/FiscalPeriodComboBoxModel.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/combobox/FiscalPeriodComboBoxModel.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/combobox/FiscalPeriodComboBoxModel.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -27,11 +27,11 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
-import org.chorem.lima.business.FiscalPeriodServiceMonitorable;
-import org.chorem.lima.business.ImportServiceMonitorable;
import org.chorem.lima.business.LimaException;
import org.chorem.lima.business.ServiceListener;
import org.chorem.lima.business.ejbinterface.FiscalPeriodService;
+import org.chorem.lima.business.monitorable.FiscalPeriodServiceMonitorable;
+import org.chorem.lima.business.monitorable.ImportServiceMonitorable;
import org.chorem.lima.entity.FiscalPeriod;
import org.chorem.lima.service.LimaServiceFactory;
import org.chorem.lima.ui.financialperiod.FinancialPeriodTableModel;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/combobox/LetterComboBoxModel.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/combobox/LetterComboBoxModel.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/combobox/LetterComboBoxModel.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -27,11 +27,11 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
-import org.chorem.lima.business.FinancialTransactionServiceMonitorable;
-import org.chorem.lima.business.ImportServiceMonitorable;
import org.chorem.lima.business.LimaException;
import org.chorem.lima.business.ServiceListener;
import org.chorem.lima.business.ejbinterface.FinancialTransactionService;
+import org.chorem.lima.business.monitorable.FinancialTransactionServiceMonitorable;
+import org.chorem.lima.business.monitorable.ImportServiceMonitorable;
import org.chorem.lima.entity.Letter;
import org.chorem.lima.service.LimaServiceFactory;
import org.chorem.lima.ui.financialperiod.FinancialPeriodTableModel;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/combobox/SubAccountComboBoxModel.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/combobox/SubAccountComboBoxModel.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/combobox/SubAccountComboBoxModel.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -27,11 +27,11 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
-import org.chorem.lima.business.AccountServiceMonitorable;
-import org.chorem.lima.business.ImportServiceMonitorable;
import org.chorem.lima.business.LimaException;
import org.chorem.lima.business.ServiceListener;
import org.chorem.lima.business.ejbinterface.AccountService;
+import org.chorem.lima.business.monitorable.AccountServiceMonitorable;
+import org.chorem.lima.business.monitorable.ImportServiceMonitorable;
import org.chorem.lima.entity.Account;
import org.chorem.lima.service.LimaServiceFactory;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/entrybook/EntryBookTableModel.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/entrybook/EntryBookTableModel.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/entrybook/EntryBookTableModel.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -27,10 +27,10 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
-import org.chorem.lima.business.EntryBookServiceMonitorable;
-import org.chorem.lima.business.ImportServiceMonitorable;
import org.chorem.lima.business.LimaException;
import org.chorem.lima.business.ServiceListener;
+import org.chorem.lima.business.monitorable.EntryBookServiceMonitorable;
+import org.chorem.lima.business.monitorable.ImportServiceMonitorable;
import org.chorem.lima.entity.EntryBook;
import org.chorem.lima.service.LimaServiceFactory;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/entrybook/EntryBookViewHandler.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/entrybook/EntryBookViewHandler.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/entrybook/EntryBookViewHandler.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -27,9 +27,9 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
-import org.chorem.lima.business.EntryBookServiceMonitorable;
import org.chorem.lima.business.LimaException;
import org.chorem.lima.business.ejbinterface.EntryBookService;
+import org.chorem.lima.business.monitorable.EntryBookServiceMonitorable;
import org.chorem.lima.entity.EntryBook;
import org.chorem.lima.entity.EntryBookImpl;
import org.chorem.lima.enums.EntryBooksChartEnum;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/entrybooksreports/EntryBooksReportsViewHandler.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/entrybooksreports/EntryBooksReportsViewHandler.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/entrybooksreports/EntryBooksReportsViewHandler.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -29,14 +29,14 @@
import org.apache.commons.logging.LogFactory;
import org.chorem.lima.LimaConfig;
import org.chorem.lima.beans.ReportsDatas;
-import org.chorem.lima.business.DocumentServiceMonitorable;
-import org.chorem.lima.business.FinancialTransactionServiceMonitorable;
-import org.chorem.lima.business.FiscalPeriodServiceMonitorable;
-import org.chorem.lima.business.HttpServerServiceMonitorable;
-import org.chorem.lima.business.ImportServiceMonitorable;
import org.chorem.lima.business.LimaException;
-import org.chorem.lima.business.ReportServiceMonitorable;
import org.chorem.lima.business.ServiceListener;
+import org.chorem.lima.business.monitorable.DocumentServiceMonitorable;
+import org.chorem.lima.business.monitorable.FinancialTransactionServiceMonitorable;
+import org.chorem.lima.business.monitorable.FiscalPeriodServiceMonitorable;
+import org.chorem.lima.business.monitorable.HttpServerServiceMonitorable;
+import org.chorem.lima.business.monitorable.ImportServiceMonitorable;
+import org.chorem.lima.business.monitorable.ReportServiceMonitorable;
import org.chorem.lima.business.utils.DocumentsEnum;
import org.chorem.lima.business.utils.FormatsEnum;
import org.chorem.lima.entity.EntryBook;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialperiod/FinancialPeriodTable.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialperiod/FinancialPeriodTable.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialperiod/FinancialPeriodTable.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -27,9 +27,9 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
-import org.chorem.lima.business.FinancialPeriodServiceMonitorable;
import org.chorem.lima.business.LimaException;
import org.chorem.lima.business.ejbinterface.FinancialPeriodService;
+import org.chorem.lima.business.monitorable.FinancialPeriodServiceMonitorable;
import org.chorem.lima.entity.ClosedPeriodicEntryBook;
import org.chorem.lima.entity.ClosedPeriodicEntryBookImpl;
import org.chorem.lima.service.LimaServiceFactory;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialperiod/FinancialPeriodTableModel.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialperiod/FinancialPeriodTableModel.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialperiod/FinancialPeriodTableModel.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -27,11 +27,11 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
-import org.chorem.lima.business.FinancialPeriodServiceMonitorable;
-import org.chorem.lima.business.FiscalPeriodServiceMonitorable;
-import org.chorem.lima.business.ImportServiceMonitorable;
import org.chorem.lima.business.LimaException;
import org.chorem.lima.business.ServiceListener;
+import org.chorem.lima.business.monitorable.FinancialPeriodServiceMonitorable;
+import org.chorem.lima.business.monitorable.FiscalPeriodServiceMonitorable;
+import org.chorem.lima.business.monitorable.ImportServiceMonitorable;
import org.chorem.lima.business.utils.FinancialPeriodComparator;
import org.chorem.lima.entity.ClosedPeriodicEntryBook;
import org.chorem.lima.entity.EntryBook;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementChartTreeTableModel.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementChartTreeTableModel.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementChartTreeTableModel.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -27,8 +27,8 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
-import org.chorem.lima.business.FinancialStatementServiceMonitorable;
import org.chorem.lima.business.LimaException;
+import org.chorem.lima.business.monitorable.FinancialStatementServiceMonitorable;
import org.chorem.lima.entity.FinancialStatement;
import org.chorem.lima.entity.FinancialStatementImpl;
import org.chorem.lima.service.LimaServiceFactory;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementChartViewHandler.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementChartViewHandler.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementchart/FinancialStatementChartViewHandler.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -27,11 +27,11 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
-import org.chorem.lima.business.FinancialStatementServiceMonitorable;
-import org.chorem.lima.business.ImportServiceMonitorable;
import org.chorem.lima.business.LimaBusinessException;
import org.chorem.lima.business.LimaException;
import org.chorem.lima.business.ServiceListener;
+import org.chorem.lima.business.monitorable.FinancialStatementServiceMonitorable;
+import org.chorem.lima.business.monitorable.ImportServiceMonitorable;
import org.chorem.lima.entity.FinancialStatement;
import org.chorem.lima.entity.FinancialStatementImpl;
import org.chorem.lima.enums.FinancialStatementsChartEnum;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementreport/FinancialStatementReportTableModel.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementreport/FinancialStatementReportTableModel.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementreport/FinancialStatementReportTableModel.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -29,15 +29,15 @@
import org.apache.commons.logging.LogFactory;
import org.chorem.lima.LimaConfig;
import org.chorem.lima.beans.FinancialStatementAmounts;
-import org.chorem.lima.business.DocumentServiceMonitorable;
-import org.chorem.lima.business.FinancialStatementServiceMonitorable;
-import org.chorem.lima.business.FinancialTransactionServiceMonitorable;
-import org.chorem.lima.business.HttpServerServiceMonitorable;
-import org.chorem.lima.business.ImportServiceMonitorable;
import org.chorem.lima.business.LimaException;
import org.chorem.lima.business.ServiceListener;
import org.chorem.lima.business.ejbinterface.DocumentService;
import org.chorem.lima.business.ejbinterface.FinancialStatementService;
+import org.chorem.lima.business.monitorable.DocumentServiceMonitorable;
+import org.chorem.lima.business.monitorable.FinancialStatementServiceMonitorable;
+import org.chorem.lima.business.monitorable.FinancialTransactionServiceMonitorable;
+import org.chorem.lima.business.monitorable.HttpServerServiceMonitorable;
+import org.chorem.lima.business.monitorable.ImportServiceMonitorable;
import org.chorem.lima.business.utils.DocumentsEnum;
import org.chorem.lima.business.utils.FormatsEnum;
import org.chorem.lima.service.LimaServiceFactory;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementreport/FinancialStatementReportViewHandler.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementreport/FinancialStatementReportViewHandler.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialstatementreport/FinancialStatementReportViewHandler.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -27,8 +27,8 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
-import org.chorem.lima.business.FiscalPeriodServiceMonitorable;
import org.chorem.lima.business.LimaException;
+import org.chorem.lima.business.monitorable.FiscalPeriodServiceMonitorable;
import org.chorem.lima.business.utils.FormatsEnum;
import org.chorem.lima.entity.FiscalPeriod;
import org.chorem.lima.service.LimaServiceFactory;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialtransaction/FinancialTransactionTableModel.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialtransaction/FinancialTransactionTableModel.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialtransaction/FinancialTransactionTableModel.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -28,12 +28,12 @@
import org.apache.commons.lang.time.DateUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
-import org.chorem.lima.business.FinancialTransactionServiceMonitorable;
-import org.chorem.lima.business.ImportServiceMonitorable;
import org.chorem.lima.business.LimaBusinessException;
import org.chorem.lima.business.LimaException;
import org.chorem.lima.business.ServiceListener;
import org.chorem.lima.business.ejbinterface.FinancialTransactionService;
+import org.chorem.lima.business.monitorable.FinancialTransactionServiceMonitorable;
+import org.chorem.lima.business.monitorable.ImportServiceMonitorable;
import org.chorem.lima.business.utils.EntryComparator;
import org.chorem.lima.entity.Account;
import org.chorem.lima.entity.Entry;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialtransaction/FinancialTransactionViewHandler.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialtransaction/FinancialTransactionViewHandler.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialtransaction/FinancialTransactionViewHandler.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -28,8 +28,8 @@
import jaxx.runtime.SwingUtil;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
-import org.chorem.lima.business.EntryBookServiceMonitorable;
import org.chorem.lima.business.LimaException;
+import org.chorem.lima.business.monitorable.EntryBookServiceMonitorable;
import org.chorem.lima.entity.Entry;
import org.chorem.lima.entity.EntryBook;
import org.chorem.lima.entity.FinancialTransaction;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialtransactionsearch/FinancialTransactionSearchTableModel.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialtransactionsearch/FinancialTransactionSearchTableModel.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialtransactionsearch/FinancialTransactionSearchTableModel.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -29,13 +29,13 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.chorem.lima.beans.FinancialTransactionSearch;
-import org.chorem.lima.business.FinancialPeriodServiceMonitorable;
-import org.chorem.lima.business.FinancialTransactionServiceMonitorable;
import org.chorem.lima.business.LimaBusinessException;
import org.chorem.lima.business.LimaException;
import org.chorem.lima.business.ServiceListener;
import org.chorem.lima.business.ejbinterface.FinancialPeriodService;
import org.chorem.lima.business.ejbinterface.FinancialTransactionService;
+import org.chorem.lima.business.monitorable.FinancialPeriodServiceMonitorable;
+import org.chorem.lima.business.monitorable.FinancialTransactionServiceMonitorable;
import org.chorem.lima.entity.Account;
import org.chorem.lima.entity.Entry;
import org.chorem.lima.entity.EntryBook;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialtransactionsearch/FinancialTransactionSearchViewHandler.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialtransactionsearch/FinancialTransactionSearchViewHandler.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialtransactionsearch/FinancialTransactionSearchViewHandler.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -30,9 +30,9 @@
import org.chorem.lima.FinancialStatementWayEnum;
import org.chorem.lima.beans.FinancialTransactionSearch;
import org.chorem.lima.beans.FinancialTransactionSearchImpl;
-import org.chorem.lima.business.FinancialTransactionServiceMonitorable;
import org.chorem.lima.business.LimaException;
import org.chorem.lima.business.ejbinterface.FinancialTransactionService;
+import org.chorem.lima.business.monitorable.FinancialTransactionServiceMonitorable;
import org.chorem.lima.entity.Account;
import org.chorem.lima.entity.Entry;
import org.chorem.lima.entity.EntryBook;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialtransactionunbalanced/FinancialTransactionUnbalancedTableModel.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialtransactionunbalanced/FinancialTransactionUnbalancedTableModel.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/financialtransactionunbalanced/FinancialTransactionUnbalancedTableModel.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -27,10 +27,10 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
-import org.chorem.lima.business.FinancialTransactionServiceMonitorable;
import org.chorem.lima.business.LimaException;
import org.chorem.lima.business.ServiceListener;
import org.chorem.lima.business.ejbinterface.FinancialTransactionService;
+import org.chorem.lima.business.monitorable.FinancialTransactionServiceMonitorable;
import org.chorem.lima.business.utils.EntryComparator;
import org.chorem.lima.entity.Account;
import org.chorem.lima.entity.Entry;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/fiscalperiod/FiscalPeriodTableModel.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/fiscalperiod/FiscalPeriodTableModel.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/fiscalperiod/FiscalPeriodTableModel.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -27,13 +27,13 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
-import org.chorem.lima.business.FinancialTransactionServiceMonitorable;
-import org.chorem.lima.business.FiscalPeriodServiceMonitorable;
-import org.chorem.lima.business.ImportServiceMonitorable;
import org.chorem.lima.business.LimaException;
import org.chorem.lima.business.ServiceListener;
import org.chorem.lima.business.ejbinterface.FinancialTransactionService;
import org.chorem.lima.business.ejbinterface.FiscalPeriodService;
+import org.chorem.lima.business.monitorable.FinancialTransactionServiceMonitorable;
+import org.chorem.lima.business.monitorable.FiscalPeriodServiceMonitorable;
+import org.chorem.lima.business.monitorable.ImportServiceMonitorable;
import org.chorem.lima.business.utils.FiscalPeriodComparator;
import org.chorem.lima.entity.FinancialTransaction;
import org.chorem.lima.entity.FiscalPeriod;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/fiscalperiod/FiscalPeriodViewHandler.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/fiscalperiod/FiscalPeriodViewHandler.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/fiscalperiod/FiscalPeriodViewHandler.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -27,9 +27,9 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
-import org.chorem.lima.business.FinancialTransactionServiceMonitorable;
-import org.chorem.lima.business.FiscalPeriodServiceMonitorable;
import org.chorem.lima.business.LimaException;
+import org.chorem.lima.business.monitorable.FinancialTransactionServiceMonitorable;
+import org.chorem.lima.business.monitorable.FiscalPeriodServiceMonitorable;
import org.chorem.lima.entity.Entry;
import org.chorem.lima.entity.EntryBook;
import org.chorem.lima.entity.EntryBookImpl;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/home/AccountsPane.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/home/AccountsPane.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/home/AccountsPane.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -28,10 +28,10 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.chorem.lima.LimaContext;
-import org.chorem.lima.business.AccountServiceMonitorable;
-import org.chorem.lima.business.ImportServiceMonitorable;
import org.chorem.lima.business.LimaException;
import org.chorem.lima.business.ServiceListener;
+import org.chorem.lima.business.monitorable.AccountServiceMonitorable;
+import org.chorem.lima.business.monitorable.ImportServiceMonitorable;
import org.chorem.lima.entity.Account;
import org.chorem.lima.service.LimaServiceFactory;
import org.chorem.lima.ui.MainView;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/home/EntryBooksPane.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/home/EntryBooksPane.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/home/EntryBooksPane.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -28,11 +28,11 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.chorem.lima.LimaContext;
-import org.chorem.lima.business.EntryBookServiceMonitorable;
-import org.chorem.lima.business.ImportServiceMonitorable;
import org.chorem.lima.business.LimaException;
import org.chorem.lima.business.ServiceListener;
import org.chorem.lima.business.ejbinterface.EntryBookService;
+import org.chorem.lima.business.monitorable.EntryBookServiceMonitorable;
+import org.chorem.lima.business.monitorable.ImportServiceMonitorable;
import org.chorem.lima.entity.EntryBook;
import org.chorem.lima.service.LimaServiceFactory;
import org.chorem.lima.ui.MainView;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/home/FinancialTransactionsPane.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/home/FinancialTransactionsPane.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/home/FinancialTransactionsPane.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -28,13 +28,13 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.chorem.lima.LimaContext;
-import org.chorem.lima.business.FinancialTransactionServiceMonitorable;
-import org.chorem.lima.business.FiscalPeriodServiceMonitorable;
-import org.chorem.lima.business.ImportServiceMonitorable;
import org.chorem.lima.business.LimaException;
import org.chorem.lima.business.ServiceListener;
import org.chorem.lima.business.ejbinterface.FinancialTransactionService;
import org.chorem.lima.business.ejbinterface.FiscalPeriodService;
+import org.chorem.lima.business.monitorable.FinancialTransactionServiceMonitorable;
+import org.chorem.lima.business.monitorable.FiscalPeriodServiceMonitorable;
+import org.chorem.lima.business.monitorable.ImportServiceMonitorable;
import org.chorem.lima.entity.FinancialTransaction;
import org.chorem.lima.entity.FiscalPeriod;
import org.chorem.lima.service.LimaServiceFactory;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/home/FiscalPeriodsPane.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/home/FiscalPeriodsPane.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/home/FiscalPeriodsPane.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -28,11 +28,11 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.chorem.lima.LimaContext;
-import org.chorem.lima.business.FiscalPeriodServiceMonitorable;
-import org.chorem.lima.business.ImportServiceMonitorable;
import org.chorem.lima.business.LimaException;
import org.chorem.lima.business.ServiceListener;
import org.chorem.lima.business.ejbinterface.FiscalPeriodService;
+import org.chorem.lima.business.monitorable.FiscalPeriodServiceMonitorable;
+import org.chorem.lima.business.monitorable.ImportServiceMonitorable;
import org.chorem.lima.entity.FiscalPeriod;
import org.chorem.lima.service.LimaServiceFactory;
import org.chorem.lima.ui.MainView;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/identity/IdentityHandler.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/identity/IdentityHandler.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/identity/IdentityHandler.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -27,9 +27,9 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
-import org.chorem.lima.business.IdentityServiceMonitorable;
import org.chorem.lima.business.LimaException;
import org.chorem.lima.business.ejbinterface.IdentityService;
+import org.chorem.lima.business.monitorable.IdentityServiceMonitorable;
import org.chorem.lima.entity.Identity;
import org.chorem.lima.entity.IdentityImpl;
import org.chorem.lima.service.LimaServiceFactory;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/importexport/ImportExport.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/importexport/ImportExport.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/importexport/ImportExport.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -28,9 +28,9 @@
import org.apache.commons.io.IOUtils;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
-import org.chorem.lima.business.ExportServiceMonitorable;
-import org.chorem.lima.business.ImportServiceMonitorable;
import org.chorem.lima.business.LimaException;
+import org.chorem.lima.business.monitorable.ExportServiceMonitorable;
+import org.chorem.lima.business.monitorable.ImportServiceMonitorable;
import org.chorem.lima.business.utils.ImportExportEntityEnum;
import org.chorem.lima.enums.EncodingEnum;
import org.chorem.lima.enums.ImportExportEnum;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/ledger/LedgerViewHandler.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/ledger/LedgerViewHandler.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/ledger/LedgerViewHandler.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -30,15 +30,15 @@
import org.chorem.lima.LimaConfig;
import org.chorem.lima.beans.BalanceTrial;
import org.chorem.lima.beans.ReportsDatas;
-import org.chorem.lima.business.FinancialTransactionServiceMonitorable;
-import org.chorem.lima.business.FiscalPeriodServiceMonitorable;
-import org.chorem.lima.business.HttpServerServiceMonitorable;
-import org.chorem.lima.business.ImportServiceMonitorable;
import org.chorem.lima.business.LimaException;
-import org.chorem.lima.business.ReportServiceMonitorable;
import org.chorem.lima.business.ServiceListener;
import org.chorem.lima.business.ejbinterface.FiscalPeriodService;
import org.chorem.lima.business.ejbinterface.ReportService;
+import org.chorem.lima.business.monitorable.FinancialTransactionServiceMonitorable;
+import org.chorem.lima.business.monitorable.FiscalPeriodServiceMonitorable;
+import org.chorem.lima.business.monitorable.HttpServerServiceMonitorable;
+import org.chorem.lima.business.monitorable.ImportServiceMonitorable;
+import org.chorem.lima.business.monitorable.ReportServiceMonitorable;
import org.chorem.lima.business.utils.DocumentsEnum;
import org.chorem.lima.business.utils.EntryComparator;
import org.chorem.lima.business.utils.FormatsEnum;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/lettering/LetteringTableModel.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/lettering/LetteringTableModel.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/lettering/LetteringTableModel.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -27,11 +27,11 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
-import org.chorem.lima.business.FinancialTransactionServiceMonitorable;
-import org.chorem.lima.business.ImportServiceMonitorable;
import org.chorem.lima.business.LimaException;
import org.chorem.lima.business.ServiceListener;
import org.chorem.lima.business.ejbinterface.FinancialTransactionService;
+import org.chorem.lima.business.monitorable.FinancialTransactionServiceMonitorable;
+import org.chorem.lima.business.monitorable.ImportServiceMonitorable;
import org.chorem.lima.business.utils.EntryComparator;
import org.chorem.lima.entity.Account;
import org.chorem.lima.entity.Entry;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/lettering/LetteringViewHandler.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/lettering/LetteringViewHandler.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/lettering/LetteringViewHandler.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -27,8 +27,8 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
-import org.chorem.lima.business.FinancialTransactionServiceMonitorable;
import org.chorem.lima.business.LimaException;
+import org.chorem.lima.business.monitorable.FinancialTransactionServiceMonitorable;
import org.chorem.lima.entity.Letter;
import org.chorem.lima.service.LimaServiceFactory;
import org.chorem.lima.ui.combobox.FinancialPeriodComboBoxModel;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/opening/OpeningViewHandler.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/opening/OpeningViewHandler.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/opening/OpeningViewHandler.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -27,8 +27,8 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
-import org.chorem.lima.business.FiscalPeriodServiceMonitorable;
import org.chorem.lima.business.LimaException;
+import org.chorem.lima.business.monitorable.FiscalPeriodServiceMonitorable;
import org.chorem.lima.entity.FiscalPeriod;
import org.chorem.lima.entity.FiscalPeriodImpl;
import org.chorem.lima.enums.AccountsChartEnum;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/vatchart/VatChartTreeTableModel.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/vatchart/VatChartTreeTableModel.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/vatchart/VatChartTreeTableModel.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -27,7 +27,7 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.chorem.lima.business.LimaException;
-import org.chorem.lima.business.VatStatementServiceMonitorable;
+import org.chorem.lima.business.monitorable.VatStatementServiceMonitorable;
import org.chorem.lima.entity.VatStatement;
import org.chorem.lima.entity.VatStatementImpl;
import org.chorem.lima.service.LimaServiceFactory;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/vatchart/VatChartViewHandler.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/vatchart/VatChartViewHandler.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/vatchart/VatChartViewHandler.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -26,11 +26,11 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
-import org.chorem.lima.business.ImportServiceMonitorable;
import org.chorem.lima.business.LimaBusinessException;
import org.chorem.lima.business.LimaException;
import org.chorem.lima.business.ServiceListener;
-import org.chorem.lima.business.VatStatementServiceMonitorable;
+import org.chorem.lima.business.monitorable.ImportServiceMonitorable;
+import org.chorem.lima.business.monitorable.VatStatementServiceMonitorable;
import org.chorem.lima.entity.VatStatement;
import org.chorem.lima.entity.VatStatementImpl;
import org.chorem.lima.enums.ImportExportEnum;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/vatreports/VatReportTableModel.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/vatreports/VatReportTableModel.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/vatreports/VatReportTableModel.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -27,12 +27,12 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.chorem.lima.beans.VatStatementAmounts;
-import org.chorem.lima.business.FinancialTransactionServiceMonitorable;
-import org.chorem.lima.business.ImportServiceMonitorable;
import org.chorem.lima.business.LimaException;
import org.chorem.lima.business.ServiceListener;
-import org.chorem.lima.business.VatStatementServiceMonitorable;
import org.chorem.lima.business.ejbinterface.VatStatementService;
+import org.chorem.lima.business.monitorable.FinancialTransactionServiceMonitorable;
+import org.chorem.lima.business.monitorable.ImportServiceMonitorable;
+import org.chorem.lima.business.monitorable.VatStatementServiceMonitorable;
import org.chorem.lima.service.LimaServiceFactory;
import org.chorem.lima.util.ErrorHelper;
import org.nuiton.topia.TopiaException;
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/ui/vatreports/VatReportViewHandler.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/ui/vatreports/VatReportViewHandler.java 2012-02-22 09:57:21 UTC (rev 3337)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/ui/vatreports/VatReportViewHandler.java 2012-02-22 09:57:58 UTC (rev 3338)
@@ -27,8 +27,8 @@
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.chorem.lima.LimaConfig;
-import org.chorem.lima.business.DocumentServiceMonitorable;
-import org.chorem.lima.business.HttpServerServiceMonitorable;
+import org.chorem.lima.business.monitorable.DocumentServiceMonitorable;
+import org.chorem.lima.business.monitorable.HttpServerServiceMonitorable;
import org.chorem.lima.business.utils.DocumentsEnum;
import org.chorem.lima.service.LimaServiceFactory;
import org.chorem.lima.ui.celleditor.BigDecimalTableCellEditor;
1
0
r3337 - in trunk: lima-business/src/main/java/org/chorem/lima/business/ejbinterface lima-swing/src/main/java/org/chorem/lima/enums
by echatellier@users.chorem.org 22 Feb '12
by echatellier@users.chorem.org 22 Feb '12
22 Feb '12
Author: echatellier
Date: 2012-02-22 10:57:21 +0100 (Wed, 22 Feb 2012)
New Revision: 3337
Url: http://chorem.org/repositories/revision/lima/3337
Log:
Fix style ...
Modified:
trunk/lima-business/src/main/java/org/chorem/lima/business/ejbinterface/ImportService.java
trunk/lima-swing/src/main/java/org/chorem/lima/enums/EncodingEnum.java
Modified: trunk/lima-business/src/main/java/org/chorem/lima/business/ejbinterface/ImportService.java
===================================================================
--- trunk/lima-business/src/main/java/org/chorem/lima/business/ejbinterface/ImportService.java 2012-02-22 09:56:52 UTC (rev 3336)
+++ trunk/lima-business/src/main/java/org/chorem/lima/business/ejbinterface/ImportService.java 2012-02-22 09:57:21 UTC (rev 3337)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2008 - 2010 CodeLutin
+ * Copyright (C) 2008 - 2012 CodeLutin, Chatellier Eric
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as
@@ -37,9 +37,9 @@
*
* @author chatellier
* @version $Revision$
- * <p/>
- * Last update : $Date$
- * By : $Author$
+ * <p/>
+ * Last update : $Date$
+ * By : $Author$
*/
@Remote
public interface ImportService {
@@ -54,7 +54,6 @@
String importAccountsChartFromEbp(String datas) throws LimaException;
-
/**
* Import data as Sage Maestria export.
*
Modified: trunk/lima-swing/src/main/java/org/chorem/lima/enums/EncodingEnum.java
===================================================================
--- trunk/lima-swing/src/main/java/org/chorem/lima/enums/EncodingEnum.java 2012-02-22 09:56:52 UTC (rev 3336)
+++ trunk/lima-swing/src/main/java/org/chorem/lima/enums/EncodingEnum.java 2012-02-22 09:57:21 UTC (rev 3337)
@@ -5,7 +5,7 @@
* $Id$
* $HeadURL$
* %%
- * Copyright (C) 2008 - 2010 CodeLutin
+ * Copyright (C) 2008 - 2012 CodeLutin, Chatellier Eric
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as
@@ -27,14 +27,15 @@
public enum EncodingEnum {
- UTF8("UTF-8", "UTF-8 Lima"), ISOLATIN1("ISO-8859-1", "ISO-Latin-1 Excel / Windows"),
+ UTF8("UTF-8", "UTF-8 Lima"),
+ ISOLATIN1("ISO-8859-1", "ISO-Latin-1 Excel / Windows"),
MACROMAN("MacRoman", "MacRoman Excel / Mac");
- private final String encoding;
+ protected final String encoding;
- private final String description;
+ protected final String description;
- EncodingEnum(String encoding, String description) {
+ private EncodingEnum(String encoding, String description) {
this.encoding = encoding;
this.description = description;
}
@@ -68,5 +69,4 @@
}
return value;
}
-
}
1
0