oktubr3 Posted March 22, 2013 Share Posted March 22, 2013 Hola, tengo una duda. Cuando creo un nuevo producto, el stock por defecto es 0 (cero), quisiera saber si alguien conoce que archivo de configuración debo editar para que por defecto sea 1. Saludos! Link to comment Share on other sites More sharing options...
shacker Posted March 24, 2013 Share Posted March 24, 2013 en admin/themes/default/template/controllers/products/quantities.tpl estas lineas <td class="available_quantity" id="qty_{$attribute['id_product_attribute']}"> <span>{$available_quantity[$attribute['id_product_attribute']]}</span> <input type="text" value="{$available_quantity[$attribute['id_product_attribute']]|htmlentities}"/> </td> Link to comment Share on other sites More sharing options...
oktubr3 Posted March 24, 2013 Author Share Posted March 24, 2013 (edited) en admin/themes/default/template/controllers/products/quantities.tpl estas lineas <td class="available_quantity" id="qty_{$attribute['id_product_attribute']}"> <span>{$available_quantity[$attribute['id_product_attribute']]}</span> <input type="text" value="{$available_quantity[$attribute['id_product_attribute']]|htmlentities}"/> </td> Gracias por la sugerencia, pero no me estoy dando cuenta en que linea cambiar la cantidad. Edited March 24, 2013 by oktubr3 (see edit history) Link to comment Share on other sites More sharing options...
shacker Posted March 25, 2013 Share Posted March 25, 2013 {$available_quantity[$attribute['id_product_attribute']]|htmlentities} intenta poner un numero ahi a ver si te lo cambia Link to comment Share on other sites More sharing options...
rperales Posted March 26, 2013 Share Posted March 26, 2013 Lo que puedes hacer es cambiar el valor por defecto a 1 en lugar de 0, del campo cantidad en la tabla de productos de tu base de datos. Link to comment Share on other sites More sharing options...
nadie Posted March 26, 2013 Share Posted March 26, 2013 Antes de tocar la base de datos, prefiero que edites el controlador o clase correspondiente a la edicion/creacion del producto y dejale en el input del formulario el valor por defecto a "1" Link to comment Share on other sites More sharing options...
shacker Posted March 26, 2013 Share Posted March 26, 2013 si, es lo que esta en mi post anterior. Link to comment Share on other sites More sharing options...
Recommended Posts