Jump to content

Call to a member function on array


Recommended Posts

D'accord merci de ta réponse, cependant alors je ne vois pas comment je pourrais ce que je veux du coup car justement j'avais créé une function qui retournais ma requête sql, que j'appellais dans mon .tpl.

Car je souhaiterais afficher une date dans le detail d'une commande, (fichier _product_line.tpl) et la date se trouve dans une table que j'ai créé dans ma BDD là ou y'a le texte " a venir" 

image.png.f32503a77f9f5dcff4048360dff50c06.png

Edited by Bllidz (see edit history)
Link to comment
Share on other sites

@doekia Désolé pour les photos cependant je ne vois pas comment je pourrais vous afficher l'erreur...

Le contexte: Je souhaiterai ajouter la date de livraison des produits dans le tableau "produits' dans commande -> commande "550" ( le 550 est un exemple sachant que ça doit être pour toutes les commandes)

image.thumb.png.72061edb8df49456c031e49fdcced649.png

Je souhaite afficher la date ou il y'a écrit 'ici la date', pour ce qui est du code est bien

dans :

/www/admin8846/themes/default/template/controllers/orders/_product_line.tpl :

j'ai

<td class="text-center">
        
    {$product::date_Liv_Prod($product_id_order,$product.id_order_detail)}
        
  </td>   

dans

/www/classes/product.php j'ai :

static public function date_Liv_Prod($id_order, $id_order_detail)

    {

           return Db::getInstance()->executeS('SELECT odl.Date AS date_Liv_Prod FROM `' . _DB_PREFIX_ . 'order_detail` od 

            LEFT OUTER JOIN `'._DB_PREFIX_.'order_date_liv` odl ON od.id_order_detail = odl.id_order_detail

            WHERE `od.id_order` = ' . (int) $id_order.' and  `od.id_order_detail` = '. (int) $id_order_detail) ;

                     }

 

J'espère que c'est plus clair maintenant.

 

image.png

Link to comment
Share on other sites

Effectivement...    comme ça c'est mieux... {Product::date_Liv_Prod($product.id_order,$product.id_order_detail)}.

Plus d'erreur, mais du coup dans le tableau à la date, ça affiche array mais merci à toi de ta patience et ton aide encore.
        

 

Edited by Bllidz (see edit history)
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...