Aggiunta azione di gruppo nei DDT per cambiare lo stato
This commit is contained in:
parent
09250cdd92
commit
b112a5830f
|
@ -134,6 +134,29 @@ switch (post('op')) {
|
||||||
|
|
||||||
flash()->info(tr('Ddt eliminati!'));
|
flash()->info(tr('Ddt eliminati!'));
|
||||||
break;
|
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()) {
|
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;
|
return $operations;
|
||||||
|
|
|
@ -134,7 +134,7 @@ switch (post('op')) {
|
||||||
flash()->warning(tr('Nessun ordine modificato!'));
|
flash()->warning(tr('Nessun ordine modificato!'));
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if ($module['name'] == 'Ordini cliente') {
|
if ($module['name'] == 'Ordini cliente') {
|
||||||
$operations['crea_fattura'] = [
|
$operations['crea_fattura'] = [
|
||||||
|
|
Loading…
Reference in New Issue