Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
grant_program
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Extensions
grant_program
Commits
06f12eb4
Commit
06f12eb4
authored
11 years ago
by
Pradeep Nayak
Browse files
Options
Downloads
Plain Diff
Merge pull request #173 from pradpnayak/38
-- fixed for issue #38 bitbucket
parents
5ed141dd
0c25a59a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
grantprograms.php
+11
-1
11 additions, 1 deletion
grantprograms.php
with
11 additions
and
1 deletion
grantprograms.php
+
11
−
1
View file @
06f12eb4
...
...
@@ -583,13 +583,19 @@ function grantprograms_civicrm_pre($op, $objectName, $id, &$params) {
$calculateAssessment
=
FALSE
;
$params
[
'adjustment_value'
]
=
TRUE
;
$previousGrant
=
NULL
;
$smarty
=
CRM_Core_Smarty
::
singleton
();
$sendMail
=
TRUE
;
if
(
$objectName
==
'Grant'
&&
$op
==
"edit"
)
{
$grantParams
=
array
(
'id'
=>
$id
);
$previousGrant
=
CRM_Grant_BAO_Grant
::
retrieve
(
$grantParams
,
CRM_Core_DAO
::
$_nullArray
);
if
(
$params
[
'status_id'
]
==
$previousGrant
->
status_id
)
{
$sendMail
=
FALSE
;
}
if
((
CRM_Utils_Array
::
value
(
'assessment'
,
$params
)
==
$previousGrant
->
assessment
))
{
$calculateAssessment
=
TRUE
;
}
}
$smarty
->
assign
(
'sendMail'
,
$sendMail
);
$grantStatusApproved
=
array_search
(
'Approved for Payment'
,
$grantStatus
);
if
(
$grantStatusApproved
==
$params
[
'status_id'
]
&&
empty
(
$params
[
'decision_date'
])
&&
(
$op
==
'create'
)
||
(
$previousGrant
&&
!
$previousGrant
->
decision_date
&&
...
...
@@ -728,7 +734,11 @@ function grantprograms_civicrm_post($op, $objectName, $objectId, &$objectRef) {
$params
[
'grant_incomplete_reason'
]
=
$grantIncompleteReasons
[
$params
[
'grant_incomplete_reason_id'
]];
}
$page
->
assign
(
'grant'
,
$params
);
CRM_Grant_BAO_GrantProgram
::
sendMail
(
$params
[
'contact_id'
],
$params
,
$grantStatus
);
$smarty
=
CRM_Core_Smarty
::
singleton
();
$sendMail
=
$smarty
->
get_template_vars
(
'sendMail'
);
if
(
$sendMail
)
{
CRM_Grant_BAO_GrantProgram
::
sendMail
(
$params
[
'contact_id'
],
$params
,
$grantStatus
);
}
}
$grantStatus
=
CRM_Core_OptionGroup
::
values
(
'grant_status'
,
TRUE
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment