Manejo de archivos movido a helper y limpieza
This commit is contained in:
parent
57b8d6bcce
commit
95a9a404d2
|
@ -14,6 +14,14 @@ class CanastaHelper
|
||||||
const FILA_HEADER = "Tipo";
|
const FILA_HEADER = "Tipo";
|
||||||
const ULTIMA_FILA = "TOTAL";
|
const ULTIMA_FILA = "TOTAL";
|
||||||
|
|
||||||
|
public static function guardarCanasta($data, $path): string
|
||||||
|
{
|
||||||
|
$nombre = $data->getClientOriginalName();
|
||||||
|
|
||||||
|
$data->move(resource_path($path), $nombre);
|
||||||
|
return $nombre;
|
||||||
|
}
|
||||||
|
|
||||||
public static function cargarCanasta($archivo) {
|
public static function cargarCanasta($archivo) {
|
||||||
$csv = Reader::createFromPath(resource_path($archivo), 'r');
|
$csv = Reader::createFromPath(resource_path($archivo), 'r');
|
||||||
$csv->setDelimiter("|");
|
$csv->setDelimiter("|");
|
||||||
|
|
|
@ -44,10 +44,7 @@ class ComprasController
|
||||||
'data' => 'required|file|mimes:csv,txt|max:2048',
|
'data' => 'required|file|mimes:csv,txt|max:2048',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$data = $request->file('data');
|
$nombre = CanastaHelper::guardarCanasta($request->file('data'), self::CANASTAS_PATH);
|
||||||
$nombre = $data->getClientOriginalName();
|
|
||||||
|
|
||||||
$data->move(resource_path(self::CANASTAS_PATH), $nombre);
|
|
||||||
CanastaHelper::cargarCanasta(self::CANASTAS_PATH . $nombre);
|
CanastaHelper::cargarCanasta(self::CANASTAS_PATH . $nombre);
|
||||||
|
|
||||||
return response()->json([
|
return response()->json([
|
||||||
|
|
|
@ -2,8 +2,6 @@
|
||||||
|
|
||||||
use App\Helpers\CanastaHelper;
|
use App\Helpers\CanastaHelper;
|
||||||
use Illuminate\Database\Seeder;
|
use Illuminate\Database\Seeder;
|
||||||
use League\Csv\Reader;
|
|
||||||
use App\Proveedor;
|
|
||||||
|
|
||||||
class CanastaSeeder extends Seeder
|
class CanastaSeeder extends Seeder
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue