| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310 |
- <?php
- namespace App\Http\Livewire;
- use Livewire\Component;
- use Illuminate\Support\Facades\Auth;
- use Illuminate\Support\Facades\Log;
- use SimpleXMLElement;
- use Livewire\WithFileUploads;
- use Illuminate\Support\Facades\DB;
- class RecordOUT extends Component
- {
- use WithFileUploads;
- protected $listeners = [
- 'setCausal' => 'setCausal',
- 'closeImportModal' => 'closeImportModal',
- ];
- public $sortField = 'date';
- public $sortAsc = false;
- public $typeOUT = "OUT";
- public $fromPage = '';
- public $multiP = false;
- public $multiMonthTo = 0;
- public $multiYearTo = 0;
- public $multiMonthFrom = 0;
- public $multiYearFrom = 0;
- public function sortBy($field)
- {
- if ($this->sortField === $field) {
- $this->sortAsc = ! $this->sortAsc;
- } else {
- $this->sortAsc = true;
- }
- $this->sortField = $field;
- }
- public $records, $dataId, $member_id, $supplier_id,
- $causal_id,
- $payment_method_id,
- $date,
- $data_pagamento,
- $month,
- $year,
- $type,
- $amount,
- $note,
- $commercial, $update = false, $add = false;
- public $filterSupplier = 0, $filterPaymentMethod = 0, $filterCausals = [], $filterFrom = '', $filterTo = '', $filterCommercial = 0;
- public $hasFilter = false;
- public $total = 0;
- public $selectedFilter = '';
- public $multipleIds = [];
- public $multipleAction = '';
- public $selectId = 0;
- public $causals = array();
- public $payments = array();
- public $suppliers = array();
- public $rows = array();
- public $receiptFiles = [];
- public $selectedCausal = '';
- public $importCausals = array();
- protected $rules = [
- 'supplier_id' => 'required',
- 'payment_method_id' => 'required',
- 'rows.*.causal_id' => 'required',
- 'rows.*.amount' => 'required'
- //'causal_id' => 'required',
- //'amount' => 'required'
- ];
- protected $messages = [
- 'supplier_id.required' => 'Il fornitore è obbligatorio',
- 'payment_method_id.required' => 'Il metodo di pagamento è obbligatorio',
- 'rows.*.amount.required' => 'L\'importo è obbligatorio',
- 'rows.*.causal_id.required' => 'La causale è obbligatoria'
- ];
- public function getSupplierProperty()
- {
- $ret = null;
- if ($this->supplier_id > 0) {
- $ret = \App\Models\Supplier::findOrFail($this->supplier_id);
- }
- return $ret;
- }
- public function getCausalProperty()
- {
- $ret = null;
- if ($this->causal_id > 0) {
- $ret = \App\Models\Causal::findOrFail($this->causal_id);
- }
- return $ret;
- }
- public function resetFields()
- {
- $this->member_id = null;
- $this->supplier_id = null;
- //$this->causal_id = null;
- $this->payment_method_id = null;
- $this->date = date("Y-m-d");
- $this->data_pagamento = date("Y-m-d");
- //$this->month = date("n");
- //$this->year = date("Y");
- $this->type = 'OUT';
- //$this->note = '';
- //$this->amount = null;
- $this->commercial = 1;
- $this->rows = array();
- $this->rows[] = array(
- 'causal_id' => null,
- 'when' => array(array('month' => date("n"), 'year' => date("Y"), 'period' => '')),
- 'amount' => null,
- 'imponibile' => null,
- 'aliquota_iva' => null,
- 'note' => '',
- 'commercial' => 0
- );
- $this->emit('load-data-table');
- }
- public function getCausale($records, $indentation)
- {
- foreach ($records as $record) {
- $this->causals[] = array('id' => $record->id, 'name' => $record->getTree());
- if (count($record->childs))
- $this->getCausale($record->childs, $indentation + 1);
- }
- }
- public $isImportModalOpen = false;
- public function openImportModal()
- {
- $this->isImportModalOpen = true;
- }
- public function closeImportModal()
- {
- $this->isImportModalOpen = false;
- $this->reset(['selectedCausal', 'receiptFiles']);
- $this->resetValidation();
- $this->dispatchBrowserEvent('closeModal');
- }
- public function hydrate()
- {
- $this->emit('load-select');
- if (empty($this->importCausals)) {
- $this->loadImportCausals();
- }
- }
- public function mount()
- {
- if (isset($_GET["from"])) {
- $this->fromPage = $_GET["from"];
- }
- if (Auth::user()->level != env('LEVEL_ADMIN', 0))
- return redirect()->to('/dashboard');
- $this->multiMonthFrom = date("n");
- $this->multiYearFrom = date("Y");
- $this->multiMonthTo = date("n");
- $this->multiYearTo = date("Y");
- if (isset($_GET["new"]))
- $this->add();
- $this->causals = array();
- $this->getCausale(\App\Models\Causal::select('id', 'name')->where('parent_id', null)->where('type', 'OUT')->orderBy('name')->get(), 0);
- $this->suppliers = \App\Models\Supplier::select('name', 'id')->orderBy('name')->get();
- $this->payments = \App\Models\PaymentMethod::select('id', 'name')->whereIn('type', array('ALL', 'OUT'))->where('enabled', true)->orderBy('name')->get();
- $this->importCausals = [];
- $this->loadImportCausals();
- }
- public function loadImportCausals()
- {
- $causals = \App\Models\Causal::select('id', 'name', 'parent_id')
- ->where('type', 'OUT')
- ->orderBy('name')
- ->get();
- $this->importCausals = [];
- $this->buildCausalTree($causals);
- }
- private function buildCausalTree($causals, $parentId = null, $level = 0)
- {
- foreach ($causals as $causal) {
- if ($causal->parent_id == $parentId) {
- $dotString = str_repeat('● ', $level);
- $this->importCausals[] = [
- 'id' => $causal->id,
- 'name' => $dotString . $causal->name
- ];
- $this->buildCausalTree($causals, $causal->id, $level + 1);
- }
- }
- }
- private function getCausalLevel($causal, $level = 0)
- {
- if ($causal->parent_id == null) {
- return $level;
- }
- $parent = \App\Models\Causal::find($causal->parent_id);
- if (!$parent) {
- return $level;
- }
- return $this->getCausalLevel($parent, $level + 1);
- }
- public function getCausal($causal)
- {
- $ret = '';
- if ($causal > 0) {
- $ret = \App\Models\Causal::findOrFail($causal)->getTree();
- }
- return $ret;
- }
- public function search()
- {
- $this->hasFilter = true;
- }
- public function disableSearch()
- {
- $this->filterSupplier = 0;
- $this->filterPaymentMethod = 0;
- $this->filterCausals = [];
- $this->filterTo = '';
- $this->filterFrom = '';
- $this->filterCommercial = 0;
- $this->hasFilter = false;
- $this->hasFilter = false;
- }
- public function render()
- {
- $datas = [];
- if (false) {
- if ($this->hasFilter) {
- $datas = \App\Models\Record::where('type', 'OUT')->with('supplier', 'payment_method');
- /*if ($this->filterCommercial > 0)
- {
- $datas = $datas->where('commercial', $this->filterCommercial == 1 ? true : false);
- }*/
- if ($this->filterSupplier > 0) {
- $datas = $datas->where('supplier_id', $this->filterSupplier);
- }
- if ($this->filterPaymentMethod > 0) {
- $datas = $datas->where('payment_method_id', $this->filterPaymentMethod);
- }
- /*if (sizeof($this->filterCausals) > 0)
- {
- $datas = $datas->whereIn('causal_id', $this->filterCausals);
- }*/
- if ($this->filterFrom != '') {
- $datas = $datas->where('date', '>=', $this->filterFrom);
- }
- if ($this->filterTo != '') {
- $datas = $datas->where('date', '<=', $this->filterTo);
- }
- //$this->records = $datas->orderBy('date', 'DESC')->get();
- $this->records = $datas->get();
- //$this->total = $this->records->sum('amount');
- $this->total = 0;
- foreach ($this->records as $r) {
- foreach ($r->rows as $rr) {
- $this->total += $rr->amount;
- }
- }
- } else {
- if ($this->selectedFilter == '') {
- $this->records = \App\Models\Record::where('type', 'OUT')->with('supplier', 'payment_method')->limit(20)->orderBy('date', 'DESC')->orderBy('id', 'DESC')->get();
- } else {
- if ($this->selectedFilter == 0) {
- $fromDate = date("Y-m-d");
- $toDate = date("Y-m-d");
- }
- if ($this->selectedFilter == 1) {
- $fromDate = date("Y-m-01");
- $toDate = date("Y-m-t");
- }
- if ($this->selectedFilter == 2) {
- $fromDate = date("Y-01-01");
- $toDate = date("Y-12-31");
- }
- if ($this->selectedFilter == 3) {
- $fromDate = date("2000-01-01");
- $toDate = date("Y-12-31");
- }
- $this->records = \App\Models\Record::where('type', 'OUT')->whereBetween('date', [$fromDate, $toDate])->with('supplier', 'payment_method')->get();
- }
- }
- foreach ($this->records as $r) {
- $r->total = $r->getTotal();
- $r->supplier = $r->supplier ? $r->supplier->name : '';
- $r->payment = $r->payment_method ? $r->payment_method->name : '';
- }
- }
- /*if ($this->sortField != '')
- {
- if ($this->sortAsc)
- $this->records = $this->records->sortBy($this->sortField);
- else
- $this->records = $this->records->sortByDesc($this->sortField);
- }
- else
- $this->records = $this->records->sortByDesc('id');*/
- return view('livewire.records_out');
- }
- public function executeMultipleAction()
- {
- if ($this->multipleAction == 'delete')
- $this->multipleDelete();
- }
- public function add()
- {
- $this->emit('load-select');
- //if ($this->hasFilter)
- $this->emit('hide-search');
- $this->resetFields();
- $this->add = true;
- $this->update = false;
- $this->emit('setEdit', true);
- }
- public function store()
- {
- $this->emit('refresh');
- $this->validate();
- try {
- $record = \App\Models\Record::create([
- 'member_id' => $this->member_id,
- 'supplier_id' => $this->supplier_id,
- //'causal_id' => $this->causal_id,
- 'payment_method_id' => $this->payment_method_id,
- 'date' => $this->date,
- 'data_pagamento' => $this->data_pagamento,
- //'month' => $this->month,
- //'year' => $this->year,
- //'note' => $this->note,
- 'type' => $this->type,
- //'amount' => $this->currencyToDouble($this->amount),
- 'commercial' => $this->commercial,
- ]);
- $this->dataId = $record->id;
- $tot = 0;
- foreach ($this->rows as $row) {
- foreach ($row["when"] as $x => $y) {
- $row["when"][$x]['period'] = $row["when"][$x]['month'] . "-" . $row["when"][$x]['year'];
- }
- $imponibile = isset($row["imponibile"]) ? $this->currencyToDouble($row["imponibile"]) : null;
- Log::info("Imponibile store: " . $imponibile);
- $aliquota_iva = isset($row["aliquota_iva"]) ? floatval(str_replace('%', '', $row["aliquota_iva"])) : null;
- Log::info("Aliquota IVA store: " . $aliquota_iva);
- \App\Models\RecordRow::create([
- 'record_id' => $this->dataId,
- 'causal_id' => $row["causal_id"],
- 'note' => $row["note"],
- 'amount' => $this->currencyToDouble($row["amount"]),
- 'imponibile' => $imponibile,
- 'aliquota_iva' => $aliquota_iva,
- 'commercial' => $row["commercial"],
- 'when' => json_encode($row["when"])
- ]);
- $tot += $this->currencyToDouble($row["amount"]);
- }
- $record->amount = $tot;
- $record->save();
- session()->flash('success', 'Movimento creato');
- $this->resetFields();
- $this->add = false;
- $this->emit('setEdit', false);
- } catch (\Exception $ex) {
- $this->emit('flash-error', 'Errore (' . $ex->getMessage() . ')');
- }
- }
- public function edit($id)
- {
- if (!isset($_GET["from"]) && $this->fromPage == '')
- $this->fromPage = 'out';
- $this->emit('setEdit', true);
- $this->emit('load-select');
- //if ($this->hasFilter)
- $this->emit('hide-search');
- try {
- $record = \App\Models\Record::findOrFail($id);
- if (!$record) {
- $this->emit('flash-error', 'Movimento non trovato');
- } else {
- $this->member_id = $record->member_id;
- $this->supplier_id = $record->supplier_id;
- //$this->causal_id = $record->causal_id;
- $this->payment_method_id = $record->payment_method_id;
- $this->date = date("Y-m-d", strtotime($record->date));
- $this->data_pagamento = date("Y-m-d", strtotime($record->data_pagamento));
- //$this->month = $record->month;
- //$this->year = $record->year;
- //$this->note = $record->note;
- $this->type = $record->type;
- //$this->amount = formatPrice($record->amount);
- $this->commercial = $record->commercial;
- $this->dataId = $record->id;
- $this->update = true;
- $this->add = false;
- $this->rows = [];
- $recordRows = \App\Models\RecordRow::where('record_id', $this->dataId)->get();
- foreach ($recordRows as $recordRow) {
- $rowData = [
- 'causal_id' => $recordRow->causal_id,
- 'note' => $recordRow->note,
- 'commercial' => $recordRow->commercial,
- 'when' => json_decode($recordRow->when),
- 'amount' => formatPrice($recordRow->amount)
- ];
- // Add imponibile field if available in the database
- if (isset($recordRow->imponibile)) {
- $rowData['imponibile'] = formatPrice($recordRow->imponibile);
- }
- // Add aliquota_iva field if available in the database
- if (isset($recordRow->aliquota_iva)) {
- $rowData['aliquota_iva'] = $recordRow->aliquota_iva . '%';
- }
- $this->rows[] = $rowData;
- }
- }
- } catch (\Exception $ex) {
- $this->emit('flash-error', 'Errore (' . $ex->getMessage() . ')');
- }
- }
- public function update()
- {
- $this->emit('refresh');
- $this->validate();
- Log::info("Rows: pipo" );
- try {
- \App\Models\Record::whereId($this->dataId)->update([
- 'member_id' => $this->member_id,
- 'supplier_id' => $this->supplier_id,
- 'payment_method_id' => $this->payment_method_id,
- 'date' => $this->date,
- 'data_pagamento' => $this->data_pagamento,
- 'type' => $this->type,
- 'commercial' => $this->commercial,
- ]);
- $tot = 0;
- $existingRows = \App\Models\RecordRow::where('record_id', $this->dataId)
- ->select('id', 'quantita', 'numero_linea')
- ->get()
- ->keyBy('id')
- ->toArray();
- \App\Models\RecordRow::where('record_id', $this->dataId)->delete();
- foreach ($this->rows as $row) {
- foreach ($row["when"] as $x => $y) {
- $row["when"][$x]['period'] = $row["when"][$x]['month'] . "-" . $row["when"][$x]['year'];
- }
- $imponibile = null;
- if (isset($row["imponibile"]) && $row["imponibile"] !== null && $row["imponibile"] !== '') {
- $imponibile = $this->currencyToDouble($row["imponibile"]);
- Log::info("Imponibile: " . $imponibile);
- }
- $aliquota_iva = null;
- if (isset($row["aliquota_iva"]) && $row["aliquota_iva"] !== null && $row["aliquota_iva"] !== '') {
- $aliquota_iva = floatval(str_replace('%', '', $row["aliquota_iva"]));
- Log::info("Aliquota IVA: " . $aliquota_iva);
- }
- $amount = $this->currencyToDouble($row["amount"]);
- $imposta = null;
- if ($imponibile !== null) {
- $imposta = $amount - $imponibile;
- Log::info("Imposta calculated: " . $imposta);
- }
- $recordRowData = [
- 'record_id' => $this->dataId,
- 'causal_id' => $row["causal_id"],
- 'note' => $row["note"],
- 'amount' => $this->currencyToDouble($row["amount"]),
- 'commercial' => $row["commercial"],
- 'when' => json_encode($row["when"]),
- 'imponibile' => $imponibile,
- 'aliquota_iva' => $aliquota_iva,
- 'imposta' => $imposta,
- 'divisa' => 'EUR',
- ];
- if (isset($row["id"]) && isset($existingRows[$row["id"]])) {
- $existingRow = $existingRows[$row["id"]];
- $recordRowData['quantita'] = $existingRow['quantita'];
- $recordRowData['numero_linea'] = $existingRow['numero_linea'];
- }
- Log::info("RecordRowData: " . json_encode($recordRowData));
- \App\Models\RecordRow::create($recordRowData);
- $tot += $this->currencyToDouble($row["amount"]);
- }
- $rec = \App\Models\Record::findOrFail($this->dataId);
- $rec->amount = $tot;
- $rec->save();
- session()->flash('success', 'Movimento aggiornato');
- $this->resetFields();
- $this->update = false;
- $this->emit('setEdit', false);
- } catch (\Exception $ex) {
- $this->emit('flash-error', 'Errore (' . $ex->getMessage() . ')');
- }
- }
- public function cancel()
- {
- $this->add = false;
- $this->update = false;
- $this->emit('setEdit', false);
- $this->resetFields();
- }
- public function delete($id)
- {
- try {
- \App\Models\Record::find($id)->delete();
- session()->flash('success', "Movimento eliminato");
- } catch (\Exception $e) {
- $this->emit('flash-error','Errore (' . $e->getMessage() . ')');
- }
- }
- public function multipleDelete()
- {
- try {
- foreach ($this->multipleIds as $id) {
- \App\Models\Record::find($id)->delete();
- }
- } catch (\Exception $e) {
- $this->emit('flash-error','Errore (' . $e->getMessage() . ')');
- }
- $this->multipleAction = '';
- }
- /*
- public function createReceipt()
- {
- $receipt = \App\Models\Receipt::where('record_id', $this->dataId)->first();
- if ($receipt != null)
- {
- $receipt->update([
- 'member_id' => $this->member_id,
- 'supplier_id' => $this->supplier_id,
- 'causal_id' => $this->causal_id,
- 'payment_method_id' => $this->payment_method_id,
- 'date' => date("Y-m-d", strtotime($this->date)),
- 'month' => $this->month,
- 'year' => $this->year,
- 'type' => $this->type,
- 'amount' => $this->currencyToDouble($this->amount),
- 'commercial' => $this->commercial,
- 'status' => 1,
- ]);
- }
- else
- {
- $number = 1;
- $exist = \App\Models\Receipt::where('year', $this->year)->orderBy('number', 'DESC')->first();
- if ($exist != null)
- $number = $exist->number + 1;
- $receipt = \App\Models\Receipt::create([
- 'record_id' => $this->dataId,
- 'member_id' => $this->member_id,
- 'supplier_id' => $this->supplier_id,
- 'causal_id' => $this->causal_id,
- 'payment_method_id' => $this->payment_method_id,
- 'number' => $number,
- 'date' => $this->date,
- 'month' => $this->month,
- 'year' => $this->year,
- 'type' => $this->type,
- 'amount' => $this->currencyToDouble($this->amount),
- 'commercial' => $this->commercial,
- 'status' => 1,
- ]);
- }
- }
- public function removeReceipt()
- {
- $receipt = \App\Models\Receipt::findOrFail($this->currentReceip->id);
- $receipt->status = 99;
- $receipt->save();
- $this->currentReceip = $receipt;
- }
- */
- function currencyToDouble($val)
- {
- $x = str_replace("€", "", $val);
- $x = str_replace(".", "", $x);
- $x = str_replace(",", ".", $x);
- return floatval(trim($x));
- }
- public function addRow()
- {
- $this->rows[] = array(
- 'causal_id' => null,
- 'when' => array(array('month' => date("n"), 'year' => date("Y"), 'period' => '')),
- 'amount' => null,
- 'imponibile' => null,
- 'aliquota_iva' => null,
- 'note' => '',
- 'commercial' => 0
- );
- $this->emit('load-select');
- }
- public function delRow($idx)
- {
- unset($this->rows[$idx]);
- // $this->emit('load-select');
- }
- public function addPeriod($idx)
- {
- $x = sizeof($this->rows[$idx]['when']) - 1;
- $newDate = \Carbon\Carbon::create($this->rows[$idx]['when'][$x]["year"] . "-" . $this->rows[$idx]['when'][$x]["month"] . '-01')->addMonth();
- $this->rows[$idx]['when'][] = array('month' => $newDate->format("n"), 'year' => $newDate->format("Y"), 'period' => '');
- //$this->rows[$idx]['when'][] = array('month' => date("n"), 'year' => date("Y"), 'period' => '');
- }
- public function delPeriod($idx, $xxx)
- {
- array_splice($this->rows[$idx]['when'], $xxx, 1);
- // $this->emit('load-select');
- }
- public function getTotal()
- {
- $total = 0.00;
- foreach ($this->rows as $r) {
- $total += $this->currencyToDouble($r["amount"] != null ? $r["amount"] : 0);
- }
- return formatPrice($total);
- // $this->emit('load-select');
- }
- public function setCausal($id, $idx)
- {
- $this->rows[$idx]["causal_id"] = $id;
- }
- public function multiPeriod()
- {
- $this->multiP = true;
- }
- public function multiPeriodCreate($idx)
- {
- $period = \Carbon\CarbonPeriod::create($this->multiYearFrom . '-' . $this->multiMonthFrom . '-01', '1 month', $this->multiYearTo . '-' . $this->multiMonthTo . '-01');
- $this->rows[$idx]['when'] = [];
- foreach ($period as $dt) {
- if (!in_array(array('month' => $dt->format("n"), 'year' => $dt->format("Y"), 'period' => ''), $this->rows[$idx]['when']))
- $this->rows[$idx]['when'][] = array('month' => $dt->format("n"), 'year' => $dt->format("Y"), 'period' => '');
- }
- $this->multiP = false;
- }
- public function multiPeriodCancel()
- {
- $this->multiP = false;
- }
- public function importReceipts()
- {
- $this->validate([
- 'receiptFiles.*' => 'required|mimes:xml|max:2048',
- 'selectedCausal' => 'required|exists:causals,id',
- ]);
- try {
- $importCount = 0;
- $errorsCount = 0;
- $totalFiles = count($this->receiptFiles);
- // disabilita select
- $this->emit('import-started');
- foreach ($this->receiptFiles as $index => $receiptFile) {
- try {
- // Carica e analizza il file XML
- $xmlString = file_get_contents($receiptFile->getRealPath());
- $xml = simplexml_load_string($xmlString);
- if (!$xml) {
- throw new \Exception("Impossibile analizzare il file XML");
- }
- // Estrai i dati dalla fattura elettronica
- $fatturaData = $this->extractFatturaData($xml);
- // Trova o crea il fornitorez
- $supplier = $this->findOrCreateSupplier($fatturaData);
- // Trova il metodo di pagamento
- $paymentMethodId = $this->findPaymentMethod($fatturaData['modalitaPagamento']);
- // Crea il record principale
- $record = $this->createRecord($supplier->id, $paymentMethodId, $fatturaData);
- // Crea il record row
- $this->createRecordRow($record->id, $fatturaData);
- $importCount++;
- Log::info("Fattura importata con successo: {$fatturaData['numeroFattura']}, Fornitore: {$fatturaData['denominazione']} OR {$fatturaData['cognome']}, {$fatturaData['nome']}");
- } catch (\Exception $e) {
- Log::error('Errore durante l\'importazione della fattura: ' . $e->getMessage());
- $errorsCount++;
- }
- $progress = ($index + 1) / $totalFiles * 100;
- $this->emit('update-progress', $progress);
- }
- $this->showResultMessages($importCount, $errorsCount);
- } catch (\Exception $e) {
- Log::error('Errore durante l\'importazione dei file XML: ' . $e->getMessage());
- $this->emit('flash-error', 'Errore durante l\'importazione: ' . $e->getMessage());
- } finally {
- $this->closeImportModal();
- $this->emit('load-data-table');
- }
- }
- /**
- * Estrae i dati dalla fattura elettronica XML
- */
- private function extractFatturaData($xml)
- {
- $data = [];
- try {
- // Stampa la struttura XML per debug
- Log::info("Nomi dei children dell'elemento radice: " . implode(", ", array_map(function ($node) {
- return $node->getName();
- }, iterator_to_array($xml->children()))));
- $headerNode = $xml->FatturaElettronicaHeader;
- $bodyNode = $xml->FatturaElettronicaBody;
- if (!$headerNode || !$bodyNode) {
- throw new \Exception("Struttura XML non standard, FatturaElettronicaHeader o FatturaElettronicaBody non trovati");
- }
- // Estrai dati del fornitore (cedente/prestatore)
- $cedenteNode = $headerNode->CedentePrestatore;
- $datiAnagrafici = $cedenteNode->DatiAnagrafici;
- $idFiscaleIVA = $datiAnagrafici->IdFiscaleIVA;
- $data['idPaese'] = (string)$idFiscaleIVA->IdPaese;
- $data['idCodice'] = (string)$idFiscaleIVA->IdCodice;
- $data['partitaIva'] = $data['idPaese'] . $data['idCodice'];
- $data['codiceFiscale'] = (string)$datiAnagrafici->CodiceFiscale;
- $data['denominazione'] = (string)$datiAnagrafici->Anagrafica->Denominazione;
- $data['cognome'] = (string)$datiAnagrafici->Anagrafica->Cognome;
- $data['nome'] = (string)$datiAnagrafici->Anagrafica->Nome;
- // Estrai dati della sede
- $sede = $cedenteNode->Sede;
- $data['indirizzo'] = (string)$sede->Indirizzo;
- $data['cap'] = (string)$sede->CAP;
- $data['comune'] = (string)$sede->Comune;
- $data['provincia'] = (string)$sede->Provincia;
- $data['nazione'] = (string)$sede->Nazione ?: 'IT';
- // Email, se presente
- $data['email'] = '';
- if (isset($cedenteNode->Contatti) && isset($cedenteNode->Contatti->Email)) {
- $data['email'] = (string)$cedenteNode->Contatti->Email;
- }
- // Dati generali della fattura
- $datiGeneraliDocumento = $bodyNode->DatiGenerali->DatiGeneraliDocumento;
- $data['tipoDocumento'] = (string)$datiGeneraliDocumento->TipoDocumento;
- $data['divisa'] = (string)$datiGeneraliDocumento->Divisa ?: 'EUR';
- $data['dataDocumento'] = (string)$datiGeneraliDocumento->Data;
- $data['numeroFattura'] = (string)$datiGeneraliDocumento->Numero;
- $data['importoTotale'] = (float)$datiGeneraliDocumento->ImportoTotaleDocumento;
- // Dati di pagamento
- $data['condizioniPagamento'] = '';
- $data['modalitaPagamento'] = '';
- $data['dataScadenza'] = '';
- $data['iban'] = '';
- $data['bic'] = '';
- $data['istitutoFinanziario'] = '';
- if (isset($bodyNode->DatiPagamento)) {
- $datiPagamento = $bodyNode->DatiPagamento;
- $data['condizioniPagamento'] = (string)$datiPagamento->CondizioniPagamento;
- if (isset($datiPagamento->DettaglioPagamento)) {
- $dettaglioPagamento = $datiPagamento->DettaglioPagamento;
- $data['modalitaPagamento'] = (string)$dettaglioPagamento->ModalitaPagamento;
- $data['dataScadenza'] = (string)$dettaglioPagamento->DataScadenzaPagamento;
- $data['iban'] = (string)$dettaglioPagamento->IBAN;
- $data['bic'] = (string)$dettaglioPagamento->BIC;
- $data['istitutoFinanziario'] = (string)$dettaglioPagamento->IstitutoFinanziario;
- }
- }
- // Estrai le linee di dettaglio
- $data['linee'] = [];
- if (isset($bodyNode->DatiBeniServizi) && isset($bodyNode->DatiBeniServizi->DettaglioLinee)) {
- foreach ($bodyNode->DatiBeniServizi->DettaglioLinee as $index => $linea) {
- $lineaData = [
- 'numeroLinea' => (int)($linea->NumeroLinea ?? ($index + 1)),
- 'descrizione' => (string)($linea->Descrizione ?? ''),
- 'quantita' => (float)($linea->Quantita ?? 1),
- 'prezzoUnitario' => (float)($linea->PrezzoUnitario ?? 0),
- 'prezzoTotale' => (float)($linea->PrezzoTotale ?? 0),
- 'aliquotaIva' => (float)($linea->AliquotaIVA ?? 0),
- ];
- // Calcola il prezzo totale se non presente
- if ($lineaData['prezzoTotale'] == 0) {
- $lineaData['prezzoTotale'] = $lineaData['quantita'] * $lineaData['prezzoUnitario'];
- }
- $data['linee'][] = $lineaData;
- }
- }
- $data['riepilogo'] = null;
- if (isset($bodyNode->DatiBeniServizi) && isset($bodyNode->DatiBeniServizi->DatiRiepilogo)) {
- $riepilogoNode = $bodyNode->DatiBeniServizi->DatiRiepilogo;
- if ($riepilogoNode) {
- $data['riepilogo'] = [
- 'aliquotaIva' => (float)($riepilogoNode->AliquotaIVA ?? 0),
- 'imponibile' => (float)($riepilogoNode->ImponibileImporto ?? 0),
- 'imposta' => (float)($riepilogoNode->Imposta ?? 0),
- ];
- }
- }
- Log::info("Dati estratti dalla fattura: P.IVA={$data['partitaIva']}, Denominazione={$data['denominazione']},Nome={$data['nome']},Cognome={$data['cognome']} , Numero={$data['numeroFattura']}, Importo={$data['importoTotale']}");
- return $data;
- } catch (\Exception $e) {
- Log::error("Errore nell'estrazione dei dati XML: " . $e->getMessage());
- throw $e;
- }
- }
- /**
- * Trova o crea un fornitore basato sui dati della fattura
- */
- private function findOrCreateSupplier($fatturaData)
- {
- $supplier = \App\Models\Supplier::where('vat', $fatturaData['partitaIva'])->first();
- if (!$supplier) {
- Log::info("Creazione nuovo fornitore con P.IVA: {$fatturaData['partitaIva']} ({$fatturaData['denominazione']}) OR ({$fatturaData['nome']}), ({$fatturaData['cognome']})");
- $countryId = $this->getCountryId($fatturaData['nazione']);
- $provinceId = $this->getProvinceId($fatturaData['provincia']);
- $cityId = $this->getCityId($fatturaData['comune']);
- $supplier = new \App\Models\Supplier();
- $supplier->name = $fatturaData['denominazione'] ?: $fatturaData['cognome'] . ' ' . $fatturaData['nome'];
- Log::info("Nome fornitore: " . $supplier->name);
- $supplier->vat = $fatturaData['partitaIva'];
- $supplier->fiscal_code = $fatturaData['codiceFiscale'];
- $supplier->address = $fatturaData['indirizzo'];
- $supplier->city_id = $cityId;
- $supplier->zip_code = $fatturaData['cap'];
- $supplier->province_id = $provinceId;
- $supplier->nation_id = $countryId;
- $supplier->email = $fatturaData['email'];
- $supplier->save();
- Log::info("Fornitore creato con ID: " . $supplier->id);
- }
- return $supplier;
- }
- /**
- * Trova l'ID della nazione dal codice
- */
- private function getCountryId($nationCode)
- {
- $country = DB::table('nations')->where('code', $nationCode)->first();
- return $country ? $country->id : null;
- }
- /**
- * Trova l'ID della provincia dal codice
- */
- private function getProvinceId($provinceCode)
- {
- $province = DB::table('provinces')->where('code', $provinceCode)->first();
- return $province ? $province->id : null;
- }
- /**
- * Trova l'ID della città dal nome
- */
- private function getCityId($cityName)
- {
- if (empty($cityName)) return null;
- $city = DB::table('cities')->where('name', $cityName)->first();
- return $city ? $city->id : null;
- }
- /**
- * Trova l'ID del metodo di pagamento dal codice
- */
- private function findPaymentMethod($paymentCode)
- {
- if (!empty($paymentCode)) {
- $paymentMethod = DB::table('payment_methods')->where('code', $paymentCode)->first();
- if ($paymentMethod) {
- Log::info("Metodo di pagamento trovato: $paymentCode (ID: {$paymentMethod->id})");
- return $paymentMethod->id;
- }
- }
- $defaultPaymentMethod = DB::table('payment_methods')->where('default', 1)->first()
- ?? DB::table('payment_methods')->first();
- if ($defaultPaymentMethod) {
- Log::info("Usando metodo di pagamento predefinito ID: {$defaultPaymentMethod->id}");
- return $defaultPaymentMethod->id;
- }
- throw new \Exception("Nessun metodo di pagamento disponibile nel sistema");
- }
- /**
- * Crea un record nella tabella records
- */
- private function createRecord($supplierId, $paymentMethodId, $fatturaData)
- {
- $existingRecord = \App\Models\Record::where('supplier_id', $supplierId)
- ->where('numero_fattura', $fatturaData['numeroFattura'])
- ->first();
- if ($existingRecord) {
- Log::info("Trovato record esistente con ID: " . $existingRecord->id . " per fornitore ID: " . $supplierId . " e numero fattura: " . $fatturaData['numeroFattura']);
- $existingRecord->payment_method_id = $paymentMethodId;
- $existingRecord->date = $fatturaData['dataDocumento'];
- $existingRecord->data_pagamento = $fatturaData['dataDocumento'];
- $existingRecord->type = 'OUT';
- $existingRecord->commercial = 1;
- $existingRecord->corrispettivo_fiscale = 0;
- $existingRecord->deleted = 0;
- $existingRecord->financial_movement = 1;
- $existingRecord->amount = $fatturaData['importoTotale'];
- $existingRecord->tipo_documento = $this->mapTipoDocumento($fatturaData['tipoDocumento']);
- $existingRecord->is_ricevuta = true;
- if (isset($fatturaData['condizioniPagamento']) && !empty($fatturaData['condizioniPagamento'])) {
- $existingRecord->condizioni_pagamento = $this->mapCondizioniPagamento($fatturaData['condizioniPagamento']);
- }
- if (isset($fatturaData['iban']) && !empty($fatturaData['iban'])) {
- $existingRecord->IBAN = $fatturaData['iban'];
- }
- if (isset($fatturaData['bic']) && !empty($fatturaData['bic'])) {
- $existingRecord->BIC = $fatturaData['bic'];
- }
- if (isset($fatturaData['dataScadenza']) && !empty($fatturaData['dataScadenza'])) {
- $existingRecord->data_scadenza = $fatturaData['dataScadenza'];
- }
- $existingRecord->save();
- Log::info("Record esistente aggiornato con ID: " . $existingRecord->id);
- return $existingRecord;
- }
- $record = new \App\Models\Record();
- $record->supplier_id = $supplierId;
- $record->payment_method_id = $paymentMethodId;
- $record->date = $fatturaData['dataDocumento'];
- $record->data_pagamento = $fatturaData['dataDocumento'];
- $record->numero_fattura = $fatturaData['numeroFattura'];
- $record->type = 'OUT';
- $record->commercial = 1;
- $record->corrispettivo_fiscale = 0;
- $record->deleted = 0;
- $record->financial_movement = 1;
- $record->amount = $fatturaData['importoTotale'];
- $record->tipo_documento = $this->mapTipoDocumento($fatturaData['tipoDocumento']);
- $record->is_ricevuta = true;
- if (isset($fatturaData['condizioniPagamento']) && !empty($fatturaData['condizioniPagamento'])) {
- $record->condizioni_pagamento = $this->mapCondizioniPagamento($fatturaData['condizioniPagamento']);
- }
- if (isset($fatturaData['iban']) && !empty($fatturaData['iban'])) {
- $record->IBAN = $fatturaData['iban'];
- }
- if (isset($fatturaData['bic']) && !empty($fatturaData['bic'])) {
- $record->BIC = $fatturaData['bic'];
- }
- if (isset($fatturaData['dataScadenza']) && !empty($fatturaData['dataScadenza'])) {
- $record->data_scadenza = $fatturaData['dataScadenza'];
- }
- $record->save();
- Log::info("Record creato con ID: " . $record->id);
- return $record;
- }
- /**
- * Crea un record row per il record specificato
- */
- private function createRecordRow($recordId, $fatturaData)
- {
- Log::info("Inizio creazione RecordRow per Record ID: " . $recordId);
- $existingRows = \App\Models\RecordRow::where('record_id', $recordId)->get();
- // Delete existing rows if they exist
- if ($existingRows->count() > 0) {
- Log::info("Eliminazione di " . $existingRows->count() . " righe record esistenti per Record ID: " . $recordId);
- foreach ($existingRows as $row) {
- $row->delete();
- }
- }
- if (!empty($fatturaData['linee'])) {
- foreach ($fatturaData['linee'] as $linea) {
- $this->createSingleRecordRow($recordId, $fatturaData, $linea);
- }
- } else if ($fatturaData['riepilogo']) {
- $this->createRecordRowFromRiepilogo($recordId, $fatturaData);
- Log::info("Creata una riga di record dai dati di riepilogo");
- } else {
- $this->createDefaultRecordRow($recordId, $fatturaData);
- Log::info("Creata una riga di record predefinita dall'importo totale");
- }
- }
- private function createSingleRecordRow($recordId, $fatturaData, $linea)
- {
- Log::info("Inizio creazione riga record singola per Record ID: " . $recordId . ", Linea: " . json_encode($linea));
- $dataObj = new \DateTime($fatturaData['dataDocumento']);
- $month = $dataObj->format('n');
- $year = $dataObj->format('Y');
- $period = "$month-$year";
- $whenData = [[
- 'month' => $month,
- 'year' => $year,
- 'period' => $period
- ]];
- $recordRow = new \App\Models\RecordRow();
- $recordRow->record_id = $recordId;
- $recordRow->causal_id = $this->selectedCausal;
- $recordRow->amount = $linea['prezzoTotale'] + $linea['prezzoTotale'] * ($linea['aliquotaIva'] / 100);
- $recordRow->note = $linea['descrizione'];
- $recordRow->commercial = 1;
- $recordRow->when = json_encode($whenData);
- $recordRow->aliquota_iva = $linea['aliquotaIva'];
- $recordRow->imponibile = $linea['prezzoTotale'];
- $recordRow->imposta = $linea['prezzoTotale'] * ($linea['aliquotaIva'] / 100);
- $recordRow->divisa = $fatturaData['divisa'];
- $recordRow->numero_linea = $linea['numeroLinea'];
- $recordRow->prezzo_unitario = $linea['prezzoUnitario'];
- $recordRow->quantita = $linea['quantita'];
- Log::info("Dati riga record prima del salvataggio: " . json_encode([
- 'record_id' => $recordRow->record_id,
- 'causal_id' => $recordRow->causal_id,
- 'amount' => $recordRow->amount,
- 'note' => $recordRow->note,
- 'aliquota_iva' => $recordRow->aliquota_iva,
- 'imponibile' => $recordRow->imponibile,
- 'imposta' => $recordRow->imposta,
- 'divisa' => $recordRow->divisa,
- 'numero_linea' => $recordRow->numero_linea,
- 'prezzo_unitario' => $recordRow->prezzo_unitario,
- 'quantita' => $recordRow->quantita,
- ]));
- $recordRow->save();
- Log::info("Riga record creata per linea {$linea['numeroLinea']}: {$linea['descrizione']} (€{$linea['prezzoTotale']})");
- }
- private function createRecordRowFromRiepilogo($recordId, $fatturaData)
- {
- Log::info("Inizio creazione riga record da riepilogo per Record ID: " . $recordId . ", Riepilogo: " . json_encode($fatturaData['riepilogo']));
- $riepilogo = $fatturaData['riepilogo'];
- $dataObj = new \DateTime($fatturaData['dataDocumento']);
- $month = $dataObj->format('n');
- $year = $dataObj->format('Y');
- $period = "$month-$year";
- $whenData = [[
- 'month' => $month,
- 'year' => $year,
- 'period' => $period
- ]];
- $total_amount = $riepilogo['imponibile'] + $riepilogo['imposta'];
- $recordRow = new \App\Models\RecordRow();
- $recordRow->record_id = $recordId;
- $recordRow->causal_id = $this->selectedCausal;
- $recordRow->amount = $total_amount;
- $recordRow->commercial = 1;
- $recordRow->when = json_encode($whenData);
- $recordRow->aliquota_iva = $riepilogo['aliquotaIva'];
- $recordRow->imponibile = $riepilogo['imponibile'];
- $recordRow->imposta = $riepilogo['imposta'];
- $recordRow->divisa = $fatturaData['divisa'];
- $recordRow->numero_linea = 1;
- $recordRow->quantita = 1;
- Log::info("Dati riga record da riepilogo prima del salvataggio: " . json_encode([
- 'record_id' => $recordRow->record_id,
- 'causal_id' => $recordRow->causal_id,
- 'amount' => $recordRow->amount,
- 'aliquota_iva' => $recordRow->aliquota_iva,
- 'imponibile' => $recordRow->imponibile,
- 'imposta' => $recordRow->imposta,
- 'divisa' => $recordRow->divisa,
- ]));
- $recordRow->save();
- Log::info("Riga record creata da riepilogo: Imponibile={$riepilogo['imponibile']}, IVA={$riepilogo['aliquotaIva']}%");
- }
- private function createDefaultRecordRow($recordId, $fatturaData)
- {
- Log::info("Inizio creazione riga record predefinita per Record ID: " . $recordId . ", Importo Totale: " . $fatturaData['importoTotale']);
- $dataObj = new \DateTime($fatturaData['dataDocumento']);
- $month = $dataObj->format('n');
- $year = $dataObj->format('Y');
- $period = "$month-$year";
- $whenData = [[
- 'month' => $month,
- 'year' => $year,
- 'period' => $period
- ]];
- $recordRow = new \App\Models\RecordRow();
- $recordRow->record_id = $recordId;
- $recordRow->causal_id = $this->selectedCausal;
- $recordRow->amount = $fatturaData['importoTotale'];
- $recordRow->commercial = 1;
- $recordRow->when = json_encode($whenData);
- $recordRow->divisa = $fatturaData['divisa'];
- $recordRow->numero_linea = 1;
- $recordRow->quantita = 1;
- Log::info("Dati riga record predefinita prima del salvataggio: " . json_encode([
- 'record_id' => $recordRow->record_id,
- 'causal_id' => $recordRow->causal_id,
- 'amount' => $recordRow->amount,
- 'divisa' => $recordRow->divisa,
- ]));
- $recordRow->save();
- Log::info("Riga record predefinita creata con importo totale: {$fatturaData['importoTotale']}");
- }
- private function mapTipoDocumento($codice)
- {
- $tipiDocumento = [
- 'TD01' => 'Fattura',
- 'TD02' => 'Acconto/Anticipo su fattura',
- 'TD03' => 'Acconto/Anticipo su parcella',
- 'TD04' => 'Nota di credito',
- 'TD05' => 'Nota di debito',
- 'TD06' => 'Parcella',
- 'TD16' => 'Integrazione fattura reverse charge interno',
- 'TD17' => 'Integrazione/autofattura per acquisto servizi dall\'estero',
- 'TD18' => 'Integrazione per acquisto di beni intracomunitari',
- 'TD19' => 'Integrazione/autofattura per acquisto di beni ex art.17 c.2 DPR 633/72',
- 'TD20' => 'Autofattura per regolarizzazione e integrazione delle fatture',
- 'TD21' => 'Autofattura per splafonamento',
- 'TD22' => 'Estrazione beni da Deposito IVA',
- 'TD23' => 'Estrazione beni da Deposito IVA con versamento dell\'IVA',
- 'TD24' => 'Fattura differita di cui all\'art.21, comma 4, lett. a)',
- 'TD25' => 'Fattura differita di cui all\'art.21, comma 4, terzo periodo lett. b)',
- 'TD26' => 'Cessione di beni ammortizzabili e per passaggi interni',
- 'TD27' => 'Fattura per autoconsumo o per cessioni gratuite senza rivalsa'
- ];
- return $tipiDocumento[$codice] ?? $codice;
- }
- private function mapCondizioniPagamento($codice)
- {
- $condizioniPagamento = [
- 'TP01' => 'Pagamento a rate',
- 'TP02' => 'Pagamento completo',
- 'TP03' => 'Anticipo'
- ];
- return $condizioniPagamento[$codice] ?? $codice;
- }
- private function showResultMessages($importCount, $errorsCount)
- {
- if ($importCount > 0) {
- $message = "Importate $importCount fatture con successo.";
- if ($errorsCount > 0) {
- $message .= " $errorsCount fatture non sono state importate.";
- }
- session()->flash('message', $message);
- } else {
- $this->emit('flash-error','Nessuna fattura importata. Controlla i file XML e riprova.');
- }
- }
- }
|