24-04-2015, 06:46 PM
Ok, entonces te paso un script para eliminar todas las facturas pendientes de cobro, abre el fichero C:\SYSME\SGH\actualizabdsysmehotel.txt y copia este código:
Guarda el fichero y reinicia el programa ... TODAS LAS FACTURAS PENDIENTES DE COBRO SE ELIMINARÁN.
Ya me dices.
Código:
delete from ventadir_comg where id_factura in (select id_factura from factura where pagada = "N");
delete from car_com where id_factura in (select id_factura from factura where pagada = "N");
delete from car_comg where id_factura in (select id_factura from factura where pagada = "N");
delete from eacuenta where id_factura in (select id_factura from factura where pagada = "N");
delete from factura where pagada = "N";
Guarda el fichero y reinicia el programa ... TODAS LAS FACTURAS PENDIENTES DE COBRO SE ELIMINARÁN.
Ya me dices.