Skip to content
Snippets Groups Projects
Verified Commit c7461414 authored by Damien's avatar Damien
Browse files

FEAT #9700 Create contact without firstname and lastname

parent 50f8d668
No related branches found
No related tags found
No related merge requests found
......@@ -37,9 +37,7 @@ class ContactController
$data = $request->getParams();
$check = Validator::notEmpty()->validate($data['firstname']);
$check = $check && Validator::stringType()->notEmpty()->validate($data['lastname']);
$check = $check && Validator::intVal()->notEmpty()->validate($data['contactType']);
$check = Validator::intVal()->notEmpty()->validate($data['contactType']);
$check = $check && Validator::intVal()->notEmpty()->validate($data['contactPurposeId']);
$check = $check && Validator::stringType()->notEmpty()->validate($data['isCorporatePerson']);
$check = $check && Validator::stringType()->notEmpty()->validate($data['email']);
......
......@@ -153,7 +153,7 @@ class PreparedClauseController
for ($i = 0; $i < $total; $i++) {
$tmpParentEntity = trim(str_replace("'", '', $parentEntity[1][$i]));
if (!empty($tmpParentEntity)) {
$entity = entitymodel::getByEntityId(['entityId' => $tmpParentEntity, 'select' => ['entity_id', 'parent_entity_id']]);
$entity = Entitymodel::getByEntityId(['entityId' => $tmpParentEntity, 'select' => ['entity_id', 'parent_entity_id']]);
}
if (empty($entity['parent_entity_id'])) {
$parentEntityClause = "''";
......@@ -169,7 +169,7 @@ class PreparedClauseController
if ($total > 0) {
for ($i = 0; $i < $total; $i++) {
$tmpSisterEntity = trim(str_replace("'", '', $sistersEntities[1][$i]));
$sisterEntity = entitymodel::getByEntityId(['entityId' => $tmpSisterEntity, 'select' => ['parent_entity_id']]);
$sisterEntity = Entitymodel::getByEntityId(['entityId' => $tmpSisterEntity, 'select' => ['parent_entity_id']]);
$allSisterEntities = EntityModel::get(['select' => ['entity_id'], 'where' => ['parent_entity_id = ?'], 'data' => [$sisterEntity['parent_entity_id']]]);
$allSisterEntitiesClause = '';
......
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