Skip to content

Commit

Permalink
Fixed #3592
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeholder committed Jul 19, 2024
1 parent 74af49c commit b54a84e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release Notes for Craft Commerce

## Unreleased

- Fixed a SQL error that occurred when exporting order line items. ([#3592](https://github.com/craftcms/commerce/issues/3592))

## 5.0.13 - 2024-07-18

- Fixed a SQL error that could occur when updating Commerce on PostgreSQL. ([#3588](https://github.com/craftcms/commerce/pull/3588))
Expand Down
2 changes: 1 addition & 1 deletion src/exports/LineItemExport.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function export(ElementQueryInterface $query): mixed
'lineitems.options',
'lineitems.optionsSignature',
'lineitems.price',
'lineitems.saleAmount',
'lineitems.promotionalAmount',
'lineitems.salePrice',
'lineitems.qty',
'lineitems.subtotal',
Expand Down

0 comments on commit b54a84e

Please sign in to comment.