Skip to content

Commit 535aabd

Browse files
committed
[BUGFIX] Map JSON string from database to domain model property
Relates: #668
1 parent 8d8a40b commit 535aabd

4 files changed

Lines changed: 8 additions & 2 deletions

File tree

Classes/Domain/Model/Order/AbstractAddress.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ abstract class AbstractAddress extends AbstractEntity
4545

4646
protected string $fax = '';
4747

48+
/**
49+
* @var string don't remove, it's necessary for extbase database mapping
50+
*/
4851
protected string $additional = '';
4952

5053
public function toArray(): array

Classes/Domain/Model/Order/Item.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ class Item extends AbstractEntity
4444

4545
protected string $additionalData = '';
4646

47+
/**
48+
* @var string don't remove, it's necessary for extbase database mapping
49+
*/
4750
protected string $additional = '';
4851

4952
protected string $currency = '';

Documentation/guides.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
interlink-shortcode="extcode/cart"
1212
/>
1313
<project title="Cart"
14-
release="10.2.6"
14+
release="10.2.7"
1515
version="10.2"
1616
copyright="2018 - 2024"
1717
/>

ext_emconf.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
'title' => 'Cart',
55
'description' => 'Shopping Cart(s) for TYPO3',
66
'category' => 'plugin',
7-
'version' => '10.2.6',
7+
'version' => '10.2.7',
88
'state' => 'stable',
99
'author' => 'Daniel Gohlke',
1010
'author_email' => 'ext@extco.de',

0 commit comments

Comments
 (0)