这是我关于stackoverflow的第一个问题:) 我需要导入一个产品功能值超过128个字符的csv文件。如何在prestashop 1.6中扩展产品功能值的最大大小?
答案 0 :(得分:1)
除非您使用某些特殊字符或不同的编码,否则功能值字段的长度应为255
个字符。
反正
将ps_feature_value_lang
表中的列类型更改为您的首选项
然后对FeatureValue.php
类进行覆盖。在override/classes/FeatureValue.php
和此文件中创建一个文件:
class FeatureValue extends FeatureValueCore
{
/**
* @see ObjectModel::$definition
*/
public static $definition = array(
'table' => 'feature_value',
'primary' => 'id_feature_value',
'multilang' => true,
'fields' => array(
'id_feature' => array('type' => self::TYPE_INT, 'validate' => 'isUnsignedId', 'required' => true),
'custom' => array('type' => self::TYPE_BOOL, 'validate' => 'isBool'),
// Lang fields
'value' => array('type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isGenericName', 'required' => true, 'size' => 255),
),
);
}
修改'size' => 255
以匹配db列。