diff --git a/src/app/action/controllers/PreProcessActionController.php b/src/app/action/controllers/PreProcessActionController.php index 3ab23b09af3cc9ae28ef1edec72b8690a9afbe61..98331612fac27c7369061a910e29c6a48670c989 100644 --- a/src/app/action/controllers/PreProcessActionController.php +++ b/src/app/action/controllers/PreProcessActionController.php @@ -563,7 +563,7 @@ class PreProcessActionController break; } $afnorAddress = ContactController::getContactAfnor($contact[0]); - if ((empty($afnorAddress[1]) && empty($afnorAddress[2])) || empty($afnorAddress[6])) { + if ((empty($afnorAddress[1]) && empty($afnorAddress[2])) || empty($afnorAddress[6]) || !preg_match("/^\d{5}\s/", $afnorAddress[6])) { $resInfo = ResModel::getExtById(['select' => ['alt_identifier'], 'resId' => $valueResId]); $canNotSend[] = ['resId' => $valueResId, 'chrono' => $resInfo['alt_identifier'], 'reason' => 'incompleteAddressForPostal', 'attachmentIdentifier' => $attachment['identifier']]; unset($aAttachments[$key]); diff --git a/src/app/action/controllers/ShippingTrait.php b/src/app/action/controllers/ShippingTrait.php index 1df2b36114f7f73021f6378fde2f5ba55055300f..34847ee2b4cb3da3511342ba4ba2da03873a8f2a 100644 --- a/src/app/action/controllers/ShippingTrait.php +++ b/src/app/action/controllers/ShippingTrait.php @@ -94,7 +94,7 @@ trait ShippingTrait return ['errors' => ['Contact country is not France']]; } $afnorAddress = ContactController::getContactAfnor($contact[0]); - if ((empty($afnorAddress[1]) && empty($afnorAddress[2])) || empty($afnorAddress[6])) { + if ((empty($afnorAddress[1]) && empty($afnorAddress[2])) || empty($afnorAddress[6]) || !preg_match("/^\d{5}\s/", $afnorAddress[6])) { return ['errors' => ['Contact is not fill enough for attachment']]; } $contacts[] = $afnorAddress;