matatools Posted June 4, 2014 Share Posted June 4, 2014 Ciao, come posso mettere nello storico ordini del cliente il riferimento all' id_order anzichè il numero di riferimento (esempio TQOYMASOA) ? Link to comment Share on other sites More sharing options...
cipcip Posted September 7, 2014 Share Posted September 7, 2014 Non sò se ti serve ancora, ma sicuramente servirà a qualcun altro: la soluzione è Aprire il file Order.php in classes>order trovare la riga (è verso la fine) e aggiungere le parti in rosso public function getUniqReference() { $query = new DbQuery(); $query->select('MIN(id_order) as min, MAX(id_order) as max'); $query->from('orders'); $query->where('id_cart = '.(int)$this->id_cart); $query->orderBy('id_order'); $order = Db::getInstance()->getRow($query); /*if ($order['min'] == $order['max']) return $this->reference; else return $this->reference.'#'.($this->id + 1 - $order['min']);*/ return sprintf('%06d', $this->id); } Testato il funzionamento sulla versione 1.6.0.9 Se funziona metti il "RISOLTO" nel titolo del topic Bye 1 Link to comment Share on other sites More sharing options...
systep snc Posted September 18, 2014 Share Posted September 18, 2014 Vorrei aggiungere gli estremi del bonifico (Iban - banca) nel dettaglio dell'ordine.Solo nello storico degli ordini relativo alle aree riservate degli utenti.Grazie Link to comment Share on other sites More sharing options...
Tia© Posted July 3, 2015 Share Posted July 3, 2015 Testato e funzionante anche su 1.5.6.1 Grazie Link to comment Share on other sites More sharing options...
Tredieci Posted December 30, 2015 Share Posted December 30, 2015 A me non cambia nulla (versione 1.6.1.3). Tra l'altro nel blocco di codice compreso tra "/*" e "*/" un paio di volte ci sono delle parentesi graffe che si aprono e poi si chiudono. 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