Fix creazione anagrafica in importazione articoli
This commit is contained in:
parent
3dcb5b0c3a
commit
8fe7b769c8
|
@ -143,6 +143,14 @@ class CSV extends CSVImporter
|
|||
'Fornitore predefinito',
|
||||
],
|
||||
],
|
||||
[
|
||||
'field' => 'p_iva',
|
||||
'label' => 'Partita IVA',
|
||||
'names' => [
|
||||
'partita iva',
|
||||
'Partita IVA',
|
||||
],
|
||||
],
|
||||
[
|
||||
'field' => 'codice_iva_vendita',
|
||||
'label' => 'Codice IVA vendita',
|
||||
|
@ -267,7 +275,6 @@ class CSV extends CSVImporter
|
|||
$dettagli['anagrafica_listino'] = $record['id_fornitore'];
|
||||
}
|
||||
|
||||
|
||||
// Gestione categoria e sottocategoria
|
||||
$categoria = null;
|
||||
$sottocategoria = null;
|
||||
|
@ -327,9 +334,10 @@ class CSV extends CSVImporter
|
|||
$nuova_qta = (float) ($record['qta']);
|
||||
$nome_sede = $record['nome_sede'];
|
||||
|
||||
if (!empty($dettagli['id_fornitore']) || !empty($dettagli['anagrafica_listino'])) {
|
||||
if (!empty($dettagli['id_fornitore']) || !empty($dettagli['anagrafica_listino'] || !empty($dettagli['partita_iva']))) {
|
||||
// Aggiornamento dettaglio prezzi
|
||||
$dettagli['anagrafica_listino'] = $dettagli['anagrafica_listino'] ?: $record['anagrafica_listino'];
|
||||
$dettagli['partita_iva'] = $record['p_iva'];
|
||||
$dettagli['qta_minima'] = $record['qta_minima'];
|
||||
$dettagli['qta_massima'] = $record['qta_massima'];
|
||||
$dettagli['prezzo_listino'] = $record['prezzo_listino'];
|
||||
|
@ -342,6 +350,7 @@ class CSV extends CSVImporter
|
|||
}
|
||||
|
||||
unset($record['anagrafica_listino']);
|
||||
unset($record['partita_iva']);
|
||||
unset($record['qta_minima']);
|
||||
unset($record['qta_massima']);
|
||||
unset($record['prezzo_listino']);
|
||||
|
@ -352,7 +361,6 @@ class CSV extends CSVImporter
|
|||
unset($record['descrizione_fornitore']);
|
||||
unset($record['id_fornitore']);
|
||||
|
||||
|
||||
//Gestione immagine
|
||||
if (!empty($url) && !empty($record['import_immagine'])) {
|
||||
$file_content = file_get_contents($url);
|
||||
|
@ -452,10 +460,14 @@ class CSV extends CSVImporter
|
|||
protected function aggiornaDettaglioPrezzi(Articolo $articolo, $dettagli)
|
||||
{
|
||||
// Listini
|
||||
$anagrafica = Anagrafica::where('ragione_sociale', $dettagli['anagrafica_listino'])->first();
|
||||
if ($dettagli['partita_iva']){
|
||||
$anagrafica = Anagrafica::where('piva', $dettagli['partita_iva'])->first();
|
||||
}
|
||||
|
||||
if (empty($anagrafica)) {
|
||||
$anagrafica = Anagrafica::build($dettagli['anagrafica_listino']);
|
||||
$anagrafica->piva = $dettagli['partita_iva'];
|
||||
$anagrafica->save();
|
||||
}
|
||||
|
||||
if ($dettagli['dir']) {
|
||||
|
@ -501,6 +513,7 @@ class CSV extends CSVImporter
|
|||
}
|
||||
|
||||
// Imposto fornitore e prezzo predefinito
|
||||
$dettagli['id_fornitore'] = $anagrafica->id;
|
||||
$listino_id_fornitore = DettaglioPrezzo::dettaglioPredefinito($articolo->id, $dettagli['id_fornitore'], 'uscita')->first();
|
||||
if (!empty($listino_id_fornitore)) {
|
||||
$prezzo_acquisto = $listino_id_fornitore->prezzo_unitario - ($listino_id_fornitore->prezzo_unitario * $listino_id_fornitore->sconto_percentuale) / 100;
|
||||
|
|
Loading…
Reference in New Issue