Exportar a csv funcionando

This commit is contained in:
Alejandro Tasistro 2024-07-09 23:21:49 -03:00
parent 32a3015e89
commit 10b1dd738e
1 changed files with 30 additions and 32 deletions

View File

@ -50,8 +50,7 @@ public function productosPedidos() {
->select('productos.*', ->select('productos.*',
DB::raw('SUM(pedido_producto.cantidad) as cantidad'), DB::raw('SUM(pedido_producto.cantidad) as cantidad'),
DB::raw('SUM(pedido_producto.cantidad * productos.precio) as total')) DB::raw('SUM(pedido_producto.cantidad * productos.precio) as total'))
->groupBy('productos.id') ->groupBy('productos.id');
->get();
} }
public function totalARecaudar() : float { public function totalARecaudar() : float {
@ -65,18 +64,16 @@ public function totalATransferir() : float {
} }
public function totalNoBarriales() { public function totalNoBarriales() {
return $this->totalProductosIf(fn($p) => !$p->barrial); return $this->totalProductosIf(['barrial' => false]);
} }
public function totalBarriales() { public function totalBarriales() {
return $this->totalProductosIf(fn($p) => $p->barrial); return $this->totalProductosIf(['barrial' => true]);
} }
private function totalProductosIf(callable $predicado) : float { private function totalProductosIf($predicado) : float {
return $this->productosPedidos()->sum( return $this->productosPedidos()->where($predicado)->get()->sum(
function ($producto) use ($predicado) { fn($producto) => $producto->total
return $predicado($producto) ? $producto->total : 0;
}
); );
} }
@ -92,51 +89,52 @@ public function productos(): HasMany
return $this->hasMany(Producto::class); return $this->hasMany(Producto::class);
} }
function exportarPedidoACsv() { public function exportarPedidoACsv() {
if ($this->pedidosPagados()->exists()) { if ($this->productosPedidos()->get()->isNotEmpty()) {
$columnaProductos = $this->armarColumnasPedido(); $columnaProductos = $this->armarColumnaTotales();
try { try {
$writer = Writer::createFromPath(resource_path('csv/exports/'.$this->nombre.'.csv'), 'w'); $writer = Writer::createFromPath(resource_path('csv/exports/'.$this->nombre.'.csv'), 'w');
$writer->setDelimiter("|");
$writer->setEnclosure("'");
$writer->insertAll($columnaProductos); $writer->insertAll($columnaProductos);
return true;
} catch (CannotInsertRecord $e) { } catch (CannotInsertRecord $e) {
var_export($e->getRecords()); var_export($e->getRecords());
return false;
} }
} }
} }
private function armarColumnasPedido() : array { private function armarColumnaTotales() : array {
$columnaProductos = []; $columnaProductos = [];
$filasVaciasAgregadas = false; $filasVaciasAgregadas = false;
$productos = $this->productosPedidos()->where(['barrial' => false])->get();
foreach (Categoria::orderBy('id')->get() as $keyC => $categoria) { foreach (Categoria::orderBy('id')->get() as $keyC => $categoria) {
$columnaProductos[] = ['name' => $categoria->name, 'cantidad' => null]; if ($categoria->productos()->where(['barrial' => false])->count() == 0)
continue;
if ($categoria->name == 'TRANSPORTE, BONOS Y FINANCIAMIENTO SORORO') $columnaProductos[] = ['nombre' => $categoria->nombre, 'cantidad' => null];
$columnaProductos[] = ['name' => 'Bono de Transporte', 'cantidad' => TransporteUtils::cantidad($this->totalParaTransporte)];
else if ($categoria->name == 'PRODUCTOS DE GESTIÓN MENSTRUAL') if ($categoria->nombre == 'TRANSPORTE, BONOS Y FINANCIAMIENTO SORORO')
$columnaProductos[] = ['name' => '¿Cuántas copas quieren y pueden comprar en el grupo?', 'cantidad' => null]; $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];
foreach ($categoria->productos()->orderBy('id')->get() as $keyP => $producto) { foreach ($categoria->productos()->orderBy('id')->get() as $keyP => $producto) {
if ($producto->price == 0 && !$filasVaciasAgregadas) { if ($producto->precio == 0 && !$filasVaciasAgregadas) {
$columnaProductos[] = ['name' => '¿Cuántas copas quieren adquirir a través del financiamiento sororo?', 'cantidad' => null]; $columnaProductos[] = ['nombre' => '¿Cuántas copas quieren adquirir a través del financiamiento sororo?', 'cantidad' => null];
$filasVaciasAgregadas = true; $filasVaciasAgregadas = true;
} }
$columnaProductos[] = ['name' => $producto->name, 'cantidad' => $this->cantidadPedida($producto->id)]; $columnaProductos[] = ['nombre' => $producto->nombre, 'cantidad' => $this->cantidadPedida($producto->id, $productos)];
} }
} }
return $columnaProductos;
} }
private function cantidadPedida($productoId) { private function cantidadPedida($productoId, $productos) {
$pedidos = $this->pedidos() return $productos->first(fn($p) => $p->id == $productoId)->cantidad ?? 0;
->whereHas('productos',
function ($query) use ($productoId) {
$query->where('producto_id', $productoId);})
->get();
return $pedidos->sum(function ($pedido) use ($productoId) {
return $pedido->productos
->find($productoId)
->pivot->cantidad ?? 0;});
} }
} }