reduction of sent orders in same time

This commit is contained in:
Marion Muszynski 2017-02-07 11:18:28 +01:00
parent b78f6bb387
commit b7acd26f89

View File

@ -40,7 +40,8 @@ class TrustedShopBbbAsync extends ObjectModel
FROM `' . _DB_PREFIX_ . 'trustedshop_bbb_async` tba
JOIN `' . _DB_PREFIX_ . 'orders` o ON o.`id_order` = tba.`id_order`
JOIN `' . _DB_PREFIX_ . 'lang` l ON o.`id_lang` = l.`id_lang`
WHERE tba.`processed` = 0;
WHERE tba.`processed` = 0
LIMIT 0,1000;
');
}