miliaco2 Posted March 7, 2016 Share Posted March 7, 2016 (edited) Hola Configurando los transportistas , asigno un rango de precios, aplico precios por zonas y cuando voy a "terminar" me sale lo siguiente : Ha ocurrido un error guardando el rango de transportista. no pudiendo guardar la configuración Si el rango es De acuerdo con el precio total si que funciona bien y puedo guardar la configuración pero si es De acuerdo con el peso total es cuando me sale el error Esto me está sucediendo en PS 1.6.14 Edited March 7, 2016 by miliaco2 (see edit history) Link to comment Share on other sites More sharing options...
tuk66 Posted March 8, 2016 Share Posted March 8, 2016 Puede ser cualquier cosa. El esquema de la tabla ps_range_weight debe verse como: It can be anything. The ps_range_weight table schema should look like: CREATE TABLE IF NOT EXISTS `ps_range_weight` ( `id_range_weight` int(10) unsigned NOT NULL AUTO_INCREMENT, `id_carrier` int(10) unsigned NOT NULL, `delimiter1` decimal(20,6) NOT NULL, `delimiter2` decimal(20,6) NOT NULL, PRIMARY KEY (`id_range_weight`), UNIQUE KEY `id_carrier` (`id_carrier`,`delimiter1`,`delimiter2`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now