-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
26 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,8 +7,9 @@ | |
/** | ||
* Collmex Member Type. | ||
* | ||
* @author Sebastian Gunreben | ||
* @author Sebastian Gunreben | ||
* @author Marcus Jaschen <[email protected]> | ||
* @author Matthieu-P. Schapranow | ||
* | ||
* @property $type_identifier | ||
* @property $customer_id | ||
|
@@ -47,6 +48,7 @@ | |
* @property $payment_via | ||
* @property $printout_language | ||
* @property $cost_center | ||
* @property $no_mailings | ||
*/ | ||
class Member extends AbstractType implements TypeInterface | ||
{ | ||
|
@@ -154,6 +156,7 @@ class Member extends AbstractType implements TypeInterface | |
'payment_via' => null, | ||
'printout_language' => null, | ||
'cost_center' => null, | ||
'no_mailings' => null, | ||
]; | ||
|
||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,10 +5,11 @@ | |
namespace MarcusJaschen\Collmex\Type; | ||
|
||
/** | ||
* Collmex Customer Get Type. | ||
* Collmex Member Get Type. | ||
* | ||
* @author Sebastian Gunreben | ||
* @author Marcus Jaschen <[email protected]> | ||
* @author Sebastian Gunreben | ||
* @author Marcus Jaschen <[email protected]> | ||
* @author Matthieu-P. Schapranow | ||
* | ||
* @property $type_identifier | ||
* @property $customer_id | ||
|
@@ -19,22 +20,40 @@ | |
* @property $exited_too | ||
* @property $changed_only | ||
* @property $system_name | ||
* @property $reporting_date | ||
* @property $entrance_date_from | ||
* @property $entrance_date_to | ||
* @property $exit_date_from | ||
* @property $exit_date_to | ||
* @property $birthday_from | ||
* @property $birthday_to | ||
*/ | ||
class MemberGet extends AbstractType implements TypeInterface | ||
{ | ||
/** | ||
* @var array | ||
*/ | ||
protected $template = [ | ||
// 1 | ||
'type_identifier' => 'MEMBER_GET', | ||
'customer_id' => null, | ||
'client_id' => null, | ||
'query' => null, | ||
// 5 | ||
'zipcode' => null, | ||
'address_group_id' => null, | ||
'exited_too' => null, | ||
'changed_only' => null, | ||
'system_name' => null, | ||
// 10 | ||
'reporting_date' => null, | ||
'entrance_date_from' => null, | ||
'entrance_date_to' => null, | ||
'exit_date_from' => null, | ||
'exit_date_to' => null, | ||
// 15 | ||
'birthday_from' => null, | ||
'birthday_to' => null, | ||
]; | ||
|
||
/** | ||
|