Código
<?php require_once('../models/sales.php'); require_once('../models/product.php'); $boton=$_POST['boton']; switch ($boton) { case 'add_sale': $objProducto = new product(); $cantidad = $_POST['cantidad']; $producto_id = $_POST['producto_id']; $resultado_producto = $objProducto->getProductByid($producto_id); $producto = $resultado_producto->fetchObject(); $descripcion = $producto->descripcion; $precio = $producto->precio; $subtotal = $cantidad * $precio; $_SESSION['detalle'][$producto_id] = array('id'=>$producto_id, 'producto'=>$descripcion, 'cantidad'=>$cantidad, 'precio'=>$precio, 'subtotal'=>$subtotal); }else{ echo 'error'; } break; } ?>