Borrada funcion innecesaria
This commit is contained in:
parent
8a0f8fbe13
commit
cef38cf69c
|
@ -92,7 +92,6 @@ class Producto extends Model
|
|||
$cantidadesPorBarrio = self::cantidadesPorBarrio();
|
||||
$planilla = [];
|
||||
$ultimaFila = 1;
|
||||
$filaTransporte = self::filaTransporte();
|
||||
|
||||
foreach ($cantidadesPorBarrio as $productoCantidades) {
|
||||
$fila = $productoCantidades->fila;
|
||||
|
@ -159,17 +158,4 @@ class Producto extends Model
|
|||
var_export($e->getRecords());
|
||||
}
|
||||
}
|
||||
|
||||
private static function filaTransporte()
|
||||
{
|
||||
$csv = Reader::createFromPath(resource_path('csv/productos.csv'), 'r');
|
||||
$csv->setDelimiter("|");
|
||||
$csv->setEnclosure("'");
|
||||
$registros = $csv->getRecords();
|
||||
|
||||
foreach ($registros as $key => $registro)
|
||||
if ($registro[0] == 'T') return $key;
|
||||
|
||||
throw new Exception('No hay bono de transporte');
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue