Skip to content
Snippets Groups Projects
Commit e4531cc3 authored by Andy Summers's avatar Andy Summers
Browse files

Add missing call to set email during ExternalCustomer creation

parent 5df2ddd3
No related branches found
No related tags found
1 merge request!67Add missing call to set email during ExternalCustomer creation
{ {
"name": "adi-ia/cbs-techstore-client-php", "name": "adi-ia/cbs-techstore-client-php",
"description": "A PHP client used to connect with the CBS API and perform requests", "description": "A PHP client used to connect with the CBS API and perform requests",
"version": "6.2.0", "version": "6.2.1",
"license": "Apache-2.0", "license": "Apache-2.0",
"homepage": "https://wiki.doit.wisc.edu/confluence/display/ADIIA/CBS", "homepage": "https://wiki.doit.wisc.edu/confluence/display/ADIIA/CBS",
"authors": [ "authors": [
......
...@@ -31,6 +31,7 @@ class ExternalCustomerInputParametersMapper ...@@ -31,6 +31,7 @@ class ExternalCustomerInputParametersMapper
->setP_CUSTOMER_IDENTIFIER($customer->getCustomerIdentifier()) ->setP_CUSTOMER_IDENTIFIER($customer->getCustomerIdentifier())
->setP_FIRST_NAME($customer->getFirstName()) ->setP_FIRST_NAME($customer->getFirstName())
->setP_LAST_NAME($customer->getLastName()) ->setP_LAST_NAME($customer->getLastName())
->setP_EMAIL($customer->getEmail())
->setP_PHONE($customer->getPhone()) ->setP_PHONE($customer->getPhone())
->setP_REFERENCE($customer->getReference()) ->setP_REFERENCE($customer->getReference())
->setP_TEST_MODE($customer->getTestMode()); ->setP_TEST_MODE($customer->getTestMode());
......
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