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

Merge branch 'add-pickup-constants' into 'master'

Adding Pickup addresses, and received shipping methods.

See merge request !108
parents ccc764fd ca9aaea1
No related branches found
No related tags found
1 merge request!108Adding Pickup addresses, and received shipping methods.
<?php
namespace edu\wisc\services\cbs\common;
/**
* Pickup identifiers expected by CBS
*/
abstract class Pickup
{
/** @var string CBS value for Tech Store Pickup shipping method */
const TS_PICKUP = 'TECHSTORE PICKUP';
/** @var string CBS value for Received shipping method */
const TS_RECEIVED = 'RECEIVED';
/** @var string Address Line 1 for TS pickup and TS Received*/
const TS_ADDRESS_1 = 'DoIT Tech Store at Computer Sciences';
/** @var string Address Line 2 for TS pickup and TS Received*/
const TS_ADDRESS_2 = '1210 West Dayton St';
/** @var string City for TS pickup and TS Received */
const TS_CITY = 'Madison';
/** @var string Zip for TS pickup and TS Received */
const TS_ZIP = '53706';
/** @var string State for TS pickup and TS Received */
const TS_STATE = 'WI';
/** @var string CBS value for ECM Pickup shipping method */
const ECM_PICKUP = 'ECM PICKUP';
/** @var string CBS value for ECM Received shipping method */
const ECM_RECEIVED = 'ECM RECEIVED';
/** @var string Address Line 1 for ECM pickup and ECM Received */
const ECM_ADDRESS_1 = 'DoIT Tech Store at East Campus Mall';
/** @var string Address Line 2 for ECM pickup and ECM Received */
const ECM_ADDRESS_2 = '333 East Campus Mall';
/** @var string City for ECM pickup and ECM Received */
const ECM_CITY = 'Madison';
/** @var string Zip code for ECM pickup and ECM Received */
const ECM_ZIP = '53715-1365';
/** @var string State for ECM pickup and ECM Received */
const ECM_STATE = 'WI';
/** @var string CBS value for HSLC Received shipping method */
const HSLC_RECEIVED = 'HSLC RECEIVED';
/** @var string CBS value for HSLC Pickup shipping method */
const HSLC_PICKUP = 'HSLC PICKUP';
/** @var string Address Line 1 for HSLC pickup and HSLC Received */
const HSLC_ADDRESS_1 = 'DoIT Tech Store at Health Sciences';
/** @var string Address Line 2 for HSLC pickup and HSLC Received */
const HSLC_ADDRESS_2 = '750 Highland Ave';
/** @var string City for HSLC pickup and HSLC Received */
const HSLC_CITY = 'Madison';
/** @var string Zip for HSLC pickup and HSLC Received */
const HSLC_ZIP = '53705-2221';
/** @var string State for HSLC pickup and HSLC Received */
const HSLC_STATE = 'WI';
}
......@@ -17,15 +17,6 @@ abstract class Shipping
/** @var string CBS value for Drop Shipping */
const DROPSHIP = 'DROPSHIP';
/** @var string CBS value for Tech Store Pickup shipping method */
const TS_PICKUP = 'TECHSTORE PICKUP';
/** @var string CBS value for HSLC Pickup shipping method */
const HSLC_PICKUP = 'HSLC PICKUP';
/** @var string CBS value for ECM Pickup shipping method */
const ECM_PICKUP = 'ECM PICKUP';
/** @var string Street address for UPS Shipping line item charge (will always be CS) */
const UPS_ADDRESS = '1210 W. Dayton St.';
......
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