Skip to content

Commit

Permalink
Release 8.0.17
Browse files Browse the repository at this point in the history
  • Loading branch information
ale-axelor committed Oct 17, 2024
1 parent 222fda9 commit 2ac1d6c
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 3 deletions.
51 changes: 51 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,53 @@
## [8.0.17] (2024-10-17)

### Fixes
#### Base

* Home action: fixed display issue in user and group form views.

#### Account

* Tax payment move line: fixed an issue where reverse taxes were not reverted, which was making VAT statement reports wrong.

#### Human Resource

* Timesheet API: fixed an error occurring when creating a timesheet without timer
* Lunch vouchers: fixed an issue where some employees were not included in lunch voucher computation.

#### Project

* Project: fixed code when generating project from sale order.

#### Sale

* Sale Order: fixed an issue were sequence was reset when going back to draft by creating a new version.
* Complementary product selected: correctly prevent the user from modfying selected complementary product on a confirmed sale order.

#### Stock

* Stock API: fixed issue on stock correction creation request.


### Developer

#### Account

Please run this SQL script if you have the issue related to reverse taxes in VAT statement report:

```sql
UPDATE account_tax_payment_move_line tpml
SET tax_amount = -tax_amount
WHERE tpml.fiscal_position IS NOT NULL
AND EXISTS (
SELECT 1
FROM account_tax_equiv_reverse_charge_tax_set terc
LEFT JOIN account_tax_equiv ate ON ate.id = terc.account_tax_equiv
LEFT JOIN account_tax tax ON tax.id = terc.reverse_charge_tax_set
LEFT JOIN account_tax_line tl ON tax.id = tl.tax
WHERE ate.fiscal_position = tpml.fiscal_position AND tl.id = tpml.origin_tax_line
);
```

## [8.0.16] (2024-10-03)

### Fixes
Expand Down Expand Up @@ -1097,6 +1147,7 @@ The resulting locale will be used for translation, date and currency formats.
* Authentication: add a new API to fetch user permissions.
* HR: add new configuration to manage timesheets from the mobile application.

[8.0.17]: https://github.com/axelor/axelor-open-suite/compare/v8.0.16...v8.0.17
[8.0.16]: https://github.com/axelor/axelor-open-suite/compare/v8.0.15...v8.0.16
[8.0.15]: https://github.com/axelor/axelor-open-suite/compare/v8.0.14...v8.0.15
[8.0.14]: https://github.com/axelor/axelor-open-suite/compare/v8.0.13...v8.0.14
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ allprojects {
apply plugin: 'eclipse'

group = 'com.axelor.apps'
version = '8.0.16'
version = '8.0.17'

java {
toolchain {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/axelor-config.properties
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ hibernate.hikari.idleTimeout = 300000
# ~~~~~
application.name = Axelor Open Suite
application.description = Axelor Entreprise Application
application.version = 8.0.16
application.version = 8.0.17
application.author = Axelor
application.copyright = Copyright (c) {year} Axelor. All Rights Reserved.

Expand Down

0 comments on commit 2ac1d6c

Please sign in to comment.