Aggiunto riferimento automatico nella descrizione
This commit is contained in:
parent
f45c7beabc
commit
e7a1cda360
|
@ -204,6 +204,18 @@ abstract class Description extends Model
|
||||||
if ($is_evasione) {
|
if ($is_evasione) {
|
||||||
$model->original_id = $this->id;
|
$model->original_id = $this->id;
|
||||||
$model->original_type = $current;
|
$model->original_type = $current;
|
||||||
|
|
||||||
|
// Rimozione del riferimento precedente dalla descrizione
|
||||||
|
if ($this->hasOriginal()) {
|
||||||
|
$riferimento = $this->getOriginal()->parent->getReference();
|
||||||
|
$attributes['descrizione'] = str_replace('
|
||||||
|
Rif. '.strtolower($riferimento), '', $attributes['descrizione']);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Aggiunta del riferimento nella descrizione
|
||||||
|
$riferimento = $this->parent->getReference();
|
||||||
|
$attributes['descrizione'] .= '
|
||||||
|
Rif. '.strtolower($riferimento);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Impostazione del genitore
|
// Impostazione del genitore
|
||||||
|
|
|
@ -252,7 +252,7 @@ switch (filter('op')) {
|
||||||
}
|
}
|
||||||
|
|
||||||
$link = null;
|
$link = null;
|
||||||
if ($sessione['ref'] == 'intervento'){
|
if ($sessione['ref'] == 'intervento') {
|
||||||
$modulo_riferimento = 'Interventi';
|
$modulo_riferimento = 'Interventi';
|
||||||
$id_riferimento = $sessione['id'];
|
$id_riferimento = $sessione['id'];
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue