Duplicazione ordini

This commit is contained in:
Beppe 2023-06-06 10:18:51 +02:00
parent 5a0f29ff82
commit 7e5b7b928a
3 changed files with 109 additions and 0 deletions

View File

@ -756,5 +756,45 @@ switch (post('op')) {
flash()->warning(tr('Nessun prezzo modificato!'));
}
break;
// Duplica ordine
case 'copy':
$new = $ordine->replicate();
$new->numero = Ordine::getNextNumero(post('data'), $ordine->tipo->dir, $ordine->id_segment);
$new->numero_esterno = Ordine::getNextNumeroSecondario(post('data'), $ordine->tipo->dir, $ordine->id_segment);
$new->idstatoordine = post('idstatoordine');
$new->data = post('data');
$new->save();
$id_record = $new->id;
if( !empty(post('copia_righe')) ){
$righe = $ordine->getRighe();
foreach ($righe as $riga) {
$new_riga = $riga->replicate();
$new_riga->setDocument($new);
$new_riga->qta_evasa = 0;
$new_riga->save();
}
}
//copia allegati
if (!empty(post('copia_allegati'))) {
$allegati = $ordine->uploads();
foreach ($allegati as $allegato) {
$allegato->copia([
'id_module' => $new->getModule()->id,
'id_record' => $new->id,
]);
}
}
flash()->info(tr('Aggiunto ordine numero _NUM_!', [
'_NUM_' => $new->numero,
]));
break;
}

View File

@ -19,6 +19,18 @@
include_once __DIR__.'/../../core.php';
// Duplica ordine
echo '
<button type="button" class="btn btn-primary " onclick="duplicaOrdine()">
<i class="fa fa-copy"></i> '.tr('Duplica ordine').'
</button>
<script>
function duplicaOrdine() {
openModal("'.tr('Duplica ordine').'", "'.$module->fileurl('modals/duplicazione.php').'?id_module='.$id_module.'&id_record='.$id_record.'");
}
</script>';
$stati = $dbo->fetchArray('SELECT descrizione FROM `or_statiordine` WHERE `is_fatturabile` = 1');
foreach ($stati as $stato) {
$stati_importabili[] = $stato['descrizione'];

View File

@ -0,0 +1,57 @@
<?php
/*
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
* Copyright (C) DevCode s.r.l.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
include_once __DIR__.'/../../../core.php';
echo '
<form action="" method="post" id="copia-ordine">
<input type="hidden" name="backto" value="record-edit">
<input type="hidden" name="op" value="copy">
<div class="row">
<div class="col-md-3">
{[ "type": "timestamp", "label": "'.tr('Data').'", "name": "data", "value": "-now-", "required":1 ]}
</div>
<div class="col-md-3">
{[ "type": "select", "label": "'.tr('Stato').'", "name": "idstatoordine", "required": 1, "values": "query=SELECT * FROM or_statiordine WHERE descrizione IN(\'Bozza\', \'Accettato\', \'In attesa di conferma\')", "value": "1" ]}
</div>
<div class="col-md-3">
{["type": "checkbox", "label": "'.tr('Duplica righe').'", "name": "copia_righe", "help": "'.tr('Selezione per riportare anche le righe nella nuova attività').'" ]}
</div>
<div class="col-md-3">
{["type": "checkbox", "label": "'.tr('Duplica allegati').'", "name": "copia_allegati", "help": "'.tr('Selezione per riportare anche gli allegati nella nuova attività').'", "value": 1 ]}
</div>
</div>
<!-- PULSANTI -->
<div class="row">
<div class="col-md-12 text-right">
<button type="submit" class="btn btn-primary">
<i class="fa fa-copy"></i> '.tr('Duplica').'
</button>
</div>
</div>
</form>';
echo '
<script>$(document).ready(init)</script>';