Skip to content

Commit

Permalink
Release 6.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ale-axelor committed Dec 16, 2022
1 parent ebfc3d6 commit 61edfac
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 3 deletions.
43 changes: 43 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,45 @@
## [6.4.2] (2022-12-16)

#### Features

* Year: Demo data for civil, fiscal and payroll years are now based on the current year.

Add the possibility to fix a date element when using TODAY in demo data with equal sign.
Example: TODAY[-4y=1M=1d] will give us 2018-01-01 if we are in 2022.


#### Fixed

* Bill of materials: fix error when accessing general bill of materials menu.
* Invoice: fixed an error occurring when total A.T.I was equal to zero.
* Leave request: fix error message when sending leave request when company is missing.
* Accounting reports: add origin informations (ref and date) on general ledger and partner general ledger.
* Move line: clear fields related to partner when partner is emptied.
* Invoice: correctly hide refund list when there is no refund.
* Invoice: fixed an error occurring when creating a line without product.
* Move: on move generation from template view, correctly set "generate move" button as readonly when there is no input.
* Task editor: fix error while dragging task.
* Partner address: improve UI when adding an address to a partner to avoid inconsistencies.
* Menu builder: eval is automatically added for context value fixed.
* Menu builder: set context by default when overriding an existing menu.
* Account management: set default values when we create a new record in account management grid.
* Purchase Order: add missing translation when generating advance payment.
* Debt recovery history: prevent the user from inserting new rows in grid view.
* Bank Order: Payment mode and file format now are correctly reset when order type select is changed.
* Stock move: picking order comments panel are now correctly hidden for supplier arrivals.
* Purchase order report: fixed an issue where product name was displayed instead of specific supplier product name.
* Fixed asset category: filter IFRS account fields by charge account type.
* Accounting report: fixed wrongly defined display condition on analytic axis, analytic account, account type fields for analytic type reports form view.
* Translation: fix wrong french translation for Ongoing.
* Purchase order: now correctly takes the default virtual supplier stock location when creating a purchase order.
* Bank statement rule: Add filter on counter part account to avoid selecting view accounts.
* Product details: fixed permission so users do not need write permissions on Product to use this feature.
* Stock move: fixed query exception that happened on the form view when the user had no active company.
* Contract / ContractVersion: allow to correctly fill dates when 'isPeriodicInvoicing' is activated on a new contract version.
* Account Management : Add filter by company on journal field.
* Expense: now takes the correct bank details when registering a payment.
* Data Backup: fixed an error occurring when creating a data backup with the anonymization enabled.

## [6.4.1] (2022-12-08)

#### Features
Expand Down Expand Up @@ -211,5 +253,6 @@ A new mobile application for stock and production modules are now available, the
* Account budget: Remove checkAvailableBudget in budget, which was unused.
* Accounting report: removed old specific export format for Sale, Purchase, Treasury, Refund (1006 to 1009 accounting report type). Already replaced per the generic Journal entry export with a filter on the journal.

