We're not handling the Pay Later -> Completed case properly on this export. To recreate:
- New contribution - Financial Type = Donation, Pending status
- Edit the contribution to reflect check received - change status to Completed, Paid By Check, and add check number
This gives us 2 financial_trxn rows and 1 financial_item row. First financial_trxn has to_account = Accounts Receivable (AR). Second has from_account = Accts Receivable and to_account = Bank Deposit Account (BANK)
The IIF export has picked up the 2nd financial trxn but not the first, AND I think it's missing the financial_item since I don't see any Income (INC) account. (example attached)
I'm also getting these notices when I export this contribution. It's hitting code where financial_trxn record has FROM account defined (IIF.php starting line 229):
— Notices ----
Notice: Undefined property: CRM_Core_DAO::$total_amount in CRM_Financial_BAO_ExportFormat_IIF->makeIIF() (line 234 of /Users/dgg/svn/crm_v4.3/CRM/Financial/BAO/ExportFormat/IIF.php).
Notice: Undefined variable: itemDAO in CRM_Financial_BAO_ExportFormat_IIF->makeIIF() (line 236 of /Users/dgg/svn/crm_v4.3/CRM/Financial/BAO/ExportFormat/IIF.php).
Notice: Trying to get property of non-object in CRM_Financial_BAO_ExportFormat_IIF->makeIIF() (line 236 of /Users/dgg/svn/crm_v4.3/CRM/Financial/BAO/ExportFormat/IIF.php).
Notice: Undefined variable: itemDAO in CRM_Financial_BAO_ExportFormat_IIF->makeIIF() (line 237 of /Users/dgg/svn/crm_v4.3/CRM/Financial/BAO/ExportFormat/IIF.php).
Notice: Trying to get property of non-object in CRM_Financial_BAO_ExportFormat_IIF->makeIIF() (line 237 of /Users/dgg/svn/crm_v4.3/CRM/Financial/BAO/ExportFormat/IIF.php).
Notice: Undefined variable: itemDAO in CRM_Financial_BAO_ExportFormat_IIF->makeIIF() (line 238 of /Users/dgg/svn/crm_v4.3/CRM/Financial/BAO/ExportFormat/IIF.php).
Notice: Trying to get property of non-object in CRM_Financial_BAO_ExportFormat_IIF->makeIIF() (line 238 of /Users/dgg/svn/crm_v4.3/CRM/Financial/BAO/ExportFormat/IIF.php).
Notice: Undefined property: CRM_Core_DAO::$total_amount in CRM_Financial_BAO_ExportFormat_IIF->makeIIF() (line 234 of /Users/dgg/svn/crm_v4.3/CRM/Financial/BAO/ExportFormat/IIF.php).
Current state is that the export works in the sense that it produces a file formatted in a way Quickbooks will accept, but the sample data (which was removed in the latest civicrm_generated?) doesn't have valid transactions.
I don't think there is a UI yet that allows you to test it, but you can create a menu xml mapping to CRM_Core_BAO_Batch::exportFinancialBatch to call it and it currently has hardcoded settings (batch id list and output format).
see also http://wiki.civicrm.org/confluence/display/CRM/CiviAccounts+Specifications+-++Batches#CiviAccountsSpecifications-Batches-%C2%A0Overviewofimplementation