Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
CiviCRM Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
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
Development
CiviCRM Core
Commits
769fea07
Commit
769fea07
authored
4 years ago
by
Seamus Lee
Browse files
Options
Downloads
Patches
Plain Diff
#1806
Fix issue with importing radio custom data field using the option label
parent
064ca826
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CRM/Contribute/Import/Parser/Contribution.php
+1
-0
1 addition, 0 deletions
CRM/Contribute/Import/Parser/Contribution.php
tests/phpunit/CRM/Contribute/Import/Parser/ContributionTest.php
+19
-0
19 additions, 0 deletions
...phpunit/CRM/Contribute/Import/Parser/ContributionTest.php
with
20 additions
and
0 deletions
CRM/Contribute/Import/Parser/Contribution.php
+
1
−
0
View file @
769fea07
...
...
@@ -671,6 +671,7 @@ class CRM_Contribute_Import_Parser_Contribution extends CRM_Contribute_Import_Pa
}
}
}
continue
;
}
switch
(
$key
)
{
...
...
This diff is collapsed.
Click to expand it.
tests/phpunit/CRM/Contribute/Import/Parser/ContributionTest.php
+
19
−
0
View file @
769fea07
...
...
@@ -177,6 +177,25 @@ class CRM_Contribute_Import_Parser_ContributionTest extends CiviUnitTestCase {
// on one hand the custom fields have a date format & on the other there is an input format &
// it seems to ignore the latter in favour of the former - which seems wrong.
$this
->
assertEquals
(
'20191020000000'
,
$formatted
[
$this
->
getCustomFieldName
(
'date'
)]);
$this
->
callAPISuccess
(
'CustomField'
,
'delete'
,
[
'id'
=>
$this
->
ids
[
'CustomField'
][
'date'
]]);
$this
->
callAPISuccess
(
'CustomGroup'
,
'delete'
,
[
'id'
=>
$this
->
ids
[
'CustomGroup'
][
'Custom Group'
]]);
}
public
function
testParsedCustomOption
()
{
$contactID
=
$this
->
individualCreate
();
$values
=
[
'contribution_contact_id'
=>
$contactID
,
'total_amount'
=>
10
,
'financial_type'
=>
'Donation'
,
'payment_instrument'
=>
'Check'
,
'contribution_status_id'
=>
'Pending'
];
// Note that the expected result should logically be CRM_Import_Parser::valid but writing test to reflect not fix here
$this
->
runImport
(
$values
,
CRM_Import_Parser
::
DUPLICATE_UPDATE
,
NULL
);
$contribution
=
$this
->
callAPISuccess
(
'Contribution'
,
'getsingle'
,
[
'contact_id'
=>
$contactID
]);
$this
->
createCustomGroupWithFieldOfType
([],
'radio'
);
$values
[
'contribution_id'
]
=
$contribution
[
'id'
];
$values
[
$this
->
getCustomFieldName
(
'radio'
)]
=
'Red Testing'
;
unset
(
Civi
::
$statics
[
'CRM_Core_BAO_OptionGroup'
]);
$this
->
runImport
(
$values
,
CRM_Import_Parser
::
DUPLICATE_UPDATE
,
NULL
);
$contribution
=
$this
->
callAPISuccess
(
'Contribution'
,
'get'
,
[
'contact_id'
=>
$contactID
,
$this
->
getCustomFieldName
(
'radio'
)
=>
'Red Testing'
]);
$this
->
assertEquals
(
5
,
$contribution
[
'values'
][
$contribution
[
'id'
]][
'custom_'
.
$this
->
ids
[
'CustomField'
][
'radio'
]]);
$this
->
callAPISuccess
(
'CustomField'
,
'delete'
,
[
'id'
=>
$this
->
ids
[
'CustomField'
][
'radio'
]]);
$this
->
callAPISuccess
(
'CustomGroup'
,
'delete'
,
[
'id'
=>
$this
->
ids
[
'CustomGroup'
][
'Custom Group'
]]);
}
/**
...
...
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