public function ModificarOrdenDeCompra(OrdenesDeCompraDTO $ordenDeCompraDTO, PDO $cnn) { try { $query = $cnn->prepare("UPDATE OrdenDeCompra SET Estado=?, Fecha=?, Total=?, Descuento=?, GranTotal=?, Observaciones=? WHERE IdOrden=?"); $query->bindParam(1, $ordenDeCompraDTO->getEstado()); $query->bindParam(2, $ordenDeCompraDTO->getFecha()); $query->bindParam(3, $ordenDeCompraDTO->getTotal()); $query->bindParam(4, $ordenDeCompraDTO->getDescuento()); $query->bindParam(5, $ordenDeCompraDTO->getGranTotal()); $query->bindParam(6, $ordenDeCompraDTO->getObservaciones()); $query->bindParam(7, $ordenDeCompraDTO->getIdOrden()); $query->execute(); $mensaje = "OK ModificarOrdenDeCompra"; } catch (Exception $ex) { $mensaje = $ex->getMessage(); } $cnn = null; return $mensaje; }
public function ConvertirAOrden(OrdenesDeCompraDTO $ordenesDeCompraDTO, PDO $cnn) { try { $query = $cnn->prepare("INSERT INTO OrdenesDeCompra VALUES (?,?,?,?,?,?) WHERE IdCotizacion=?"); $query->bindParam(1, $ordenesDeCompraDTO->getEstado()); $query->bindParam(2, $ordenesDeCompraDTO->getFecha()); $query->bindParam(3, $ordenesDeCompraDTO->getTotalCotizacion()); $query->bindParam(4, $ordenesDeCompraDTO->getDescuentoTotal()); $query->bindParam(5, $ordenesDeCompraDTO->getGranTotal()); $query->bindParam(6, $ordenesDeCompraDTO->getObservaciones()); $query->bindParam(7, $ordenesDeCompraDTO->getIdCotizacion()); $query->execute(); $mensaje = "OK ConvertirOrdenCompra"; } catch (Exception $ex) { $mensaje = $ex->getMessage(); } $cnn = null; return $mensaje; }