I'm trying to get a list of products that are using the default/global fee and products that are excluded from the fee.
Where is this info stored in the database? "is_active" doesn't work because by default all products are active even if is_active is 0 (fee is not checked, but fee still applies). They only time it's not active is if the fee is checked "exclude".
Alternatively, I don't want to check the fee on each product (so it shows is_active in the database) because then I have to set the override pricing instead of using the global amount; which I like using the global amount in case I need to change it for all products. Thus, my only thought is to do the reverse and find those that are excluded.