Jump to content

Multi tienda y form


gajofe

Recommended Posts

Buenas maestros :

tengo el siguiente problemilla a ver si alguien me puede iluminar.. 

cree mi modulo con prestashop. 

tengo mi Modelo :

class MyModel extends ObjectModel {

    public $nombre;
    public $mensaje;
    public $id_shop;
    public static $definition = array(
        'table' => 'xxxxx',
        'primary' => 'id_xxxx',
        'fields' => array(
            'id_shop' => array(
                'type' => self::TYPE_INT,
                'validate' => 'isUnsignedId',
                'required' => true
            ),
            'nombre' => array(
                'type' => self::TYPE_STRING,
                'required' => true
            ),
            'mensaje' => array(
                'type' => self::TYPE_STRING,
                'required' => true
            )
        )
    );

}

y tengo mi Formulario:

public function renderForm() {
        $this->fields_form = array(
            'legend' => array(
                'title' => $this->l('Registrar Mensaje'),
                'icon' => "icon-save"
            ),
            'input' => array(
                array(
                    'type' => 'text',
                    'label' => $this->l('Nombre:'),
                    'name' => 'nombre',
                    'required' => true
                ),
                array(
                    'type' => 'textarea',
                    'label' => $this->l("Mensaje"),
                    'name' => 'mensaje',
                    'maximo' => 200,
                    'id' => 'textarea',
                    'required' => true
                )
            ),
            'submit' => array(
                'title' => $this->l("Guardar")
            )
        );
        if (!($obj = $this->loadObject(true)))
            return;
        return parent::renderForm();
    }

ahora mi problema es el siguiente como hago para pasar la tienda actual a mi formulario...  ???

estoy manejando multitiendas... y no consigo guardar ese mensaje con multitienda..  

ya tengo todo configurado para el modulo y consigo recuperar el id del shop pero no consigo pasarlo al formulario y este pueda pasarlo al Modelo.. porfa alguien que me ilumine.. 

muchas gracias por su tiempo..

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...