There was an error while loading. Please reload this page.
1 parent 5795a39 commit 076267bCopy full SHA for 076267b
2 files changed
src/Model/Variation.php
@@ -110,15 +110,15 @@ class Variation extends DataObject
110
'Content' => 'HTMLText',
111
'WeightModifier' => 'Decimal(9,3)',
112
'CodeModifier' => 'Text',
113
- 'PriceModifier' => 'Currency(9,3)',
+ 'PriceModifier' => 'Currency(9,4)',
114
'WeightModifierAction' => "Enum('Add,Subtract,Set', null)",
115
'CodeModifierAction' => "Enum('Add,Subtract,Set', null)",
116
'PriceModifierAction' => "Enum('Add,Subtract,Set', null)",
117
'Available' => 'Boolean',
118
'Type' => 'Int',
119
'OptionModifierKey' => 'Varchar(255)',
120
'SortOrder' => 'Int',
121
- 'FinalPrice' => 'Currency(9,3)',
+ 'FinalPrice' => 'Currency(9,4)',
122
'FinalWeight' => 'Decimal(9,3)',
123
'FinalCode' => 'Varchar(255)',
124
'IsDefault' => 'Boolean',
src/Page/Product.php
@@ -59,7 +59,7 @@ class Product extends \Page
59
* @var array
60
*/
61
private static $db = [
62
- 'Price' => 'Currency(9,3)',
+ 'Price' => 'Currency(9,4)',
63
'Code' => 'Varchar(100)',
64
'ReceiptTitle' => 'HTMLVarchar(255)',
65
0 commit comments