Example #1
0
 function registrar()
 {
     $modelo = new Compra();
     $modelo->registar($_POST['id_producto'], $_POST['cantidad'], $_POST['observacion']);
     $producto = new Producto();
     $producto->sumar($_POST['cantidad'], $_POST['id_producto']);
     $_SESSION['alerta'] = 'Nueva compra registrado';
     $this->nuevo();
 }