Jump to content

DanieleDR

Members
  • Posts

    10
  • Joined

  • Last visited

Profile Information

  • First Name
    Daniele
  • Last Name
    Pirso

DanieleDR's Achievements

Newbie

Newbie (1/14)

3

Reputation

  1. Non credo sia la soluzione migliore! Anch'io ho lo stesso problema purtroppo, soluzioni?
  2. Ho la soluzione: <div> <table> {foreach from=$features item=feature} <tr class="{cycle values="odd,even"}"> {if isset($feature.value)} <td><img src="{$img_dir}icon/{$feature.name}.png"/></td> {/if} </tr> {/foreach} </table> </div> Da inserire a piacimento nel template.tpl Come caratteristica basta dare i due valori "si" o "no" per semplificare.
  3. anch'io vorrei una soluzione uguale. Nessuno ci aiuta?
  4. This is the resul of the debug mode: [PrestaShopException]Property StockAvailable->id_product_attribute is empty at line 909 in file classes/ObjectModel.php 904. } 905. 906. $message = $this->validateField($field, $this->$field); 907. if ($message !== true) { 908. if ($die) { 909. throw new PrestaShopException($message); 910. } 911. return $error_return ? $message : false; 912. } 913. } 914. ObjectModelCore->validateFields - [line 246 - classes/ObjectModel.php] ObjectModelCore->getFields - [line 652 - classes/ObjectModel.php] ObjectModelCore->update - [line 406 - classes/stock/StockAvailable.php] - [1 Arguments] StockAvailableCore->update - [line 128 - Core/Business/Stock/Core_Business_Stock_StockManager.php] Core_Business_Stock_StockManager->updateQuantity - [line 472 - classes/stock/StockAvailable.php] - [4 Arguments] StockAvailableCore::updateQuantity - [line 473 - classes/order/OrderDetail.php] - [3 Arguments] OrderDetailCore->checkProductStock - [line 638 - classes/order/OrderDetail.php] - [2 Arguments] OrderDetailCore->create - [line 678 - classes/order/OrderDetail.php] - [7 Arguments] OrderDetailCore->createList - [line 330 - modules/cashondelivery/cashondelivery.php] - [7 Arguments] CashOnDelivery->validateOrder - [line 61 - modules/cashondelivery/controllers/front/validation.php] - [9 Arguments] CashondeliveryValidationModuleFrontController->postProcess - [line 178 - classes/controller/Controller.php] ControllerCore->run - [line 367 - classes/Dispatcher.php] DispatcherCore->dispatch - [line 28 - index.php]
  5. since I upgraded to version 1.6 orders are not register in the table ps_detail. If I try with the last order: SELECT * FROM `ps_order_detail` or LEFT JOIN `ps_product` p ON (p.id_product = od.product_id) LEFT JOIN `ps_product_shop` ps ON (ps.id_product = p.id_product AND ps.id_shop = od.id_shop) WHERE od.`id_order` = 224 <- not showing last order the result is' MySQL returned an empty set (ie zero rows). " however if I write: SELECT * FROM `ps_order_detail` or LEFT JOIN `ps_product` p ON (p.id_product = od.product_id) LEFT JOIN `ps_product_shop` ps ON (ps.id_product = p.id_product AND ps.id_shop = od.id_shop) WHERE od.`id_order` = 213 <- last placed order the result are correct, there are three products on order, 3 records registrered. ps_order_detail not record incoming orders!! Help meee
  6. Thanks Nemo1, but because I'm newest on prestashop, I need a detailed explain of that solution. In my ps_order_details table the id_order is stopped last placing order before upgrading to prestashop 1.6. Please explain to me as a beginner
  7. I have same problem, but I don't understand how to right configure that issue. Please you can explain me? Thanks in advance. Regard
×
×
  • Create New...