Aggiunta azione di gruppo nei DDT per cambiare lo stato

This commit is contained in:
MatteoPistorello 2021-02-01 14:46:41 +01:00
parent 09250cdd92
commit b112a5830f
2 changed files with 36 additions and 1 deletions

View File

@ -134,6 +134,29 @@ switch (post('op')) {
flash()->info(tr('Ddt eliminati!'));
break;
case 'cambia_stato':
$id_stato = post('id_stato');
$n_ddt = 0;
foreach ($id_records as $id) {
$ddt = DDT::find($id);
$ddt->idstatoddt = $id_stato;
$ddt->save();
++$n_ddt;
}
if ($n_ddt > 0) {
flash()->info(tr('Stato cambiato a _NUM_ DDT!', [
'_NUM_' => $n_ordini,
]));
} else {
flash()->warning(tr('Nessun DDT modificato!'));
}
break;
}
if (App::debug()) {
@ -159,4 +182,16 @@ $operations['crea_fattura'] = [
],
];
$operations['cambia_stato'] = [
'text' => '<span><i class="fa fa-refresh"></i> '.tr('Cambia stato'),
'data' => [
'title' => tr('Vuoi davvero cambiare lo stato per questi DDT?'),
'msg' => tr('Seleziona lo stato in cui spostare tutti i DDT').'.<br>
<br>{[ "type": "select", "label": "'.tr('Stato').'", "name": "id_stato", "required": 1, "values": "query=SELECT id, descrizione FROM dt_statiddt" ]}',
'button' => tr('Procedi'),
'class' => 'btn btn-lg btn-warning',
'blank' => false,
],
];
return $operations;

View File

@ -134,7 +134,7 @@ switch (post('op')) {
flash()->warning(tr('Nessun ordine modificato!'));
}
break;
break;
}
if ($module['name'] == 'Ordini cliente') {
$operations['crea_fattura'] = [