Jump to content

Error Modulo Cleaner


yenguero

Recommended Posts

Buenas, utilize este modulo Cleaner para limpiar los cliente y pedidos, pero ahora cuando alguien hace un pedido y quiero mirarlo en el panel de administracion cuando le doy para entrar la web no me carga y se me queda en blanco :S

 

Alguien sabe porque?

 

PS 1.5.4

Link to comment
Share on other sites

Si, pero no se como la verdad, yo no elimine ninguna tabla :S, se puede crear de nuevo?

Si tenias pedidos, lo ideal es que cojas una copia de la tabla de una copia de la base de datos y restaures esta tabla.

 

Yo te puedo dejar una consulta de creacion de la tabla, pero logicamente yo no tengo datos de los pedidos tuyos...

 

CREATE TABLE IF NOT EXISTS `ps_order_invoice` (
 `id_order_invoice` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
 `id_order` int(11) NOT NULL,
 `number` int(11) NOT NULL,
 `delivery_number` int(11) NOT NULL,
 `delivery_date` datetime,
 `total_discount_tax_excl` decimal(17,2) NOT NULL DEFAULT '0.00',
 `total_discount_tax_incl` decimal(17,2) NOT NULL DEFAULT '0.00',
 `total_paid_tax_excl` decimal(17,2) NOT NULL DEFAULT '0.00',
 `total_paid_tax_incl` decimal(17,2) NOT NULL DEFAULT '0.00',
 `total_products` decimal(17,2) NOT NULL DEFAULT '0.00',
 `total_products_wt` decimal(17,2) NOT NULL DEFAULT '0.00',
 `total_shipping_tax_excl` decimal(17,2) NOT NULL DEFAULT '0.00',
 `total_shipping_tax_incl` decimal(17,2) NOT NULL DEFAULT '0.00',
 `shipping_tax_computation_method` int(10) unsigned NOT NULL,
 `total_wrapping_tax_excl` decimal(17,2) NOT NULL DEFAULT '0.00',
 `total_wrapping_tax_incl` decimal(17,2) NOT NULL DEFAULT '0.00',
 `note` text,
 `date_add` datetime NOT NULL,
 PRIMARY KEY (`id_order_invoice`),
 KEY `id_order` (`id_order`)
) ENGINE=ENGINE_TYPE DEFAULT CHARSET=utf8;

Link to comment
Share on other sites

Muchas gracias, es una tienda nueva, asi que no tenia ningun pedido por eso estaba utilizando el cleaner, ya que estamos sabira decirme para que es Restricciones de integridad funcional Comprobar y Arreglar del modulo Cleaner??

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...