Rimossa pianificazione interventi nuovi se non creata dai contratti
This commit is contained in:
parent
1f7fecc5eb
commit
ff89f811fe
|
@ -196,26 +196,6 @@ switch (post('op')) {
|
|||
break;
|
||||
|
||||
case 'add':
|
||||
/*
|
||||
$codice = post('codice');
|
||||
|
||||
// Controlli sul codice
|
||||
$count = -1;
|
||||
do {
|
||||
$new_codice = ($count < 0) ? $codice : Util\Generator::generate(get_var('Formato codice intervento'), $codice);
|
||||
$rs = $dbo->fetchArray('SELECT codice FROM in_interventi WHERE codice='.prepare($new_codice));
|
||||
++$count;
|
||||
} while (!empty($rs) || empty($new_codice));
|
||||
|
||||
if ($count > 0) {
|
||||
$_SESSION['warnings'][] = tr('Numero intervento _NUM_ saltato perchè già esistente!', [
|
||||
'_NUM_' => "'".$codice."'"
|
||||
]);
|
||||
$_SESSION['warnings'][] = tr('Nuovo numero intervento calcolato _NUM_', [
|
||||
'_NUM_' => "'".$new_codice."'"
|
||||
]);
|
||||
}
|
||||
*/
|
||||
$formato = get_var('Formato codice intervento');
|
||||
$template = str_replace('#', '%', $formato);
|
||||
|
||||
|
@ -279,10 +259,6 @@ switch (post('op')) {
|
|||
if (!empty($idcontratto_riga)) {
|
||||
$dbo->update('co_righe_contratti', $array, ['idcontratto' => $idcontratto, 'id' => $idcontratto_riga]);
|
||||
}
|
||||
// Altrimenti inserisco una nuova pianificazione e collego l'intervento
|
||||
else {
|
||||
$dbo->insert('co_righe_contratti', array_merge(['idcontratto' => $idcontratto], $array));
|
||||
}
|
||||
}
|
||||
|
||||
if (!empty($post['idordineservizio'])) {
|
||||
|
|
Loading…
Reference in New Issue