Skip to content
Snippets Groups Projects
Commit 76e371e7 authored by Edzelopez's avatar Edzelopez
Browse files

Merge pull request #232 from Edzelopez/4.4

RG-216 Added support for grant progrmas for v4.4
parents 11ba5a4a dd3f4822
No related branches found
No related tags found
No related merge requests found
......@@ -335,7 +335,7 @@ WHERE civicrm_contact.id = $id ";
$sendTemplateParams['toName'] = $displayName;
$sendTemplateParams['toEmail'] = $email;
$sendTemplateParams['autoSubmitted'] = TRUE;
CRM_Core_BAO_MessageTemplates::sendTemplate($sendTemplateParams);
CRM_Core_BAO_MessageTemplate::sendTemplate($sendTemplateParams);
if ($grantId && $status) {
$activityStatus = CRM_Core_PseudoConstant::activityStatus('name');
$activityType = CRM_Core_PseudoConstant::activityType();
......
......@@ -49,6 +49,13 @@ class CRM_Grant_DAO_Grant extends CRM_Core_DAO
* @static
*/
static $_fields = null;
/**
* static instance to hold the keys used in $_fields for each field.
*
* @var array
* @static
*/
static $_fieldKeys = null;
/**
* static instance to hold the FK relationships
*
......@@ -214,9 +221,9 @@ class CRM_Grant_DAO_Grant extends CRM_Core_DAO
{
if (!(self::$_links)) {
self::$_links = array(
'contact_id' => 'civicrm_contact:id',
'grant_program_id' => 'civicrm_grant_program:id',
'financial_type_id' => 'civicrm_financial_type:id',
new CRM_Core_EntityReference(self::getTableName() , 'contact_id', 'civicrm_contact', 'id') ,
new CRM_Core_EntityReference(self::getTableName() , 'grant_program_id', 'civicrm_grant_program', 'id') ,
new CRM_Core_EntityReference(self::getTableName() , 'financial_type_id', 'civicrm_financial_type', 'id') ,
);
}
return self::$_links;
......@@ -351,10 +358,16 @@ class CRM_Grant_DAO_Grant extends CRM_Core_DAO
'currency' => array(
'name' => 'currency',
'type' => CRM_Utils_Type::T_STRING,
'title' => ts('Currency') ,
'title' => ts('Grant Currency') ,
'required' => true,
'maxlength' => 3,
'size' => CRM_Utils_Type::FOUR,
'pseudoconstant' => array(
'table' => 'civicrm_currency',
'keyColumn' => 'name',
'labelColumn' => 'full_name',
'nameColumn' => 'numeric_code',
)
) ,
'rationale' => array(
'name' => 'rationale',
......@@ -378,6 +391,9 @@ class CRM_Grant_DAO_Grant extends CRM_Core_DAO
'headerPattern' => '',
'dataPattern' => '',
'export' => false,
'pseudoconstant' => array(
'optionGroupName' => 'grant_status',
)
) ,
'grant_rejected_reason_id' => array(
'name' => 'grant_rejected_reason_id',
......@@ -415,13 +431,43 @@ class CRM_Grant_DAO_Grant extends CRM_Core_DAO
'name' => 'financial_type_id',
'type' => CRM_Utils_Type::T_INT,
'title' => ts('Financial Type') ,
'default' => 'UL',
'default' => 'NULL',
'FKClassName' => 'CRM_Financial_DAO_FinancialType',
) ,
);
}
return self::$_fields;
}
/**
* Returns an array containing, for each field, the arary key used for that
* field in self::$_fields.
*
* @access public
* @return array
*/
static function &fieldKeys()
{
if (!(self::$_fieldKeys)) {
self::$_fieldKeys = array(
'id' => 'grant_id',
'contact_id' => 'grant_contact_id',
'application_received_date' => 'application_received_date',
'decision_date' => 'decision_date',
'money_transfer_date' => 'money_transfer_date',
'grant_due_date' => 'grant_due_date',
'grant_report_received' => 'grant_report_received',
'grant_type_id' => 'grant_type_id',
'amount_total' => 'amount_total',
'amount_requested' => 'amount_requested',
'amount_granted' => 'amount_granted',
'currency' => 'currency',
'rationale' => 'rationale',
'status_id' => 'grant_status_id',
'financial_type_id' => 'financial_type_id',
);
}
return self::$_fieldKeys;
}
/**
* returns the names of this table
*
......
......@@ -276,7 +276,6 @@ class CRM_Grant_Form_Task_GrantPayment extends CRM_Core_Form
$downloadNamePDF .= '.pdf';
$fileName = CRM_Utils_File::makeFileName( $downloadNamePDF );
$files[] = $fileName = CRM_Grant_BAO_GrantPayment::makePDF($fileName, $grantPayment );
$counter++;
}
$downloadNameCSV = check_plain('grantPayment');
$downloadNameCSV .= '_'.date('Ymdhis');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment