infinityl Posted February 6, 2013 Share Posted February 6, 2013 Buenas estoy intentando mostrar una caracteristica/feature en el email de confirmación del pedido que le llega al cliente... En este email llega una tabla con los detalles del pedido, esta tabla se crea en classes/PaymentModule.php (¿Por cierto es correcto MCV meter tablas y estilos ahí?) en la funcion public function validateOrder( if (!$customization_quantity || (int)$product['cart_quantity'] > $customization_quantity) $products_list .= '<tr style="background-color: '.($key % 2 ? '#DDE2E6' : '#EBECEE').';"> <td style="padding: 0.6em 0.4em;width: 15%;">'.$product['reference'].' y e idacs'.$product['IDACS'].'</td> <td style="padding: 0.6em 0.4em;width: 30%;"><strong>'.$product['name'].(isset($product['attributes']) ? ' - '.$product['attributes'] : '').'</strong></td> <td style="padding: 0.6em 0.4em; width: 20%;">'.Tools::displayPrice(Product::getTaxCalculationMethod() == PS_TAX_EXC ? Tools::ps_round($price, 2) : $price_wt, $this->context->currency, false).'</td> <td style="padding: 0.6em 0.4em; width: 15%;">'.((int)$product['cart_quantity'] - $customization_quantity).'</td> <td style="padding: 0.6em 0.4em; width: 20%;">'.Tools::displayPrice(((int)$product['cart_quantity'] - $customization_quantity) * (Product::getTaxCalculationMethod() == PS_TAX_EXC ? Tools::ps_round($price, 2) : $price_wt), $this->context->currency, false).'</td> </tr>'; Lo que estoy intentando es mostrar el campo IDACS que es una feature/caracteristica del producto.... ¿como lo hago? Link to comment Share on other sites More sharing options...
Recommended Posts