[6.4.2]: https://github.com/axelor/axelor-open-suite/compare/v6.4.1...v6.4.2
[6.4.1]: https://github.com/axelor/axelor-open-suite/compare/v6.4.0...v6.4.1
[6.4.0]: https://github.com/axelor/axelor-open-suite/compare/v6.3.5...v6.4.0
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ buildscript {
maven { url 'https://repository.axelor.com/nexus/public/' }
}
ext.openPlatformVersion = '5.4.17'
ext.appVersion = '6.4.1'
ext.appVersion = '6.4.2'
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 81 files
+43 −0 CHANGELOG.md
+6 −0 axelor-account/src/main/java/com/axelor/apps/account/report/ITranslation.java
+4 −0 axelor-account/src/main/java/com/axelor/apps/account/service/invoice/InvoiceTermServiceImpl.java
+16 −15 axelor-account/src/main/java/com/axelor/apps/account/service/invoice/generator/tax/TaxInvoiceLine.java
+3 −0 axelor-account/src/main/resources/i18n/messages.csv
+3 −0 axelor-account/src/main/resources/i18n/messages_en.csv
+4 −1 axelor-account/src/main/resources/i18n/messages_fr.csv
+212 −12 axelor-account/src/main/resources/reports/AccountingReportType1.rptdesign
+223 −5 axelor-account/src/main/resources/reports/AccountingReportType7.rptdesign
+14 −2 axelor-account/src/main/resources/views/AccountManagement.xml
+11 −8 axelor-account/src/main/resources/views/AccountingReport.xml
+1 −1 axelor-account/src/main/resources/views/DebtRecoveryHistory.xml
+3 −2 axelor-account/src/main/resources/views/DepositSlip.xml
+2 −2 axelor-account/src/main/resources/views/FixedAssetCategory.xml
+1 −1 axelor-account/src/main/resources/views/Invoice.xml
+13 −5 axelor-account/src/main/resources/views/MoveLine.xml
+4 −3 axelor-account/src/main/resources/views/MoveTemplate.xml
+19 −6 axelor-admin/src/main/java/com/axelor/apps/base/service/app/DataBackupCreateService.java
+2 −16 axelor-bank-payment/src/main/resources/i18n/messages.csv
+2 −16 axelor-bank-payment/src/main/resources/i18n/messages_en.csv
+2 −16 axelor-bank-payment/src/main/resources/i18n/messages_fr.csv
+7 −1 axelor-bank-payment/src/main/resources/views/BankOrder.xml
+14 −11 axelor-bank-payment/src/main/resources/views/BankReconciliation.xml
+1 −1 axelor-bank-payment/src/main/resources/views/BankStatementRule.xml
+1 −1 axelor-bank-payment/src/main/resources/views/EbicsPartner.xml
+198 −116 axelor-base/src/main/java/com/axelor/csv/script/ImportDateTime.java
+3 −1 axelor-base/src/main/java/com/axelor/csv/script/ImportYear.java
+7 −5 axelor-base/src/main/resources/demo/base-config.xml
+12 −12 axelor-base/src/main/resources/demo/en/base_year.csv
+13 −13 axelor-base/src/main/resources/demo/fr/base_year.csv
+1 −1 axelor-base/src/main/resources/views/AppBase.xml
+2 −1 axelor-base/src/main/resources/views/Partner.xml
+3 −2 axelor-base/src/main/resources/views/PartnerAddress.xml
+73 −5 axelor-base/src/test/java/com/axelor/apps/base/test/TestImportDateTime.java
+16 −0 axelor-contract/src/main/resources/data-init/input-config.xml
+2 −0 axelor-contract/src/main/resources/data-init/input/meta_helpEN.csv
+2 −0 axelor-contract/src/main/resources/data-init/input/meta_helpFR.csv
+5 −1 axelor-contract/src/main/resources/views/ContractVersion.xml
+2 −0 axelor-human-resource/src/main/java/com/axelor/apps/hr/exception/HumanResourceExceptionMessage.java
+4 −5 axelor-human-resource/src/main/java/com/axelor/apps/hr/service/expense/ExpenseServiceImpl.java
+13 −0 axelor-human-resource/src/main/java/com/axelor/apps/hr/service/leave/LeaveServiceImpl.java
+1 −0 axelor-human-resource/src/main/resources/i18n/messages.csv
+1 −0 axelor-human-resource/src/main/resources/i18n/messages_en.csv
+1 −0 axelor-human-resource/src/main/resources/i18n/messages_fr.csv
+1 −1 axelor-human-resource/src/main/resources/views/Employment.xml
+1 −1 axelor-human-resource/src/main/resources/views/Expense.xml
+14 −5 axelor-human-resource/src/main/resources/views/LeaveRequest.xml
+0 −5 axelor-human-resource/src/main/resources/views/Timesheet.xml
+4 −2 axelor-human-resource/src/main/resources/views/Year.xml
+13 −0 axelor-maintenance/src/main/resources/views/Menu.xml
+0 −1 axelor-production/src/main/resources/views/Menu.xml
+4 −2 axelor-production/src/main/resources/views/Year.xml
+6 −6 axelor-project/src/main/webapp/project/task-editor/asset-manifest.json
+1 −1 axelor-project/src/main/webapp/project/task-editor/index.html
+9 −9 axelor-project/src/main/webapp/project/task-editor/precache-manifest.3b5a915cce538b4375ae97a33d7d4f1c.js
+1 −1 axelor-project/src/main/webapp/project/task-editor/service-worker.js
+19 −0 axelor-project/src/main/webapp/project/task-editor/static/js/2.0ae39cd8.chunk.js
+22 −0 axelor-project/src/main/webapp/project/task-editor/static/js/2.0ae39cd8.chunk.js.LICENSE.txt
+0 −17 axelor-project/src/main/webapp/project/task-editor/static/js/2.cb3c5fc6.chunk.js
+18 −0 axelor-project/src/main/webapp/project/task-editor/static/js/main.9db16018.chunk.js
+0 −18 axelor-project/src/main/webapp/project/task-editor/static/js/main.b1802c61.chunk.js
+3 −3 axelor-purchase/src/main/resources/reports/PurchaseOrder.rptdesign
+3 −3 axelor-purchase/src/main/resources/views/PurchaseOrder.xml
+8 −6 axelor-sale/src/main/resources/views/SaleOrder.xml
+4 −3 axelor-stock/src/main/resources/views/LogisticalForm.xml
+5 −5 axelor-stock/src/main/resources/views/StockMove.xml
+7 −3 axelor-studio/src/main/java/com/axelor/studio/service/ImportService.java
+10 −1 axelor-studio/src/main/java/com/axelor/studio/service/builder/ActionViewBuilderService.java
+16 −2 axelor-studio/src/main/java/com/axelor/studio/service/builder/MenuBuilderService.java
+2 −2 axelor-studio/src/main/java/com/axelor/studio/service/builder/SelectionBuilderService.java
+22 −16 axelor-studio/src/main/java/com/axelor/studio/service/loader/AppLoaderExportServiceImpl.java
+28 −31 axelor-studio/src/main/java/com/axelor/studio/service/loader/AppLoaderImportServiceImpl.java
+9 −6 axelor-studio/src/main/java/com/axelor/studio/web/SelectionBuilderController.java
+1 −1 axelor-supplychain/src/main/java/com/axelor/apps/supplychain/service/PurchaseOrderServiceSupplychainImpl.java
+7 −8 axelor-supplychain/src/main/java/com/axelor/apps/supplychain/service/SaleOrderServiceSupplychainImpl.java
+1 −1 axelor-supplychain/src/main/resources/i18n/messages_fr.csv
+1 −2 axelor-supplychain/src/main/resources/views/Menu.xml
+2 −1 axelor-talent/src/main/resources/views/TrainingRegister.xml
+2 −2 axelor-tool/src/main/java/com/axelor/apps/tool/api/HttpExceptionHandlerImpl.java
+3 −0 axelor-tool/src/main/java/com/axelor/apps/tool/exception/ToolExceptionMessage.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 = 6.4.1
application.version = 6.4.2
application.author = Axelor

# link to be used with header logo
Expand Down

0 comments on commit 61edfac

Please sign in to comment.