NeverMindoO Posted October 12, 2015 Share Posted October 12, 2015 Witam, Mam problem z wczytywaniem danych z bazy przez PHP tak aby w Panelu Admina wyświetlalo mi informacje Paragon czy Faktura.Mianowicie, dodałem do tablelii ps_address nowy wiersz czy_faktura. W pliku address.tpl dodałem linie <input type="hidden" name="czy_faktura" value="1" />Jezeli ktos wypelni formularz Faktury zmieni wartosc na 1 jezeli nie wypeni formularza zostaje 0lecz problem mam z odpowiednim warunkiem aby wyswietlal mi w Panelu Admina co klient wybrał public function hookDisplayAdminOrderFaktura($params) { global $smarty, $cookie; $id_customer = (int)(Tools::getValue('id_customer')); $customer = new Customer($id_customer); $ch = Db::getInstance()->ExecuteS('SELECT czy_faktura FROM `'._DB_PREFIX_.'address` WHERE id_customer = '.$customer->id_customer); $type = ''; if($ch[0]['czy_faktura'] == 1) $type = $this->l('Invoice'); elseif($ch[0]['czy_faktura'] == 0) $type = $this->l('Bill'); else $type = $this->l('NULL'); $this->context->smarty->assign( array( 'type' => $type ) ); $this->context->smarty->assign( array( 'id_customer' => $id_customer ) ); return $this->display(__FILE__, 'paragonfaktura.tpl'); } Link to comment Share on other sites More sharing options...
presta4you.com Posted October 22, 2015 Share Posted October 22, 2015 Witam Zapraszam do pobrania darmowego modułu do prestashop, który odpowiada za wybór dokumentu. Link to comment Share on other sites More sharing options...
ListwySamochodowe.pl Posted October 23, 2015 Share Posted October 23, 2015 (edited) @presta4you.com czy Twój moduł dodaje info w mailu (choćby ukryta/prywatna informacja w uwagach) o rodzaju wybranego dokumentu? I czy działa z v. 1.6.x? Bo na stronie jest info o 1.5... Edited October 23, 2015 by ListwySamochodowe.pl (see edit history) 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