JSON fields need autoGenerate=>0 and noFormPost=>1, fixes bug #11075
This commit is contained in:
parent
0388a2e403
commit
a02b4c7bb4
3 changed files with 14 additions and 6 deletions
|
|
@ -25,6 +25,7 @@
|
|||
- fixed #11066: wrong definitions
|
||||
- fixed #11070: i18n Asset_Navigation::assetsToInclude
|
||||
- fixed #11068: ITransact_recurringStatus
|
||||
- fixed #11075: product destroys variants
|
||||
|
||||
7.8.0
|
||||
- upgraded YUI to 2.8.0r4
|
||||
|
|
|
|||
|
|
@ -153,37 +153,43 @@ sub definition {
|
|||
##Collateral data is stored as JSON in here
|
||||
autoGenerate => 0,
|
||||
defaultValue => '[]',
|
||||
fieldType=>"textarea",
|
||||
fieldType => "textarea",
|
||||
noFormPost => 1,
|
||||
},
|
||||
accessoryJSON => {
|
||||
##Collateral data is stored as JSON in here
|
||||
autoGenerate => 0,
|
||||
defaultValue => '[]',
|
||||
fieldType=>"textarea",
|
||||
fieldType => "textarea",
|
||||
noFormPost => 1,
|
||||
},
|
||||
relatedJSON => {
|
||||
##Collateral data is stored as JSON in here
|
||||
autoGenerate => 0,
|
||||
defaultValue => '[]',
|
||||
fieldType=>"textarea",
|
||||
fieldType => "textarea",
|
||||
noFormPost => 1,
|
||||
},
|
||||
specificationJSON => {
|
||||
##Collateral data is stored as JSON in here
|
||||
autoGenerate => 0,
|
||||
defaultValue => '[]',
|
||||
fieldType=>"textarea",
|
||||
fieldType => "textarea",
|
||||
noFormPost => 1,
|
||||
},
|
||||
featureJSON => {
|
||||
##Collateral data is stored as JSON in here
|
||||
autoGenerate => 0,
|
||||
defaultValue => '[]',
|
||||
fieldType=>"textarea",
|
||||
fieldType => "textarea",
|
||||
noFormPost => 1,
|
||||
},
|
||||
benefitJSON => {
|
||||
##Collateral data is stored as JSON in here
|
||||
autoGenerate => 0,
|
||||
defaultValue => '[]',
|
||||
fieldType=>"textarea",
|
||||
fieldType => "textarea",
|
||||
noFormPost => 1,
|
||||
},
|
||||
);
|
||||
push(@{$definition}, {
|
||||
|
|
|
|||
|
|
@ -166,6 +166,7 @@ sub definition {
|
|||
fieldType => 'textarea',
|
||||
defaultValue => '[]',
|
||||
noFormPost => 1,
|
||||
autoGenerate => 0,
|
||||
},
|
||||
);
|
||||
push(@{$definition}, {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue