This is an automated email from the git hooks/post-receive script. New change to branch feature/newReportBuilder in repository lima. See http://git.chorem.org/lima.git from b82fc56 refs #769 uniformasation des thèmes new 4e1051d refs #769 path for generating report can be set through config file, it allows user to set it's own report builder file new 801d27a refs #769 String -> Bigdecimal when there are numeric account values new c34e00d refs #769 set BigDecimal format for general entry book report new d93ebd0 refs #769 fix Balance report fill-up new d7a7b32 refs #769 Mise à jour des rapports new 8138d5b refs #769 services for Leger report new 988f41d refs #769 Leger report generation The 7 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit 988f41d4b632ca207d60b07209b8f563e5d2f1b1 Author: dcosse <japbiw74> Date: Fri Jan 23 00:05:08 2015 +0100 refs #769 Leger report generation commit 8138d5b0ebff1c6296cdad4320fcb50b7843c1e2 Author: dcosse <japbiw74> Date: Thu Jan 22 18:12:42 2015 +0100 refs #769 services for Leger report commit d7a7b32a38f4943674ab3bd14b50b662108dcdeb Author: dcosse <japbiw74> Date: Wed Jan 21 14:39:42 2015 +0100 refs #769 Mise à jour des rapports commit d93ebd03805fae66175b55c2a9ac113cceab349e Author: dcosse <japbiw74> Date: Wed Jan 14 16:00:56 2015 +0100 refs #769 fix Balance report fill-up commit c34e00d99d068643a358dcf1249d59220e240619 Author: dcosse <japbiw74> Date: Wed Jan 14 15:12:07 2015 +0100 refs #769 set BigDecimal format for general entry book report commit 801d27a13893e4b6ffbae60bbd465d520319278d Author: dcosse <japbiw74> Date: Wed Jan 14 15:00:57 2015 +0100 refs #769 String -> Bigdecimal when there are numeric account values commit 4e1051d71b1d4a96e5c6403889563029e86fd65d Author: dcosse <japbiw74> Date: Tue Jan 13 16:05:08 2015 +0100 refs #769 path for generating report can be set through config file, it allows user to set it's own report builder file Summary of changes: .../chorem/lima/business/api/OptionsService.java | 33 +- .../business/api/report/BalanceReportService.java | 3 +- .../api/report/GeneralEntryBookReportService.java | 3 +- .../business/api/report/LedgerReportService.java | 21 + .../report/ProvisionalEntryBookReportService.java | 5 +- .../chorem/lima/business/LimaServiceConfig.java | 241 +++++++++- .../lima/business/ejb/OptionsServiceImpl.java | 80 +++- .../lima/business/ejb/ReportServiceImpl.java | 1 - .../ejb/report/BalanceReportServiceImpl.java | 102 +++-- .../report/GeneralEntryBookReportServiceImpl.java | 62 +-- .../ejb/report/LedgerReportServiceImpl.java | 141 ++++++ .../ProvisionalEntryBookReportServiceImpl.java | 79 ++-- .../lima/business/utils}/BigDecimalToString.java | 38 +- .../resources/i18n/lima-business_en_GB.properties | 14 + .../resources/i18n/lima-business_fr_FR.properties | 19 + .../lima/business/EntryBookServiceImplTest.java | 9 +- .../org/chorem/lima/beans/BalanceAccountImpl.java | 54 +++ .../lima/beans/BalanceReportAccountImpl.java | 63 --- .../java/org/chorem/lima/entity/EntryTopiaDao.java | 2 +- lima-callao/src/main/xmi/accounting-model.zargo | Bin 51917 -> 56954 bytes .../src/main/java/org/chorem/lima/LimaMain.java | 20 + .../main/java/org/chorem/lima/LimaSwingConfig.java | 158 ++++++- .../org/chorem/lima/util/BigDecimalToString.java | 9 +- .../resources/i18n/lima-swing_en_GB.properties | 15 + .../resources/i18n/lima-swing_fr_FR.properties | 21 + lima-web/src/main/assembly/bin.xml | 35 ++ .../jasperreports/accounts/AccountReport.jrxml | 161 ------- .../main/jasperreports/balance/BalanceReport.jrxml | 275 ------------ .../balance/BalanceReportAccountReport.jrxml | 163 ++----- .../balance/BalanceSubAccountsReport.jrxml | 488 ++++++++++++++++----- .../DocumentReport.jrxml} | 199 +++------ .../DocumentReport.jrxml} | 25 +- .../EntryBookReport.jrxml | 83 ++-- .../FinancialPeriodReport.jrxml | 214 ++++----- .../entryBook/TransactionReport.jrxml | 297 +++++++++++++ .../DocumentReport.jrxml} | 86 +--- .../generalEntryBook/EntryBookMainReport.jrxml | 319 -------------- .../generalEntryBook/EntryBookPeriodReport.jrxml | 279 ++++++------ .../GeneralEntryBookEntryReport.jrxml | 157 +++---- .../provisionalEntryBook/Transaction.jrxml | 124 ------ .../chorem/lima/web/action/DocumentService.java | 315 ++++--------- .../lima/web/action/balance/ReportBuilder.java | 28 +- .../chorem/lima/web/service/HttpServerService.java | 26 +- 43 files changed, 2291 insertions(+), 2176 deletions(-) create mode 100644 lima-business-api/src/main/java/org/chorem/lima/business/api/report/LedgerReportService.java create mode 100644 lima-business/src/main/java/org/chorem/lima/business/ejb/report/LedgerReportServiceImpl.java copy {lima-swing/src/main/java/org/chorem/lima/util => lima-business/src/main/java/org/chorem/lima/business/utils}/BigDecimalToString.java (55%) create mode 100644 lima-callao/src/main/java/org/chorem/lima/beans/BalanceAccountImpl.java delete mode 100644 lima-callao/src/main/java/org/chorem/lima/beans/BalanceReportAccountImpl.java delete mode 100644 lima-web/src/main/jasperreports/accounts/AccountReport.jrxml delete mode 100644 lima-web/src/main/jasperreports/balance/BalanceReport.jrxml copy lima-web/src/main/jasperreports/{provisionalEntryBook/EntryBookMainReport.jrxml => balance/DocumentReport.jrxml} (61%) copy lima-web/src/main/jasperreports/{provisionalEntryBook/EntryBookMainReport.jrxml => entryBook/DocumentReport.jrxml} (94%) rename lima-web/src/main/jasperreports/{provisionalEntryBook => entryBook}/EntryBookReport.jrxml (61%) rename lima-web/src/main/jasperreports/{provisionalEntryBook => entryBook}/FinancialPeriodReport.jrxml (68%) create mode 100644 lima-web/src/main/jasperreports/entryBook/TransactionReport.jrxml rename lima-web/src/main/jasperreports/{provisionalEntryBook/EntryBookMainReport.jrxml => generalEntryBook/DocumentReport.jrxml} (80%) delete mode 100644 lima-web/src/main/jasperreports/generalEntryBook/EntryBookMainReport.jrxml delete mode 100644 lima-web/src/main/jasperreports/provisionalEntryBook/Transaction.jrxml -- To stop receiving notification emails like this one, please contact chorem.org SCM administrator <admin+scm@chorem.org>.