Arreglos finales
This commit is contained in:
parent
64058e5784
commit
d0d323d6f7
|
@ -42,6 +42,12 @@ public function crearPedido(string $nombre) : Pedido {
|
||||||
return $this->pedidos()->create(['nombre' => $nombre]);
|
return $this->pedidos()->create(['nombre' => $nombre]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Devuelve una query, para obtener el resultado agregarle ->get().
|
||||||
|
* La query devuelve objetos con todos los atributos de un producto, seguidos
|
||||||
|
* de la cantidad de ese producto pedida entre todos los pedidos del barrio y
|
||||||
|
* el costo total de dicha cantidad.
|
||||||
|
*/
|
||||||
public function productosPedidos() {
|
public function productosPedidos() {
|
||||||
return DB::table('productos')
|
return DB::table('productos')
|
||||||
->join('pedido_producto', 'productos.id', '=', 'pedido_producto.producto_id')
|
->join('pedido_producto', 'productos.id', '=', 'pedido_producto.producto_id')
|
||||||
|
@ -63,6 +69,10 @@ public function totalATransferir() : float {
|
||||||
return $this->totalNoBarriales() + $this->totalBonosDeTransporte();
|
return $this->totalNoBarriales() + $this->totalBonosDeTransporte();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function totalBonosDeTransporte() : int {
|
||||||
|
return TransporteUtils::calcularTotal($this->totalNoBarriales());
|
||||||
|
}
|
||||||
|
|
||||||
public function totalNoBarriales() {
|
public function totalNoBarriales() {
|
||||||
return $this->totalProductosIf(['barrial' => false]);
|
return $this->totalProductosIf(['barrial' => false]);
|
||||||
}
|
}
|
||||||
|
@ -77,10 +87,6 @@ private function totalProductosIf($predicado) : float {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function totalBonosDeTransporte() : int {
|
|
||||||
return TransporteUtils::calcularTotal($this->totalNoBarriales());
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Los productos que pertenecen al barrio.
|
* Los productos que pertenecen al barrio.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -38,7 +38,7 @@ public function up(): void
|
||||||
$table->foreign('barrio_id')->references('id')->on('barrios');
|
$table->foreign('barrio_id')->references('id')->on('barrios');
|
||||||
});
|
});
|
||||||
|
|
||||||
Schema::create('producto_caracteristica', function (Blueprint $table) {
|
Schema::create('caracteristica_producto', function (Blueprint $table) {
|
||||||
$table->unsignedBigInteger('producto_id');
|
$table->unsignedBigInteger('producto_id');
|
||||||
$table->unsignedBigInteger('caracteristica_id');
|
$table->unsignedBigInteger('caracteristica_id');
|
||||||
$table->primary(['producto_id','caracteristica_id']);
|
$table->primary(['producto_id','caracteristica_id']);
|
||||||
|
@ -52,7 +52,7 @@ public function up(): void
|
||||||
*/
|
*/
|
||||||
public function down(): void
|
public function down(): void
|
||||||
{
|
{
|
||||||
Schema::dropIfExists('producto_caracteristica');
|
Schema::dropIfExists('caracteristica_producto');
|
||||||
Schema::dropIfExists('productos');
|
Schema::dropIfExists('productos');
|
||||||
Schema::dropIfExists('caracteristicas');
|
Schema::dropIfExists('caracteristicas');
|
||||||
Schema::dropIfExists('categorias');
|
Schema::dropIfExists('categorias');
|
||||||
|
|
|
@ -20,9 +20,9 @@ class CanastaSeeder extends Seeder
|
||||||
*/
|
*/
|
||||||
public function run(): void
|
public function run(): void
|
||||||
{
|
{
|
||||||
$tipoColumn = 'Tipo';
|
$columnaTipo = 'Tipo';
|
||||||
$productoColumn = 'Producto';
|
$columnaProducto = 'Producto';
|
||||||
$precioColumn = 'Precio';
|
$columnaPrecio = 'Precio';
|
||||||
$tipos = ['P','PTC','B'];
|
$tipos = ['P','PTC','B'];
|
||||||
|
|
||||||
$csv = Reader::createFromPath(resource_path('csv/productos.csv'), 'r');
|
$csv = Reader::createFromPath(resource_path('csv/productos.csv'), 'r');
|
||||||
|
@ -30,50 +30,50 @@ public function run(): void
|
||||||
$csv->setHeaderOffset(0);
|
$csv->setHeaderOffset(0);
|
||||||
$records = $csv->getRecords();
|
$records = $csv->getRecords();
|
||||||
|
|
||||||
$productosToInsert = [];
|
$productos = [];
|
||||||
$caracteristicasToInsert = [];
|
$caracteristicasAInsertar = [];
|
||||||
$currentCategoria;
|
$categoriaActual;
|
||||||
foreach ($records as $i => $record) {
|
foreach ($records as $i => $record) {
|
||||||
$tipo = trim($record[$tipoColumn]);
|
$tipo = trim($record[$columnaTipo]);
|
||||||
|
|
||||||
if (!in_array($tipo, $tipos)) {
|
if (!in_array($tipo, $tipos)) {
|
||||||
if (!Str::contains($tipo,'¿') && ($tipo != 'T')) {
|
if (!Str::contains($tipo,'¿') && ($tipo != 'T')) {
|
||||||
$currentCategoria = Categoria::firstOrCreate(['nombre' => $tipo]);
|
$categoriaActual = Categoria::firstOrCreate(['nombre' => $tipo]);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
[$solidario, $nombre, $caracteristicas] = $this->parseAndFormatName($record[$productoColumn]);
|
[$solidario, $nombre, $caracteristicas] = $this->parsearNombre($record[$columnaProducto]);
|
||||||
|
|
||||||
$productosToInsert[] = [
|
$productos[] = [
|
||||||
'nombre' => $nombre,
|
'nombre' => $nombre,
|
||||||
'precio' => $record[$precioColumn],
|
'precio' => $record[$columnaPrecio],
|
||||||
'solidario' => $solidario,
|
'solidario' => $solidario,
|
||||||
'bono' => $tipo == 'B',
|
'bono' => $tipo == 'B',
|
||||||
'categoria_id' => $currentCategoria->id,
|
'categoria_id' => $categoriaActual->id,
|
||||||
'created_at' => Date::now(),
|
'created_at' => Date::now(),
|
||||||
'updated_at' => Date::now(),
|
'updated_at' => Date::now(),
|
||||||
];
|
];
|
||||||
|
|
||||||
$caracteristicasToInsert[] = [
|
$caracteristicasAInsertar[] = [
|
||||||
'nombre' => $nombre,
|
'nombre' => $nombre,
|
||||||
'caracteristicas' => $caracteristicas
|
'caracteristicas' => $caracteristicas
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach (array_chunk($productosToInsert,DatabaseSeeder::CHUNK_SIZE) as $chunk)
|
foreach (array_chunk($productos,DatabaseSeeder::CHUNK_SIZE) as $chunk)
|
||||||
DB::table('productos')->insert($chunk);
|
DB::table('productos')->insert($chunk);
|
||||||
|
|
||||||
$this->insertCaracteristicas($caracteristicasToInsert);
|
$this->insertarCaracteristicas($caracteristicasAInsertar);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns an array with data parsed from productoColumn.
|
* Devuelve un array con datos parseados de $columnaProducto
|
||||||
*
|
*
|
||||||
* @return array{solidario: bool, nombre: string, caracteristicas: array(Caracteristica)}
|
* @return array{solidario: bool, nombre: string, caracteristicas: array(Caracteristica)}
|
||||||
*/
|
*/
|
||||||
private function parseAndFormatName($productoColumn): array {
|
private function parsearNombre($columnaProducto): array {
|
||||||
$solidario = Str::contains($productoColumn, '*');
|
$solidario = Str::contains($columnaProducto, '*');
|
||||||
$nombre = Str::replace('*','',$productoColumn);
|
$nombre = Str::replace('*','',$columnaProducto);
|
||||||
|
|
||||||
$caracteristicas = [];
|
$caracteristicas = [];
|
||||||
if (Str::contains($nombre, 'S-G'))
|
if (Str::contains($nombre, 'S-G'))
|
||||||
|
@ -92,16 +92,13 @@ private function parseAndFormatName($productoColumn): array {
|
||||||
return [$solidario, trim($nombre), $caracteristicas];
|
return [$solidario, trim($nombre), $caracteristicas];
|
||||||
}
|
}
|
||||||
|
|
||||||
private function insertCaracteristicas($caracteristicasToInsert) : void {
|
private function insertarCaracteristicas($caracteristicasAInsertar) : void {
|
||||||
foreach ($caracteristicasToInsert as $codigo => $item) {
|
foreach ($caracteristicasAInsertar as $codigo => $item) {
|
||||||
$nombre = $item['nombre'];
|
$nombre = $item['nombre'];
|
||||||
$match = Producto::where('nombre',$nombre)->first();
|
$match = Producto::where('nombre',$nombre)->first();
|
||||||
if ($match) {
|
if ($match) {
|
||||||
foreach ($item['caracteristicas'] as $codigo => $caracteristica) {
|
foreach ($item['caracteristicas'] as $codigo => $caracteristica) {
|
||||||
DB::table('producto_caracteristica')->insert([
|
$match->caracteristicas()->attach($caracteristica);
|
||||||
'producto_id' => $match->id,
|
|
||||||
'caracteristica_id' => $caracteristica,
|
|
||||||
]);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue