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 1bf510a commit cf03518
Show file tree
Hide file tree
Showing 9 changed files with 51 additions and 40 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
3 changes: 0 additions & 3 deletions changelogs/unreleased/83527.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/unreleased/83806.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/unreleased/84111.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/unreleased/84324.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/unreleased/84511.yml

This file was deleted.

19 changes: 0 additions & 19 deletions changelogs/unreleased/84891.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/unreleased/85215.yml

This file was deleted.

3 changes: 0 additions & 3 deletions changelogs/unreleased/85486.yml

This file was deleted.

0 comments on commit cf03518

Please sign in to comment.