WIP
This commit is contained in:
@@ -12,8 +12,6 @@ use App\BusProNet\Model\BaseResponse;
|
||||
|
||||
class ResponseParser
|
||||
{
|
||||
public const ATTR_ID_TEAMER = 1070;
|
||||
|
||||
/**
|
||||
* @throws ResponseParserException
|
||||
*/
|
||||
@@ -108,7 +106,7 @@ class ResponseParser
|
||||
public function createCrmAttributesResponse(\SimpleXMLElement $xml): CrmAttributesResponse
|
||||
{
|
||||
$groups = [];
|
||||
$isTeam = false;
|
||||
$isAdmin = $isManager = $isTeamer = false;
|
||||
|
||||
foreach ($xml->xpath('selektionsmerkmale/selektionsgruppe') as $item) {
|
||||
$group = new CrmAttributeGroup();
|
||||
@@ -124,8 +122,14 @@ class ResponseParser
|
||||
;
|
||||
$attributes[] = $attribute;
|
||||
|
||||
if (static::ATTR_ID_TEAMER === $attribute->getId() && true === $attribute->isSelected()) {
|
||||
$isTeam = true;
|
||||
if (CrmAttribute::ATTR_ID_ADMIN === $attribute->getId() && true === $attribute->isSelected()) {
|
||||
$isAdmin = true;
|
||||
}
|
||||
if (CrmAttribute::ATTR_ID_MANAGER === $attribute->getId() && true === $attribute->isSelected()) {
|
||||
$isManager = true;
|
||||
}
|
||||
if (CrmAttribute::ATTR_ID_TEAMER === $attribute->getId() && true === $attribute->isSelected()) {
|
||||
$isTeamer = true;
|
||||
}
|
||||
}
|
||||
$group->setAttributes($attributes);
|
||||
@@ -135,7 +139,9 @@ class ResponseParser
|
||||
$response = new CrmAttributesResponse();
|
||||
$response
|
||||
->setAttributeGroups($groups)
|
||||
->setTeamer($isTeam)
|
||||
->setAdmin($isAdmin)
|
||||
->setManager($isManager)
|
||||
->setTeamer($isTeamer)
|
||||
;
|
||||
|
||||
return $response;
|
||||
|
||||
Reference in New Issue
Block a user