Habe Problem selbst gelöst
![Lächeln :) :)](data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)
... Grund war, dass die Kunden-Identnummer niedrieger war, als die bisherige Anzahl von Synchronisierungen.
Wenn also schon 12 Kunden bekannt waren, 12 Abfragen über
Wawi erfolgten, sucht Wawi quasi nach Kunden-ID 13. Da aber die Daten zurückgesetzt wurden, auch Kunden-IDs, konnte so nichts klappen.
DARUM muss man nicht nur die Tabellen "eazysales_m*" leeren, sondern auch die verantwortliche "eazysales_sentorders"
anbei mal ein kompletter SQL-Code, um den ganzen osC
Shop zu leeren!
BITTE AUF EIGENE GEFAHR und BACKUP vorher machen, wurde von mir getestet mehrmals, klappt super.
Code:
DELETE FROM `address_book`;
DELETE FROM `categories`;
DELETE FROM `categories_description`;
DELETE FROM `customers`;
DELETE FROM `customers_basket`;
DELETE FROM `customers_basket_attributes`;
DELETE FROM `customers_info`;
DELETE FROM `manufacturers`;
DELETE FROM `manufacturers_info`;
DELETE FROM `orders`;
DELETE FROM `orders_products`;
DELETE FROM `orders_products_attributes`;
DELETE FROM `orders_products_download`;
DELETE FROM `orders_total`;
DELETE FROM `products`;
DELETE FROM `products_attributes`;
DELETE FROM `products_attributes_download`;
DELETE FROM `products_description`;
DELETE FROM `products_notifications`;
DELETE FROM `products_options`;
DELETE FROM `products_options_values`;
DELETE FROM `products_options_values_to_products_options`;
DELETE FROM `products_to_categories`;
DELETE FROM `reviews`;
DELETE FROM `reviews_description`;
DELETE FROM `specials`;
DELETE FROM `eazysales_martikel`;
DELETE FROM `eazysales_mbestellpos`;
DELETE FROM `eazysales_mkategorie`;
DELETE FROM `eazysales_mvariation`;
DELETE FROM `eazysales_mvariationswert`;
ALTER TABLE `categories` AUTO_INCREMENT = 1;
ALTER TABLE `customers` AUTO_INCREMENT = 1;
ALTER TABLE `orders` AUTO_INCREMENT = 1;
ALTER TABLE `manufacturers` AUTO_INCREMENT = 1;
ALTER TABLE `products` AUTO_INCREMENT = 1;
ALTER TABLE `products_attributes` AUTO_INCREMENT = 1;
ALTER TABLE `products_options_values_to_products_options` AUTO_INCREMENT = 1;
ALTER TABLE `reviews` AUTO_INCREMENT = 1;
ALTER TABLE `specials` AUTO_INCREMENT = 1;