Skip to content

Commit

Permalink
Release 5.3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
ale-axelor committed Jul 15, 2020
1 parent 51b8d73 commit 2b5c6e0
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 3 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,29 @@
# Changelog
## [5.3.8] - 2020-07-15
## Improvements
- ACCOUNT SITUATION: update account situation on invoice payment cancel and improve moveLine calculation.
- OPPORTUNITY: Change the data type of bestCase and worstCase fields from string to decimal.
- INVOICE: generate invoice from timetable list from purchase order.
- SaleOrder: Change title of numberOfPeriods.
- BankStatementLine: orderBy modification in AFB 120.
- Add tagCount for Expense, Timesheet, Leave request and Extra hours menus.

## Bug Fixes
- EXTRA HOURS: Fix missing translation.
- ACCOUNTING REPORT: Add missing translations in report.
- MRP: Remove duplicate information.
- ACCOUNTING INFORMATION: Add missing translation.
- TeamTaskCategory: Added translation for title of grid view and fields.
- AccountingBatch: Adding partner name in the bankDetails' not active anomaly message.
- Application config: Add missing translations.
- UnitCostCalculation: check NPE on product select.
- SaleOrder: Remove one externalReference which appears twice in grid view.
- AdvancedExport: Fix the bug of records being exported twice.
- INVOICE: corrected the possibility to add a payment when the amount remaining is inferior or equal to 0.
- EMPLOYEE: add first name search in advance search.
- Invoice: Fix multiple invoices not ventilating when generated from sale order with advance payment.
- TRAINING: Added domain to 'Required training' so it does not display itself.

