pedi3/app/Models/Barrio.php

129 lines
4.1 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 = [
2024-07-03 19:22:42 -03:00
'nombre',
];
/**
* 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(['nombre' => $name]);
2024-03-19 22:34:13 -03:00
}
function pedidosPagados() {
return $this->pedidos()->where('pagado',true);
}
function totalARecaudar() : float {
return $this->calcularTotalPagados();
}
function totalNoBarriales() : float {
return $this->calcularTotalPagados(
2024-03-19 22:37:00 -03:00
fn($p) => $p->total($p->productosNoBarriales())
);
}
function totalParaTransporte() : float {
return $this->calcularTotalPagados(
fn($p) => $p->total($p->productosConTransporte())
);
}
function totalATransferir() : float {
return $this->totalNoBarriales() + TransporteUtils::total($this->totalParaTransporte());
}
private function calcularTotalPagados(Closure $closure = null) : float {
2024-03-20 00:26:05 -03:00
if (!$closure)
$closure = fn($p) => $p->totalChismosa();
return $this->pedidosPagados()->sum($closure);
2024-03-20 00:26:05 -03:00
}
/**
* 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->pedidosPagados()->exists()) {
2024-03-20 00:26:05 -03:00
$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 {
$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)];
else 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;
}
$columnaProductos[] = ['name' => $producto->name, 'cantidad' => $this->cantidadPedida($producto->id)];
}
}
2024-03-20 00:26:05 -03:00
}
private function cantidadPedida($productoId)
{
$pedidos = $this->pedidos()
->whereHas('productos',
function ($query) use ($productoId) {
$query->where('producto_id', $productoId);})
->get();
return $pedidos->sum(function ($pedido) use ($productoId) {
return $pedido->productos
->where('id', $productoId)
->first()->pivot->cantidad ?? 0;});
}
}