Compare commits
No commits in common. "632b801d295afb811ae44514ddfc2fdb1eabc4e1" and "a85830d7ff1e9bddff269cbc6754c50166011ef9" have entirely different histories.
632b801d29
...
a85830d7ff
|
@ -296,7 +296,7 @@ class CSV extends CSVImporter
|
|||
$database->insert('an_settori_lang', [
|
||||
'id_lang' => \Models\Locale::getDefault()->id,
|
||||
'id_record' => $id_settore,
|
||||
'title' => $settore,
|
||||
'name' => $settore,
|
||||
])['id'];
|
||||
}
|
||||
unset($record['id_settore']);
|
||||
|
|
|
@ -277,7 +277,7 @@ class CSV extends CSVImporter
|
|||
$sottocategoria = null;
|
||||
if (!empty($record['categoria'])) {
|
||||
// Categoria
|
||||
$categoria = Categoria::where('id', '=', (new Categoria())->getByField('title', strtolower((string) $record['categoria'])))->first();
|
||||
$categoria = Categoria::where('id', '=', (new Categoria())->getByField('title', strtolower((string) $record['categoria'])))->orWhere('name', strtolower((string) $record['categoria']))->first();
|
||||
|
||||
if (empty($categoria)) {
|
||||
$categoria = Categoria::build();
|
||||
|
@ -287,7 +287,7 @@ class CSV extends CSVImporter
|
|||
|
||||
// Sotto-categoria
|
||||
if (!empty($record['sottocategoria'])) {
|
||||
$sottocategoria = Categoria::where('id', '=', (new Categoria())->getByField('title', strtolower((string) $record['sottocategoria'])))->first();
|
||||
$sottocategoria = Categoria::where('id', '=', (new Categoria())->getByField('title', strtolower((string) $record['sottocategoria'])))->orWhere('name', strtolower((string) $record['sottocategoria']))->first();
|
||||
|
||||
if (empty($sottocategoria)) {
|
||||
$sottocategoria = Categoria::build();
|
||||
|
|
|
@ -115,7 +115,7 @@ class CSV extends CSVImporter
|
|||
$sottocategoria = null;
|
||||
if (!empty($record['categoria'])) {
|
||||
// Categoria
|
||||
$categoria = Categoria::where('id', '=', (new Categoria())->getByField('title', strtolower((string) $record['categoria'])))->first();
|
||||
$categoria = Categoria::where('id', '=', (new Categoria())->getByField('title', strtolower((string) $record['categoria'])))->orWhere('name', strtolower((string) $record['categoria']))->get()->id;
|
||||
|
||||
if (empty($categoria)) {
|
||||
$categoria = Categoria::build();
|
||||
|
@ -125,7 +125,7 @@ class CSV extends CSVImporter
|
|||
|
||||
// Sotto-categoria
|
||||
if (!empty($record['sottocategoria'])) {
|
||||
$sottocategoria = Categoria::where('id', '=', (new Categoria())->getByField('title', strtolower((string) $record['sottocategoria'])))->first();
|
||||
$sottocategoria = Categoria::where('id', '=', (new Categoria())->getByField('title', strtolower((string) $record['sottocategoria'])))->orWhere('name', strtolower((string) $record['sottocategoria']))->get()->id;
|
||||
if (empty($sottocategoria)) {
|
||||
$sottocategoria = Categoria::build();
|
||||
$sottocategoria->setTranslation('title', $record['sottocategoria']);
|
||||
|
@ -168,7 +168,7 @@ class CSV extends CSVImporter
|
|||
|
||||
$impianto->idanagrafica = $anagrafica->idanagrafica;
|
||||
$impianto->id_marca = $id_marca;
|
||||
$impianto->id_modello = $record['modello'];
|
||||
$impianto->modello = $record['modello'];
|
||||
$impianto->save();
|
||||
|
||||
if (!empty($record['sede'])) {
|
||||
|
|
|
@ -126,7 +126,7 @@ class CSV extends CSVImporter
|
|||
if (empty($record['stato'])) {
|
||||
$stato = Stato::where('name', 'Completato')->first();
|
||||
} else {
|
||||
$stato = Stato::where('name', $record['stato'])->first();
|
||||
$stato = Stato::where('name', $record['stato'])->first()->id;
|
||||
}
|
||||
unset($record['stato']);
|
||||
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
include_once __DIR__.'/core.php';
|
||||
|
||||
use Modules\PrimaNota\Mastrino;
|
||||
|
||||
$mastrini = Mastrino::where('primanota', 1)->where('id_scadenza', '!=', null)->where('iddocumento', '!=', null)->groupBy('idmastrino')->get();
|
||||
foreach ($mastrini as $mastrino) {
|
||||
$mastrino->aggiornaScadenzario();
|
||||
}
|
Loading…
Reference in New Issue