hi i want to filter an magento order_invoice_item collection by date
as parameter i have a timstamp-string "20130701T00:00:00"
i trid to filter it like that
$invoiceitems = Mage::getModel('sales/order_invoice_item')->getCollection()
->addAttributeToFilter('sku', array('in' => $skuList))
->addAttributeToFilter('created_at', array('lt' => strtotime("20130701T00:00:00")));
but this won't work because the "created_at" is on the invoice.
how can i join the invoice to filter it by date?