Skip to content

Commit

Permalink
Release 5.3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
ale-axelor committed Jul 29, 2020
1 parent 2b5c6e0 commit 8f57715
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 4 deletions.
28 changes: 27 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,29 @@
# Changelog
## [5.3.9] - 2020-07-29
## Improvements
- USER: add a dashlet showing all user's permissions.
- EBICSTS: add new data init to bank statement file formats.
- Customer grid: show mainAddress details.

## Bug Fixes
- Report: Fix unit translation.
- TIMESHEET: Fix editor still being displayed even with a disabled config.
- BankDetails: Fix validation flow of iban.
- INVOICE: fix message on generate of subscription invoice.
- ACCOUNTING MOVE: remove all possibility to cancel a validated move.
- ICalendar: Update event synchronization.
- Template Maker: fix selection value translation based on locale.
- SaleOrder: Consider today's date also in invoice sale amount dashboard.
- CRM: set default nbrEmployees to 0.
- Conversion: corrected the case of conversion from void to void and improved message in case of conversion from void to unit or from unit to void.
- Accounting report: corrected bank reconciliation statement report, now display lines reconciled after date report.
- Invoice: Fix wrong translation in report.
- Project: Add missing translations.
- ACCOUNT CONFIG: Add missing translations.
- BANK PAYMENT: fix ICS number being linked to EBICS.
- INVOICE: Fix chart not taking refunds into account.
- INVOICE : Fix subscription invoice sub type change issue on ventilation.

## [5.3.8] - 2020-07-15
## Improvements
- ACCOUNT SITUATION: update account situation on invoice payment cancel and improve moveLine calculation.
Expand Down Expand Up @@ -377,7 +402,8 @@ When printing multiple manufacturing orders, operations from all orders were pri
- PRODUCT: Fix economicManufOrderQty displayed twice.


