pedi3/app/Models/Barrio.php

134 lines
4.3 KiB
PHP
Raw Normal View History

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Model;
use League\Csv\CannotInsertRecord;
use League\Csv\Writer;
class Barrio extends Model
{
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
*/
protected $fillable = [
'name',
];
/**
* La región a la que pertenece el barrio.
*/
public function region(): BelongsTo
{
return $this->belongsTo(Region::class);
}
2024-03-11 19:41:52 -03:00
/**
* Los pedidos que pertenecen al barrio.
*/
public function pedidos(): HasMany
{
return $this->hasMany(Pedido::class);
}
2024-03-19 22:34:13 -03:00
function crearPedido(string $nombre) : Pedido {
return $this->pedidos()->create(['name' => $name]);
}
function pedidosConfirmados() {
return $this->pedidos()->where('confirmed',true);
}
function totalARecaudar() : float {
return $this->calcularTotalConfirmados();
}
function totalNoBarriales() : float {
2024-03-19 22:37:00 -03:00
return $this->calcularTotalConfirmados(
fn($p) => $p->total($p->productosNoBarriales())
);
}
function totalParaTransporte() : float {
return $this->calcularTotalConfirmados(
fn($p) => $p->total($p->productosConTransporte())
);
}
function totalATransferir() : float {
return $this->totalNoBarriales() + TransporteUtils::total($this->totalParaTransporte());
}
2024-03-20 00:26:05 -03:00
private function calcularTotalConfirmados(Closure $closure = null) : float {
if (!$closure)
$closure = fn($p) => $p->totalChismosa();
return $this->pedidosConfirmados()->sum($closure);
}
/**
* Los productos que pertenecen al barrio.
*/
public function productos(): HasMany
{
return $this->hasMany(Producto::class);
}
2024-03-20 00:26:05 -03:00
function exportarPedidoACsv() {
if ($this->pedidosConfirmados()->exists()) {
$columnaProductos = $this->armarColumnasPedido();
2024-03-20 00:26:05 -03:00
try {
$writer = Writer::createFromPath(resource_path('csv/exports/'.$this->nombre.'.csv'), 'w');
$writer->insertAll($columnaProductos);
} catch (CannotInsertRecord $e) {
var_export($e->getRecords());
}
}
}
2024-03-20 00:26:05 -03:00
private function armarColumnasPedido() : array {
2024-03-20 00:46:08 -03:00
$productosPedidos = $this->productosCantidadesPedidas();
$columnaProductos = [];
$filasVaciasAgregadas = false;
2024-03-20 00:46:08 -03:00
foreach (Categoria::orderBy('id')->get() as $keyC => $categoria) {
$columnaProductos[] = ['name' => $categoria->name, 'cantidad' => null];
if ($categoria->name == 'TRANSPORTE, BONOS Y FINANCIAMIENTO SORORO')
$columnaProductos[] = ['name' => 'Bono de Transporte', 'cantidad' => TransporteUtils::cantidad($this->totalParaTransporte)];
if ($categoria->name == 'PRODUCTOS DE GESTIÓN MENSTRUAL')
$columnaProductos[] = ['name' => '¿Cuántas copas quieren y pueden comprar en el grupo?', 'cantidad' => null];
2024-03-20 00:46:08 -03:00
foreach ($categoria->productos()->orderBy('id')->get() as $keyP => $producto) {
if ($producto->price == 0 && !$filasVaciasAgregadas) {
$columnaProductos[] = ['name' => '¿Cuántas copas quieren adquirir a través del financiamiento sororo?', 'cantidad' => null];
$filasVaciasAgregadas = true;
}
2024-03-20 00:46:08 -03:00
$columnaProductos[] = ['name' => $producto->name, 'cantidad' => $productosPedidos[$producto->id]];
}
}
2024-03-20 00:26:05 -03:00
}
2024-03-20 00:46:08 -03:00
private function productosCantidadesPedidas() : array {
return $this->pedidos()
->where('confirmed',true)
2024-03-20 00:46:08 -03:00
->with('productos')
2024-03-20 00:46:08 -03:00
->get()
2024-03-20 00:46:08 -03:00
->flatMap(fn($pedido) => $pedido->productos->map(
fn($producto) => [
'producto_id' => $producto->id,
'cantidad' => $producto->pivot->cantidad,
2024-03-20 00:46:08 -03:00
]
))
2024-03-20 00:46:08 -03:00
->groupBy('producto_id')
->map(fn($productosAgrupados) => [
$productosAgrupados->first()['producto_id'] => $productosAgrupados->sum('cantidad'),
2024-03-20 00:46:08 -03:00
]);
}
}