openstamanager/modules/ddt/bulk.php

137 lines
4.6 KiB
PHP
Raw Normal View History

2018-03-09 11:56:58 +01:00
<?php
include_once __DIR__.'/../../core.php';
2018-06-26 09:41:43 +02:00
2020-02-14 12:37:55 +01:00
use Modules\DDT\DDT;
use Modules\Fatture\Fattura;
use Modules\Fatture\Stato;
use Modules\Fatture\Tipo;
if ($module['name'] == 'Ddt di vendita') {
$dir = 'entrata';
$module_fatture = 'Fatture di vendita';
} else {
$dir = 'uscita';
$module_fatture = 'Fatture di acquisto';
}
// Segmenti
$id_fatture = Modules::get($module_fatture)['id'];
if (!isset($_SESSION['module_'.$id_fatture]['id_segment'])) {
$segments = Modules::getSegments($id_fatture);
$_SESSION['module_'.$id_fatture]['id_segment'] = isset($segments[0]['id']) ? $segments[0]['id'] : null;
}
$id_segment = $_SESSION['module_'.$id_fatture]['id_segment'];
2018-03-15 17:41:09 +01:00
switch (post('op')) {
case 'crea_fattura':
2020-02-14 12:37:55 +01:00
$documenti = collect();
$numero_totale = 0;
// Informazioni della fattura
2018-09-03 16:01:05 +02:00
if ($dir == 'entrata') {
$descrizione_tipo = 'Fattura immediata di vendita';
} else {
$descrizione_tipo = 'Fattura immediata di acquisto';
}
2018-08-29 18:15:12 +02:00
$tipo_documento = Tipo::where('descrizione', $descrizione_tipo)->first();
$stato_documenti_accodabili = Stato::where('descrizione', 'Bozza')->first();
$accodare = post('accodare');
$data = date('Y-m-d');
$id_segment = post('id_segment');
2018-09-24 10:51:48 +02:00
2018-03-15 17:41:09 +01:00
// Lettura righe selezionate
foreach ($id_records as $id) {
2020-02-14 12:37:55 +01:00
$documento_import = DDT::find($id);
$anagrafica = $documento_import->anagrafica;
$id_anagrafica = $anagrafica->id;
2018-03-15 17:41:09 +01:00
2020-02-14 12:37:55 +01:00
// Proseguo solo se i documenti scelti sono fatturabili
$righe = $documento_import->getRighe();
if (!empty($righe)) {
2020-02-14 12:37:55 +01:00
++$numero_totale;
2018-03-15 17:41:09 +01:00
// Ricerca fattura per anagrafica tra le registrate
2020-02-14 12:37:55 +01:00
$fattura = $documenti->first(function ($item, $key) use ($id_anagrafica) {
return $item->anagrafica->id == $id_anagrafica;
});
// Ricerca fattura per anagrafica se l'impostazione di accodamento è selezionata
if (!empty($accodare) && empty($fattura)) {
$fattura = Fattura::where('idanagrafica', $id_anagrafica)
->where('idstatodocumento', $stato_documenti_accodabili->id)
->where('idtipodocumento', $tipo_documento->id)
->first();
if (!empty($fattura)) {
$documenti->push($fattura);
}
}
// Creazione fattura per anagrafica
2020-02-14 12:37:55 +01:00
if (empty($fattura)) {
2019-01-02 14:15:16 +01:00
$fattura = Fattura::build($anagrafica, $tipo_documento, $data, $id_segment);
2020-02-14 12:37:55 +01:00
$documenti->push($fattura);
2018-03-15 17:41:09 +01:00
}
// Inserimento righe
foreach ($righe as $riga) {
$qta = $riga->qta_rimanente;
2018-03-15 17:41:09 +01:00
if ($qta > 0) {
2020-02-14 12:37:55 +01:00
$copia = $riga->copiaIn($fattura, $qta);
2018-03-09 11:56:58 +01:00
2020-02-14 12:37:55 +01:00
// Aggiornamento seriali dalla riga dell'ordine
if ($copia->isArticolo()) {
$copia->serials = $riga->serials;
}
2018-03-15 17:41:09 +01:00
}
}
}
2018-03-09 11:56:58 +01:00
}
2018-03-15 17:41:09 +01:00
2020-02-14 12:37:55 +01:00
if ($numero_totale > 0) {
2018-07-19 17:29:21 +02:00
flash()->info(tr('_NUM_ ddt fatturati!', [
2020-02-14 12:37:55 +01:00
'_NUM_' => $numero_totale,
]));
2018-03-15 17:41:09 +01:00
} else {
2018-07-19 17:29:21 +02:00
flash()->warning(tr('Nessun ddt fatturato!'));
2018-03-15 17:41:09 +01:00
}
break;
2018-03-22 15:40:20 +01:00
case 'delete-bulk':
2019-05-16 04:52:16 +02:00
foreach ($id_records as $id) {
$documento = DDT::find($id);
try {
$documento->delete();
} catch (InvalidArgumentException $e) {
}
2019-05-16 04:52:16 +02:00
}
2018-06-26 09:41:43 +02:00
2019-05-16 04:52:16 +02:00
flash()->info(tr('Ddt eliminati!'));
2018-03-22 15:40:20 +01:00
break;
2018-03-09 11:56:58 +01:00
}
2019-05-13 17:01:43 +02:00
if (App::debug()) {
2019-05-16 04:52:16 +02:00
$operations = [
'delete-bulk' => tr('Elimina selezionati'),
];
2019-05-13 17:01:43 +02:00
}
2019-05-16 04:52:16 +02:00
2019-05-13 17:01:43 +02:00
$operations['crea_fattura'] = [
'text' => tr('Fattura documenti'),
2018-03-09 11:56:58 +01:00
'data' => [
'title' => tr('Vuoi davvero fatturare questi documenti?'),
'msg' => '<br>{[ "type": "checkbox", "placeholder": "'.tr('Aggiungere alle fatture esistenti non ancora emesse?').'", "name": "accodare" ]}
<br>{[ "type": "select", "label": "'.tr('Sezionale').'", "name": "id_segment", "required": 1, "values": "query=SELECT id, name AS descrizione FROM zz_segments WHERE id_module=\''.$id_fatture.'\' AND is_fiscale = 1 ORDER BY name", "value": "'.$id_segment.'" ]}',
2018-03-09 11:56:58 +01:00
'button' => tr('Procedi'),
'class' => 'btn btn-lg btn-warning',
'blank' => false,
],
2019-05-13 17:01:43 +02:00
];
return $operations;