16-01-2019, 04:40 PM
ok ahí está el motivo, vamos a hacer lo siguiente, haz una copia de seguridad y luego ejecuta estos scripts en SISTEMA->MANTENIMIENTO->Pestaña consola DB (ejecutalos uno a uno):
delete from pagoscobros where id_venta > 0 and id_venta not in (select id_venta from ventadirecta);
delete from pagoscobros where id_tiquet is not null and id_tiquet not in (select id_tiquet from tiquet);
delete from pagoscobros where id_factura is not null and id_factura not in (select id_factura from factura);
Tras esto, cancela la venta que tengas en curso (si tienes alguna) y no debería volver a suceder.
Ya me dices.
delete from pagoscobros where id_venta > 0 and id_venta not in (select id_venta from ventadirecta);
delete from pagoscobros where id_tiquet is not null and id_tiquet not in (select id_tiquet from tiquet);
delete from pagoscobros where id_factura is not null and id_factura not in (select id_factura from factura);
Tras esto, cancela la venta que tengas en curso (si tienes alguna) y no debería volver a suceder.
Ya me dices.