Jump to content

Sincronización con Ebay


burbujita

Recommended Posts

Hola tengo un problema con el modulo oficial de Ebay
 
El caso es que el sistema de sincronización de los mayoristas con mi tienda, es a través de la BBDD y no del hookUpdateQuantity
 
Por lo que mis productos, nunca se sincroniza el stock con ebay
 
he visto en el archivo ebay.php estas lineas
 
¿Sabeis como tendría que modificar, para que ebay recoja el stock de la BBDD y no del hookUpdateQuantity?
 
creo que es esta parte de codigo la que hace esa función: 

public function hookUpdateQuantity($params)
    {
        $this->hookUpdateProduct($params);
    }
 
    public function hookActionUpdateQuantity($params)
    {
        if (isset($params['id_product'])) {
            $params['product'] = new Product($params['id_product']);
            //$this->hookAddProduct($params); RAPH
            $this->hookUpdateProduct($params);
        }
    }
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...