-
-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] Query to retrieve order state crash #145
Comments
Hello @kpitn Thank you for reporting this issue. Regards, |
Two others things in you recent refactoring You forget to refactor config.xml :
This result in crash when sending and email, cause identity is empty and template too And another one, the delay variable is not send to the email template
Thanks for your time to maintain an open source module |
Thanks for sharing these issues! |
Is fixed in 5.0.0-beta1 |
Description
I can't run entity scheduler, when using order state.
Query executed is :
SELECT
main_table
.entity_id
FROMsales_order
ASmain_table
LEFT JOIN
opengento_gdpr_erase_entity
ASogee
ON main_table.entity_id=ogee.entity_id AND ogee.entity_type="order" WHERE (main_table
.customer_id
IS NULL) AND (customer_is_guest
= 1) AND (state
IN('')) AND (updated_at
<= '2014-08-23 07:30:14') AND (ogee.erase_id IS NULL)Result in error : Integrity constraint violation: 1052 Column 'state' in where clause is ambiguous
I quickly made a patch for that :
I don't know how you want to resolv this.
The text was updated successfully, but these errors were encountered: