pedi3/app/Models/Barrio.php

141 lines
4.7 KiB
PHP
Raw Normal View History

<?php
namespace App\Models;
use App\Utils\TransporteUtils;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Facades\DB;
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);
}
public function crearPedido(string $nombre) : Pedido {
return $this->pedidos()->create(['nombre' => $nombre]);
}
public function productosPedidos() {
return DB::table('productos')
->join('pedido_producto', 'productos.id', '=', 'pedido_producto.producto_id')
->join('pedidos', 'pedidos.id', '=', 'pedido_producto.pedido_id')
->where(['pedidos.barrio_id' => $this->id, 'pedidos.pagado' => true])
->select('productos.*',
DB::raw('SUM(pedido_producto.cantidad) as cantidad'),
DB::raw('SUM(pedido_producto.cantidad * productos.precio) as total'))
2024-07-09 23:21:49 -03:00
->groupBy('productos.id');
}
public function totalARecaudar() : float {
return $this->pedidos()->where(['pagado' => true])->get()->sum(
fn($p) => $p->totalATransferir()
);
}
public function totalATransferir() : float {
return $this->totalNoBarriales() + $this->totalBonosDeTransporte();
}
public function totalNoBarriales() {
2024-07-09 23:21:49 -03:00
return $this->totalProductosIf(['barrial' => false]);
2024-03-19 22:34:13 -03:00
}
public function totalBarriales() {
2024-07-09 23:21:49 -03:00
return $this->totalProductosIf(['barrial' => true]);
}
2024-07-09 23:21:49 -03:00
private function totalProductosIf($predicado) : float {
return $this->productosPedidos()->where($predicado)->get()->sum(
fn($producto) => $producto->total
);
2024-03-20 00:26:05 -03:00
}
public function totalBonosDeTransporte() : int {
return TransporteUtils::calcularTotal($this->totalNoBarriales());
}
/**
* Los productos que pertenecen al barrio.
*/
public function productos(): HasMany
{
return $this->hasMany(Producto::class);
}
2024-07-09 23:21:49 -03:00
public function exportarPedidoACsv() {
if ($this->productosPedidos()->get()->isNotEmpty()) {
$columnaProductos = $this->armarColumnaTotales();
2024-03-20 00:26:05 -03:00
try {
$writer = Writer::createFromPath(resource_path('csv/exports/'.$this->nombre.'.csv'), 'w');
2024-07-09 23:21:49 -03:00
$writer->setDelimiter("|");
$writer->setEnclosure("'");
2024-03-20 00:26:05 -03:00
$writer->insertAll($columnaProductos);
2024-07-09 23:21:49 -03:00
return true;
2024-03-20 00:26:05 -03:00
} catch (CannotInsertRecord $e) {
var_export($e->getRecords());
2024-07-09 23:21:49 -03:00
return false;
2024-03-20 00:26:05 -03:00
}
}
}
2024-07-09 23:21:49 -03:00
private function armarColumnaTotales() : array {
$columnaProductos = [];
$filasVaciasAgregadas = false;
2024-07-09 23:21:49 -03:00
$productos = $this->productosPedidos()->where(['barrial' => false])->get();
2024-03-20 00:46:08 -03:00
foreach (Categoria::orderBy('id')->get() as $keyC => $categoria) {
2024-07-09 23:21:49 -03:00
if ($categoria->productos()->where(['barrial' => false])->count() == 0)
continue;
$columnaProductos[] = ['nombre' => $categoria->nombre, 'cantidad' => null];
2024-07-09 23:21:49 -03:00
if ($categoria->nombre == 'TRANSPORTE, BONOS Y FINANCIAMIENTO SORORO')
$columnaProductos[] = ['nombre' => 'Bono de Transporte', 'cantidad' => $this->totalBonosDeTransporte()];
else if ($categoria->nombre == 'PRODUCTOS DE GESTIÓN MENSTRUAL')
$columnaProductos[] = ['nombre' => '¿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) {
2024-07-09 23:21:49 -03:00
if ($producto->precio == 0 && !$filasVaciasAgregadas) {
$columnaProductos[] = ['nombre' => '¿Cuántas copas quieren adquirir a través del financiamiento sororo?', 'cantidad' => null];
$filasVaciasAgregadas = true;
}
2024-07-09 23:21:49 -03:00
$columnaProductos[] = ['nombre' => $producto->nombre, 'cantidad' => $this->cantidadPedida($producto->id, $productos)];
}
}
2024-07-09 23:21:49 -03:00
return $columnaProductos;
2024-03-20 00:26:05 -03:00
}
2024-07-09 23:21:49 -03:00
private function cantidadPedida($productoId, $productos) {
return $productos->first(fn($p) => $p->id == $productoId)->cantidad ?? 0;
}
}