[5.3.8]: https://github.com/axelor/axelor-open-suite/compare/v5.3.7...V5.3.8
[5.3.9]: https://github.com/axelor/axelor-open-suite/compare/v5.3.8...v5.3.9
[5.3.8]: https://github.com/axelor/axelor-open-suite/compare/v5.3.7...v5.3.8
[5.3.7]: https://github.com/axelor/axelor-open-suite/compare/v5.3.6...v5.3.7
[5.3.6]: https://github.com/axelor/axelor-open-suite/compare/v5.3.5...v5.3.6
[5.3.5]: https://github.com/axelor/axelor-open-suite/compare/v5.3.4...v5.3.5
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
maven { url 'https://repository.axelor.com/nexus/public/' }
}
ext.openPlatformVersion = '5.2.6'
ext.appVersion = '5.3.8'
ext.appVersion = '5.3.9'
repositories repos
dependencies {
classpath "com.axelor:axelor-gradle:${openPlatformVersion}"
Expand Down
2 changes: 1 addition & 1 deletion modules/axelor-open-suite
Submodule axelor-open-suite updated 49 files
+27 −1 CHANGELOG.md
+5 −5 axelor-account/src/main/java/com/axelor/apps/account/db/repo/InvoiceManagementRepository.java
+3 −0 axelor-account/src/main/java/com/axelor/apps/account/exception/IExceptionMessage.java
+7 −0 axelor-account/src/main/java/com/axelor/apps/account/service/move/MoveCancelService.java
+9 −1 axelor-account/src/main/java/com/axelor/apps/account/service/move/MoveRemoveService.java
+1 −0 axelor-account/src/main/resources/i18n/messages.csv
+1 −0 axelor-account/src/main/resources/i18n/messages_en.csv
+4 −3 axelor-account/src/main/resources/i18n/messages_fr.csv
+114 −30 axelor-account/src/main/resources/reports/Invoice.rptdesign
+32 −18 axelor-account/src/main/resources/views/Charts.xml
+2 −1 axelor-account/src/main/resources/views/InvoicePayment.xml
+2 −2 axelor-admin/src/main/java/com/axelor/apps/base/web/DataBackupController.java
+2 −2 axelor-admin/src/main/resources/views/DataBackup.xml
+9 −2 axelor-bank-payment/src/main/resources/data-init/input/bankpayment_bankStatementFileFormat.csv
+9 −9 axelor-bank-payment/src/main/resources/reports/BankReconciliationStatement.rptdesign
+1 −1 axelor-bank-payment/src/main/resources/views/BankPaymentConfig.xml
+5 −1 axelor-base/src/main/java/com/axelor/apps/base/exceptions/IExceptionMessage.java
+14 −5 axelor-base/src/main/java/com/axelor/apps/base/ical/ICalendarService.java
+18 −4 axelor-base/src/main/java/com/axelor/apps/base/service/UnitConversionService.java
+3 −5 axelor-base/src/main/java/com/axelor/apps/base/service/message/MessageServiceBaseImpl.java
+24 −0 axelor-base/src/main/java/com/axelor/apps/base/service/message/TemplateMessageServiceBaseImpl.java
+6 −5 axelor-base/src/main/java/com/axelor/apps/base/web/BankDetailsController.java
+3 −0 axelor-base/src/main/resources/i18n/messages.csv
+3 −0 axelor-base/src/main/resources/i18n/messages_en.csv
+4 −1 axelor-base/src/main/resources/i18n/messages_fr.csv
+3 −3 axelor-base/src/main/resources/views/BankDetails.xml
+2 −0 axelor-base/src/main/resources/views/Partner.xml
+8 −0 axelor-base/src/main/resources/views/User.xml
+1 −1 axelor-business-support/src/main/resources/i18n/messages_fr.csv
+8 −2 axelor-crm/src/main/java/com/axelor/apps/crm/web/ConvertLeadWizardController.java
+3 −0 axelor-human-resource/src/main/java/com/axelor/apps/hr/module/HumanResourceModule.java
+3 −2 axelor-human-resource/src/main/java/com/axelor/apps/hr/service/EmployeeBonusService.java
+22 −0 axelor-human-resource/src/main/java/com/axelor/apps/hr/service/app/AppTimesheetService.java
+54 −0 axelor-human-resource/src/main/java/com/axelor/apps/hr/service/app/AppTimesheetServiceImpl.java
+2 −2 axelor-human-resource/src/main/java/com/axelor/apps/hr/service/batch/BatchSeniorityLeaveManagement.java
+37 −0 axelor-human-resource/src/main/java/com/axelor/apps/hr/web/AppTimesheetController.java
+1 −1 axelor-human-resource/src/main/resources/i18n/messages_fr.csv
+7 −3 axelor-human-resource/src/main/resources/views/AppTimesheet.xml
+1 −1 axelor-message/src/main/java/com/axelor/apps/message/service/TemplateMessageService.java
+5 −5 axelor-message/src/main/java/com/axelor/apps/message/service/TemplateMessageServiceImpl.java
+0 −3 axelor-production/src/main/java/com/axelor/apps/production/service/SaleOrderWorkflowServiceProductionImpl.java
+1 −1 axelor-sale/src/main/java/com/axelor/apps/sale/service/saleorder/print/SaleOrderPrintServiceImpl.java
+135 −30 axelor-sale/src/main/resources/reports/SaleOrder.rptdesign
+1 −1 axelor-sale/src/main/resources/views/SaleOrder.xml
+3 −1 ...n/src/main/java/com/axelor/apps/supplychain/service/workflow/WorkflowVentilationServiceSupplychainImpl.java
+1 −1 axelor-supplychain/src/main/resources/i18n/messages_en.csv
+21 −12 axelor-tool/src/main/java/com/axelor/tool/template/TemplateMaker.java
+3 −4 axelor-tool/src/test/java/com/axelor/apps/tool/templating/STTest.java
+1 −1 version.txt
2 changes: 1 addition & 1 deletion src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ db.default.password = *****
# ~~~~~
application.name = Axelor Open Suite
application.description = Axelor Entreprise Application
application.version = 5.3.8
application.version = 5.3.9
application.author = Axelor

# link to be used with header logo
Expand Down

0 comments on commit 8f57715

Please sign in to comment.