Creazione attività da Preventivo
This commit is contained in:
parent
372714b425
commit
03a847ab61
|
@ -70,6 +70,12 @@ echo '
|
|||
</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a class="'.($disabled ? '' : 'disabled').'" data-href="'.$structure->fileurl('crea_documento.php').'?id_module='.$id_module.'&id_record='.$id_record.'&documento=intervento" data-toggle="modal" data-title="'.tr('Crea attività').'">
|
||||
<i class="fa fa-file-o"></i> '.tr('Attività').'
|
||||
</a>
|
||||
</li>
|
||||
|
||||
<li>
|
||||
<a class="'.($disabled ? '' : 'disabled').'" data-href="'.$structure->fileurl('crea_documento.php').'?id_module='.$id_module.'&id_record='.$id_record.'&documento=ddt" data-toggle="modal" data-title="'.tr('Crea ordine cliente').'">
|
||||
<i class="fa fa-truck"></i> '.tr('DDT in uscita').'
|
||||
|
|
|
@ -22,6 +22,7 @@ include_once __DIR__.'/../../core.php';
|
|||
use Modules\Contratti\Contratto;
|
||||
use Modules\DDT\DDT;
|
||||
use Modules\Fatture\Fattura;
|
||||
use Modules\Interventi\Intervento;
|
||||
use Modules\Ordini\Ordine;
|
||||
use Modules\Preventivi\Preventivo;
|
||||
|
||||
|
@ -43,10 +44,14 @@ if (get('documento') == 'fattura') {
|
|||
$final_module = 'Ddt di vendita';
|
||||
$op = 'add_documento';
|
||||
$tipo_documento_finale = DDT::class;
|
||||
} else {
|
||||
} elseif (get('documento') == 'contratto') {
|
||||
$final_module = 'Contratti';
|
||||
$op = 'add_preventivo';
|
||||
$tipo_documento_finale = Contratto::class;
|
||||
} else {
|
||||
$final_module = 'Interventi';
|
||||
$op = 'add_documento';
|
||||
$tipo_documento_finale = Intervento::class;
|
||||
}
|
||||
|
||||
$options = [
|
||||
|
|
Loading…
Reference in New Issue