## [5.3.7] - 2020-06-26
## Improvements
- LEAVE REQUEST: remove field duration length constraint
Expand Down Expand Up @@ -352,6 +377,7 @@ 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.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.7'
ext.appVersion = '5.3.8'
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 74 files
+26 −0 CHANGELOG.md
+3 −0 axelor-account/src/main/java/com/axelor/apps/account/exception/IExceptionMessage.java
+14 −14 axelor-account/src/main/java/com/axelor/apps/account/report/ITranslation.java
+5 −1 axelor-account/src/main/java/com/axelor/apps/account/service/invoice/InvoiceServiceImpl.java
+20 −0 axelor-account/src/main/java/com/axelor/apps/account/service/move/MoveToolService.java
+2 −0 ...ccount/src/main/java/com/axelor/apps/account/service/payment/invoice/payment/InvoicePaymentToolService.java
+26 −6 ...nt/src/main/java/com/axelor/apps/account/service/payment/invoice/payment/InvoicePaymentToolServiceImpl.java
+19 −0 axelor-account/src/main/java/com/axelor/apps/account/web/InvoicePaymentController.java
+7 −3 axelor-account/src/main/java/com/axelor/apps/account/web/MoveLineController.java
+34 −8 axelor-account/src/main/resources/i18n/messages.csv
+40 −9 axelor-account/src/main/resources/i18n/messages_de.csv
+34 −8 axelor-account/src/main/resources/i18n/messages_en.csv
+39 −9 axelor-account/src/main/resources/i18n/messages_es.csv
+35 −8 axelor-account/src/main/resources/i18n/messages_fr.csv
+39 −9 axelor-account/src/main/resources/i18n/messages_it.csv
+39 −9 axelor-account/src/main/resources/i18n/messages_nl.csv
+39 −9 axelor-account/src/main/resources/i18n/messages_pl.csv
+39 −9 axelor-account/src/main/resources/i18n/messages_pt.csv
+39 −9 axelor-account/src/main/resources/i18n/messages_ru.csv
+2 −1 axelor-account/src/main/resources/views/Invoice.xml
+2 −0 axelor-account/src/main/resources/views/InvoiceLine.xml
+7 −0 axelor-account/src/main/resources/views/InvoicePayment.xml
+6 −1 ...r-bank-payment/src/main/java/com/axelor/apps/bankpayment/service/batch/BatchDirectDebitPaymentSchedule.java
+2 −2 axelor-bank-payment/src/main/resources/views/BankStatementLineAFB120.xml
+6 −2 axelor-base/src/main/java/com/axelor/apps/base/service/advancedExport/AdvancedExportServiceImpl.java
+4 −4 axelor-base/src/main/resources/i18n/messages_fr.csv
+1 −1 axelor-base/src/main/resources/views/AdvanceExportLine.xml
+5 −2 axelor-business-project/src/main/java/com/axelor/apps/businessproject/service/InvoiceServiceProjectImpl.java
+3 −3 axelor-business-project/src/main/resources/i18n/messages_fr.csv
+8 −4 axelor-cash-management/src/main/java/com/axelor/apps/cash/management/service/ForecastRecapService.java
+2 −2 axelor-crm/src/main/resources/domains/Opportunity.xml
+8 −6 axelor-human-resource/src/main/java/com/axelor/apps/hr/service/HRMenuTagService.java
+2 −1 axelor-human-resource/src/main/java/com/axelor/apps/hr/web/expense/ExpenseController.java
+2 −1 axelor-human-resource/src/main/java/com/axelor/apps/hr/web/extra/hours/ExtraHoursController.java
+2 −0 axelor-human-resource/src/main/java/com/axelor/apps/hr/web/leave/LeaveController.java
+2 −0 axelor-human-resource/src/main/java/com/axelor/apps/hr/web/timesheet/TimesheetController.java
+11 −3 axelor-human-resource/src/main/resources/i18n/messages.csv
+81 −11 axelor-human-resource/src/main/resources/i18n/messages_de.csv
+11 −3 axelor-human-resource/src/main/resources/i18n/messages_en.csv
+81 −11 axelor-human-resource/src/main/resources/i18n/messages_es.csv
+11 −3 axelor-human-resource/src/main/resources/i18n/messages_fr.csv
+81 −11 axelor-human-resource/src/main/resources/i18n/messages_it.csv
+81 −11 axelor-human-resource/src/main/resources/i18n/messages_nl.csv
+81 −11 axelor-human-resource/src/main/resources/i18n/messages_pl.csv
+81 −11 axelor-human-resource/src/main/resources/i18n/messages_pt.csv
+81 −11 axelor-human-resource/src/main/resources/i18n/messages_ru.csv
+1 −0 axelor-human-resource/src/main/resources/views/Employee.xml
+2 −2 axelor-human-resource/src/main/resources/views/ExtraHoursType.xml
+7 −7 axelor-human-resource/src/main/resources/views/LeaveRequest.xml
+9 −9 axelor-human-resource/src/main/resources/views/Menu.xml
+1 −1 axelor-production/src/main/resources/i18n/messages_fr.csv
+0 −4 axelor-project/src/main/java/com/axelor/apps/project/exception/IExceptionMessage.java
+0 −5 axelor-project/src/main/java/com/axelor/apps/project/service/ProjectService.java
+0 −39 axelor-project/src/main/java/com/axelor/apps/project/service/ProjectServiceImpl.java
+1 −1 axelor-project/src/main/resources/i18n/messages_fr.csv
+1 −1 axelor-sale/src/main/resources/domains/SaleOrder.xml
+3 −2 axelor-sale/src/main/resources/i18n/messages.csv
+3 −2 axelor-sale/src/main/resources/i18n/messages_en.csv
+3 −2 axelor-sale/src/main/resources/i18n/messages_fr.csv
+0 −1 axelor-sale/src/main/resources/views/SaleOrder.xml
+12 −6 axelor-sale/src/main/resources/views/SaleOrderLine.xml
+2 −0 axelor-stock/src/main/resources/views/StockMoveLine.xml
+3 −3 axelor-studio/src/main/webapp/custom-model/static/js/main.js
+6 −0 axelor-supplychain/src/main/java/com/axelor/apps/supplychain/exception/IExceptionMessage.java
+5 −2 ...supplychain/src/main/java/com/axelor/apps/supplychain/service/InvoicePaymentToolServiceSupplychainImpl.java
+165 −0 axelor-supplychain/src/main/java/com/axelor/apps/supplychain/service/PurchaseOrderInvoiceServiceImpl.java
+13 −5 axelor-supplychain/src/main/java/com/axelor/apps/supplychain/service/TimetableServiceImpl.java
+6 −3 ...or-supplychain/src/main/java/com/axelor/apps/supplychain/service/invoice/InvoiceServiceSupplychainImpl.java
+11 −0 axelor-supplychain/src/main/java/com/axelor/apps/supplychain/web/TimetableController.java
+1 −1 axelor-supplychain/src/main/resources/i18n/messages_fr.csv
+0 −5 axelor-supplychain/src/main/resources/views/Mrp.xml
+1 −1 axelor-talent/src/main/resources/views/Training.xml
+2 −1 axelor-tool/src/main/java/com/axelor/apps/tool/StringTool.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.7
application.version = 5.3.8
application.author = Axelor

# link to be used with header logo
Expand Down

0 comments on commit 2b5c6e0

Please sign in to comment.