),
),
),
+ 'civicrm_financial_account' => array(
+ 'dao' => 'CRM_Financial_DAO_FinancialAccount',
+ 'fields' => array(
+ 'debit_accounting_code' => array(
+ 'title' => ts('Financial Account Code - Debit'),
+ 'name' => 'accounting_code',
+ 'alias' => 'financial_account_civireport_debit',
+ 'default' => TRUE,
+ 'required' => TRUE,
+ ),
+ 'credit_accounting_code' => array(
+ 'title' => ts('Financial Account Code - Credit'),
+ 'name' => 'accounting_code',
+ 'alias' => 'financial_account_civireport_credit',
+ 'default' => TRUE,
+ 'required' => TRUE,
+ ),
+ 'debit_name' => array(
+ 'title' => ts('Financial Account Name - Debit'),
+ 'name' => 'name',
+ 'alias' => 'financial_account_civireport_debit',
+ 'default' => TRUE,
+ ),
+ 'credit_name' => array(
+ 'title' => ts('Financial Account Name - Credit'),
+ 'name' => 'name',
+ 'alias' => 'financial_account_civireport_credit',
+ 'default' => TRUE,
+ ),
+ ),
+ 'filters' => array(
+ 'debit_accounting_code' => array(
+ 'title' => ts('Financial Account Code - Debit'),
+ 'operatorType' => CRM_Report_Form::OP_MULTISELECT,
+ 'options' => CRM_Contribute_PseudoConstant::financialAccount(NULL, NULL, 'accounting_code', 'accounting_code'),
+ 'name' => 'accounting_code',
+ 'alias' => 'financial_account_civireport_debit',
+ ),
+ 'credit_accounting_code' => array(
+ 'title' => ts('Financial Account Code - Credit'),
+ 'operatorType' => CRM_Report_Form::OP_MULTISELECT,
+ 'options' => CRM_Contribute_PseudoConstant::financialAccount(NULL, NULL, 'accounting_code', 'accounting_code'),
+ ),
+ 'debit_name' => array(
+ 'title' => ts('Financial Account Name - Debit'),
+ 'operatorType' => CRM_Report_Form::OP_MULTISELECT,
+ 'options' => CRM_Contribute_PseudoConstant::financialAccount(),
+ 'name' => 'id',
+ 'alias' => 'financial_account_civireport_debit',
+ ),
+ 'credit_name' => array(
+ 'title' => ts('Financial Account Name - Credit'),
+ 'operatorType' => CRM_Report_Form::OP_MULTISELECT,
+ 'options' => CRM_Contribute_PseudoConstant::financialAccount(),
+ ),
+ ),
+ ),
+ 'civicrm_line_item' => array(
+ 'dao' => 'CRM_Price_DAO_LineItem',
+ 'fields' => array(
+ 'financial_type_id' => array('title' => ts('Financial Type'),
+ 'default' => TRUE,
+ ),
+ ),
+ 'filters' => array(
+ 'financial_type_id' => array(
+ 'title' => ts('Financial Type'),
+ 'operatorType' => CRM_Report_Form::OP_MULTISELECT,
+ 'options' => CRM_Contribute_PseudoConstant::financialType(),
+ ),
+ ),
+ ),
'civicrm_contribution' =>
array(
'dao' => 'CRM_Contribute_DAO_Contribution',
),
),
'grouping' => 'contri-fields',
- ),
- 'civicrm_line_item' => array(
- 'dao' => 'CRM_Price_DAO_LineItem',
- 'fields' => array(
- 'financial_type_id' => array('title' => ts('Financial Type'),
- 'default' => TRUE,
- ),
- ),
- 'filters' => array(
- 'financial_type_id' => array(
- 'title' => ts('Financial Type'),
- 'operatorType' => CRM_Report_Form::OP_MULTISELECT,
- 'options' => CRM_Contribute_PseudoConstant::financialType(),
- ),
- ),
- ),
+ ),
'civicrm_financial_trxn' => array(
'dao' => 'CRM_Financial_DAO_FinancialTrxn',
'fields' => array(
),
'trxn_date' => array(
'title' => ts('Transaction Date'),
- 'default' => TRUE
+ 'default' => TRUE,
+ 'type' => CRM_Utils_Type::T_DATE,
),
'trxn_id' => array(
'title' => ts('Trans #'),
'amount' =>
array('title' => ts('Amount')),
),
- ),
- 'civicrm_financial_account' => array(
- 'dao' => 'CRM_Financial_DAO_FinancialAccount',
- 'fields' => array(
- 'debit_accounting_code' => array(
- 'title' => ts('Financial Account Code - Debit'),
- 'name' => 'accounting_code',
- 'alias' => 'financial_account_civireport_debit',
- 'default' => TRUE,
- ),
- 'credit_accounting_code' => array(
- 'title' => ts('Financial Account Code - Credit'),
- 'name' => 'accounting_code',
- 'alias' => 'financial_account_civireport_credit',
- 'default' => TRUE,
- ),
- )
),
);
parent::__construct();
if (CRM_Utils_Array::value('required', $field) ||
CRM_Utils_Array::value($fieldName, $this->_params['fields'])
) {
- if ($fieldName != 'credit_accounting_code' && $fieldName != 'amount') {
+ switch ($fieldName) {
+ case 'credit_accounting_code' :
+ $select[] = " CASE
+ WHEN {$this->_aliases['civicrm_financial_trxn']}.from_financial_account_id IS NOT NULL
+ THEN {$this->_aliases['civicrm_financial_account']}_credit_1.accounting_code
+ ELSE {$this->_aliases['civicrm_financial_account']}_credit_2.accounting_code
+ END AS civicrm_financial_account_credit_accounting_code ";
+ break;
+ case 'amount' :
+ $select[] = " CASE
+ WHEN {$this->_aliases['civicrm_entity_financial_trxn']}_item.entity_id IS NOT NULL
+ THEN {$this->_aliases['civicrm_entity_financial_trxn']}_item.amount
+ ELSE {$this->_aliases['civicrm_entity_financial_trxn']}.amount
+ END AS civicrm_entity_financial_trxn_amount ";
+ break;
+ case 'credit_name' :
+ $select[] = " CASE
+ WHEN {$this->_aliases['civicrm_financial_trxn']}.from_financial_account_id IS NOT NULL
+ THEN {$this->_aliases['civicrm_financial_account']}_credit_1.name
+ ELSE {$this->_aliases['civicrm_financial_account']}_credit_2.name
+ END AS civicrm_financial_account_credit_name ";
+ break;
+ default :
$select[] = "{$field['dbAlias']} as {$tableName}_{$fieldName}";
+ break;
}
$this->_columnHeaders["{$tableName}_{$fieldName}"]['title'] = $field['title'];
$this->_columnHeaders["{$tableName}_{$fieldName}"]['type'] = CRM_Utils_Array::value('type', $field);
}
$this->_select = "SELECT " . implode(', ', $select) . " ";
- $this->_select .= ", CASE
- WHEN {$this->_aliases['civicrm_financial_trxn']}.from_financial_account_id IS NOT NULL
- THEN {$this->_aliases['civicrm_financial_account']}_credit_1.accounting_code
- ELSE {$this->_aliases['civicrm_financial_account']}_credit_2.accounting_code
- END AS civicrm_financial_account_credit_accounting_code, CASE
- WHEN {$this->_aliases['civicrm_entity_financial_trxn']}_item.entity_id IS NOT NULL
- THEN {$this->_aliases['civicrm_entity_financial_trxn']}_item.amount
- ELSE {$this->_aliases['civicrm_entity_financial_trxn']}.amount
- END AS civicrm_entity_financial_trxn_amount ";
}
function from() {
$this->_from = "FROM civicrm_contact {$this->_aliases['civicrm_contact']} {$this->_aclFrom}
INNER JOIN civicrm_contribution {$this->_aliases['civicrm_contribution']}
- ON {$this->_aliases['civicrm_contact']}.id = {$this->_aliases['civicrm_contribution']}.contact_id AND
+ ON {$this->_aliases['civicrm_contact']}.id = {$this->_aliases['civicrm_contribution']}.contact_id AND
{$this->_aliases['civicrm_contribution']}.is_test = 0
LEFT JOIN civicrm_membership_payment payment
- ON ( {$this->_aliases['civicrm_contribution']}.id = payment.contribution_id )
+ ON ( {$this->_aliases['civicrm_contribution']}.id = payment.contribution_id )
LEFT JOIN civicrm_membership {$this->_aliases['civicrm_membership']}
ON payment.membership_id = {$this->_aliases['civicrm_membership']}.id
LEFT JOIN civicrm_entity_financial_trxn {$this->_aliases['civicrm_entity_financial_trxn']}
$this->_orderBy = " ORDER BY {$this->_aliases['civicrm_contact']}.sort_name, {$this->_aliases['civicrm_contribution']}.id, {$this->_aliases['civicrm_entity_financial_trxn']}.id ";
}
+ function where() {
+ foreach ($this->_columns as $tableName => $table) {
+ if (array_key_exists('filters', $table)) {
+ foreach ($table['filters'] as $fieldName => $field) {
+ $clause = NULL;
+ if ($fieldName == 'credit_accounting_code') {
+ $field['dbAlias'] = "CASE
+ WHEN financial_trxn_civireport.from_financial_account_id IS NOT NULL
+ THEN financial_account_civireport_credit_1.accounting_code
+ ELSE financial_account_civireport_credit_2.accounting_code
+ END";
+ }
+ else if ($fieldName == 'credit_name') {
+ $field['dbAlias'] = "CASE
+ WHEN financial_trxn_civireport.from_financial_account_id IS NOT NULL
+ THEN financial_account_civireport_credit_1.id
+ ELSE financial_account_civireport_credit_2.id
+ END";
+ }
+ if (CRM_Utils_Array::value('type', $field) & CRM_Utils_Type::T_DATE) {
+ $relative = CRM_Utils_Array::value("{$fieldName}_relative", $this->_params);
+ $from = CRM_Utils_Array::value("{$fieldName}_from", $this->_params);
+ $to = CRM_Utils_Array::value("{$fieldName}_to", $this->_params);
+
+ $clause = $this->dateClause($field['name'], $relative, $from, $to, $field['type']);
+ }
+ else {
+ $op = CRM_Utils_Array::value("{$fieldName}_op", $this->_params);
+ if ($op) {
+ $clause = $this->whereClause($field,
+ $op,
+ CRM_Utils_Array::value("{$fieldName}_value", $this->_params),
+ CRM_Utils_Array::value("{$fieldName}_min", $this->_params),
+ CRM_Utils_Array::value("{$fieldName}_max", $this->_params)
+ );
+ }
+ }
+ if (!empty($clause)) {
+ $clauses[] = $clause;
+ }
+ }
+ }
+ }
+ if (empty($clauses)) {
+ $this->_where = "WHERE ( 1 )";
+ }
+ else {
+ $this->_where = "WHERE " . implode(' AND ', $clauses);
+ }
+ }
+
function postProcess() {
// get the acl clauses built before we assemble the query
$this->buildACLClause($this->_aliases['civicrm_contact']);
$sql = "{$select} {$this->_from} {$this->_where}";
$dao = CRM_Core_DAO::executeQuery($sql);
-
- if ($dao->fetch()) {
+ $dao->fetch();
+ if ($dao->count) {
$statistics['counts']['amount'] = array(
'value' => $dao->amount,
'title' => 'Total Amount',