openstamanager/modules/anagrafiche/validation.php

162 lines
5.5 KiB
PHP
Raw Normal View History

2019-07-05 12:28:19 +02:00
<?php
2020-09-07 15:04:06 +02:00
/*
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
2021-01-20 15:08:51 +01:00
* Copyright (C) DevCode s.r.l.
2020-09-07 15:04:06 +02:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
2019-07-05 12:28:19 +02:00
include_once __DIR__.'/../../core.php';
use Modules\Anagrafiche\Anagrafica;
$name = filter('name');
$value = filter('value');
2019-07-05 12:28:19 +02:00
switch ($name) {
case 'codice':
$disponibile = Anagrafica::where([
['codice', $value],
['idanagrafica', '<>', $id_record],
])->count() == 0;
$message = $disponibile ? tr('Il codice è disponbile') : tr("Il codice è già utilizzato in un'altra anagrafica");
$response = [
'result' => $disponibile,
'message' => $message,
];
break;
case 'codice_fiscale':
$disponibile = Anagrafica::where([
['codice_fiscale', $value],
2019-07-23 16:12:46 +02:00
['codice_fiscale', '<>', ''],
2019-07-05 12:28:19 +02:00
['idanagrafica', '<>', $id_record],
])->count() == 0;
2021-01-11 17:52:03 +01:00
$message = $disponibile ? tr('Questo codice fiscale non è ancora stato utilizzato') : tr("Il codice fiscale è già utilizzato in un'altra anagrafica");
2019-07-05 12:28:19 +02:00
// Validazione del Codice Fiscale, solo per anagrafiche Private e Aziende, ignoro controllo se codice fiscale e settato uguale alla p.iva
if (empty($anagrafica) || ($anagrafica->tipo != 'Ente pubblico' && $value != $anagrafica->partita_iva)) {
$check = Validate::isValidTaxCode($value);
if (empty($check)) {
$message .= '. '.tr('Attenzione: il codice fiscale _COD_ potrebbe non essere valido', [
'_COD_' => $value,
]);
2021-01-11 17:52:03 +01:00
$disponibile = false;
}
}
2021-02-18 18:48:44 +01:00
if ($value == $anagrafica->partita_iva) {
2021-01-11 17:52:03 +01:00
$partita_iva = !empty($anagrafica) && is_numeric($value) ? $anagrafica->nazione->iso2.$value : $value;
$result = $disponibile;
$check = Validate::isValidVatNumber($partita_iva);
if (empty($check['valid-format'])) {
$disponibile = false;
$errors[] = tr('La partita iva inserita non possiede un formato valido');
}
if (isset($check['valid']) && empty($check['valid'])) {
$disponibile = false;
$errors[] = tr("Impossibile verificare l'origine della partita iva");
2019-07-05 12:28:19 +02:00
}
}
$response = [
'result' => $disponibile,
'message' => $message,
];
break;
case 'partita_iva':
$disponibile = Anagrafica::where([
['piva', $value],
2019-07-23 16:12:46 +02:00
['piva', '<>', ''],
2019-07-05 12:28:19 +02:00
['idanagrafica', '<>', $id_record],
])->count() == 0;
2021-01-11 17:52:03 +01:00
$message = $disponibile ? tr('Questa partita iva non è ancora stata utilizzata') : tr("La partita iva è già utilizzata in un'altra anagrafica");
2019-07-05 12:28:19 +02:00
$partita_iva = !empty($anagrafica) && is_numeric($value) ? $anagrafica->nazione->iso2.$value : $value;
$result = $disponibile;
2019-07-05 12:28:19 +02:00
$check = Validate::isValidVatNumber($partita_iva);
if (empty($check['valid-format'])) {
$result = false;
$errors[] = tr('La partita iva inserita non possiede un formato valido');
}
2019-12-03 20:13:29 +01:00
if (isset($check['valid']) && empty($check['valid'])) {
$result = false;
$errors[] = tr("Impossibile verificare l'origine della partita iva");
}
$message .= '. ';
if (!empty($errors)) {
$message .= tr('Attenzione').':<ul>';
foreach ($errors as $error) {
$message .= '<li>'.$error.'</li>';
}
$message .= '</ul>';
2019-07-05 12:28:19 +02:00
}
$response = [
'result' => $result,
2019-07-05 12:28:19 +02:00
'message' => $message,
'fields' => $check['fields'],
2019-07-05 12:28:19 +02:00
];
2019-09-18 18:29:00 +02:00
break;
case 'email':
$disponibile = Anagrafica::where([
['email', $value],
['email', '<>', ''],
['idanagrafica', '<>', $id_record],
])->count() == 0;
$result = $disponibile;
2019-09-18 18:29:00 +02:00
2021-02-18 18:48:44 +01:00
$message = $disponibile ? tr('Questa email non è ancora stata utilizzata') : tr("L'email è già utilizzata in un'altra anagrafica");
2019-09-18 18:29:00 +02:00
$errors = [];
2019-09-18 18:29:00 +02:00
$check = Validate::isValidEmail($value);
if (empty($check['valid-format'])) {
2019-09-18 18:29:00 +02:00
$result = false;
$errors[] = tr("L'email inserita non possiede un formato valido");
}
2020-01-15 11:38:41 +01:00
if (isset($check['smtp-check']) && empty($check['smtp-check'])) {
$result = false;
$errors[] = tr("Impossibile verificare l'origine dell'email");
}
2019-09-18 18:29:00 +02:00
$message .= '. ';
if (!empty($errors)) {
$message .= tr('Attenzione').':<ul>';
foreach ($errors as $error) {
$message .= '<li>'.$error.'</li>';
2019-09-18 18:29:00 +02:00
}
$message .= '</ul>';
2019-09-18 18:29:00 +02:00
}
$response = [
'result' => $result,
'message' => $message,
];
2019-07-05 12:28:19 +02:00
break;
}