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
bed8a49d
Commit
bed8a49d
authored
11 years ago
by
Pradeep Nayak
Browse files
Options
Downloads
Patches
Plain Diff
-- worked on RG-181, uninstall code for accounting integration
parent
d75ed239
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
sql/grantprograms_uninstall.sql
+7
-1
7 additions, 1 deletion
sql/grantprograms_uninstall.sql
with
7 additions
and
1 deletion
sql/grantprograms_uninstall.sql
+
7
−
1
View file @
bed8a49d
...
...
@@ -29,7 +29,13 @@
-- Accounting integration
SELECT
@
option_group_id_arel
:
=
max
(
id
)
from
civicrm_option_group
where
name
=
'account_relationship'
;
DELETE
FROM
civicrm_option_value
WHERE
option_group_id
=
@
option_group_id_arel
AND
name
=
'Accounts Payable'
;
DELETE
FROM
civicrm_option_value
WHERE
option_group_id
=
@
option_group_id_arel
AND
name
=
'Accounts Payable Account is'
;
DELETE
ci
,
ceft
,
ceft1
,
cft
FROM
`civicrm_entity_financial_trxn`
ceft
LEFT
JOIN
civicrm_financial_trxn
cft
ON
cft
.
id
=
ceft
.
financial_trxn_id
LEFT
JOIN
civicrm_entity_financial_trxn
ceft1
ON
cft
.
id
=
ceft1
.
financial_trxn_id
AND
ceft1
.
entity_table
=
'civicrm_financial_item'
LEFT
JOIN
civicrm_financial_item
ci
ON
ci
.
id
=
ceft1
.
entity_id
WHERE
ceft
.
entity_table
=
'civicrm_grant'
;
SELECT
@
financialType
:
=
id
FROM
civicrm_financial_type
WHERE
name
=
'NEI Grant'
;
...
...
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