This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<config> | |
<frontend> | |
<events> | |
<!--disable logs--> | |
<controller_action_predispatch> | |
<observers><log><type>disabled</type></log></observers> | |
</controller_action_predispatch> | |
<controller_action_postdispatch> | |
<observers><log><type>disabled</type></log></observers> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select * from catalog_product_entity_varchar v join catalog_product_entity e | |
on v.entity_id = e.entity_id | |
WHERE attribute_id in (8586,87) AND value = 'no_selection'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select customer_id, email, f.value, l.value, amount from enterprise_customerbalance b join customer_entity c on | |
b.customer_id=c.entity_id | |
left join customer_entity_varchar f on c.entity_id =f.entity_id | |
left join customer_entity_varchar l on c.entity_id =l.entity_id | |
where amount>0 and f.attribute_id=5 and l.attribute_id=7 |