From 7626972a589c78c291c9f2662451da00786211a4 Mon Sep 17 00:00:00 2001 From: Andy Summers <andrew.summers@wisc.edu> Date: Thu, 13 Jul 2017 09:50:02 -0500 Subject: [PATCH] Add Customer Identifier Type for Alumni customers --- composer.json | 2 +- src/main/edu/wisc/services/cbs/common/MagentoOrder.php | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index ac7dd73..1bcb7d0 100755 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "adi-ia/cbs-techstore-client-php", "description": "A PHP client used to connect with the CBS API and perform requests", - "version": "6.2.3", + "version": "6.3.0", "license": "Apache-2.0", "homepage": "https://wiki.doit.wisc.edu/confluence/display/ADIIA/CBS", "authors": [ diff --git a/src/main/edu/wisc/services/cbs/common/MagentoOrder.php b/src/main/edu/wisc/services/cbs/common/MagentoOrder.php index b6baf6e..c17d29f 100644 --- a/src/main/edu/wisc/services/cbs/common/MagentoOrder.php +++ b/src/main/edu/wisc/services/cbs/common/MagentoOrder.php @@ -30,6 +30,9 @@ abstract class MagentoOrder /** @var string Type of identifier for SOAR Parent orders */ const SOAR_PARENT_IDENTIFIER_TYPE = 'SoarParent'; + /** @var string Type of identifier for Alumni orders */ + const ALUMNI_IDENTIFIER_TYPE = 'Alumni'; + /** @var string Payment type for credit card orders */ const CREDIT_CARD_IDENTIFIER_TYPE = 'CREDIT CARD'; -- GitLab