Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Fixed

- Restore inline editing functionality in items tab
- Fix SQL request

## [2.11.3] - 2025-10-14

Expand Down
6 changes: 3 additions & 3 deletions inc/order_item.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -1380,9 +1380,9 @@ public function getAllPrices($orders_id)
$criteria = [
'SELECT' => [
'SUM' => [
'price_ati AS priceTTC',
'price_discounted AS priceHT',
'price_ati` - `price_discounted AS priceTVA'
'`price_ati` AS priceTTC',
'`price_discounted` AS priceHT',
'`price_ati` - `price_discounted` AS priceTVA'
]
],
'FROM' => self::getTable(),
Expand Down
Loading