Fix minore
This commit is contained in:
parent
067aeadb97
commit
5af7872120
|
@ -38,7 +38,7 @@ if (get('documento') == 'fattura') {
|
||||||
$op = 'add_ordine_cliente';
|
$op = 'add_ordine_cliente';
|
||||||
$tipo_documento_finale = Ordine::class;
|
$tipo_documento_finale = Ordine::class;
|
||||||
} elseif (get('documento') == 'intervento') {
|
} elseif (get('documento') == 'intervento') {
|
||||||
$final_module = 'Attività';
|
$final_module = 'Interventi';
|
||||||
$op = $module->getTranslation('title', Models\Locale::getPredefined()->id) == 'Ordini cliente' ? 'add_documento' : 'add_intervento';
|
$op = $module->getTranslation('title', Models\Locale::getPredefined()->id) == 'Ordini cliente' ? 'add_documento' : 'add_intervento';
|
||||||
$tipo_documento_finale = Intervento::class;
|
$tipo_documento_finale = Intervento::class;
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -49,7 +49,7 @@ if (get('documento') == 'fattura') {
|
||||||
$op = 'add_preventivo';
|
$op = 'add_preventivo';
|
||||||
$tipo_documento_finale = Contratto::class;
|
$tipo_documento_finale = Contratto::class;
|
||||||
} else {
|
} else {
|
||||||
$final_module = 'Attività';
|
$final_module = 'Interventi';
|
||||||
$op = 'add_documento';
|
$op = 'add_documento';
|
||||||
$tipo_documento_finale = Intervento::class;
|
$tipo_documento_finale = Intervento::class;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue