Compare commits

...

3 Commits

4 changed files with 67 additions and 17 deletions

View File

@ -1,9 +0,0 @@
<?php
namespace App;
class Constants
{
public const COSTO_TRANSPORTE = 15;
public const DIVISOR_TRANSPORTE = 500;
}

View File

@ -5,6 +5,8 @@
use Illuminate\Database\Eloquent\Relations\HasMany; use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Eloquent\Relations\BelongsTo; use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Model;
use League\Csv\CannotInsertRecord;
use League\Csv\Writer;
class Barrio extends Model class Barrio extends Model
{ {
@ -57,15 +59,14 @@ function totalNoBarriales() : float {
); );
} }
function totalTransporte() : float { function totalParaTransporte() : float {
$totalSinTransporte = $this->calcularTotalConfirmados( return $this->calcularTotalConfirmados(
fn($p) => $p->total($p->productosSinTransporte()) fn($p) => $p->total($p->productosConTransporte())
); );
return ($totalSinTransporte / Constants::DIVISOR_TRANSPORTE) * Constants::COSTO_TRANSPORTE;
} }
function totalATransferir() : float { function totalATransferir() : float {
return $this->totalNoBarriales() + $this->totalTransporte(); return $this->totalNoBarriales() + TransporteUtils::total($this->totalParaTransporte());
} }
/** /**
@ -75,4 +76,44 @@ public function productos(): HasMany
{ {
return $this->hasMany(Producto::class); return $this->hasMany(Producto::class);
} }
private function cantidadPedida(Producto $producto) : int {
return DB::table('pedido_producto')
->join('pedidos', 'pedido_producto.order_id', '=', 'pedidos.id')
->where('pedidos.barrio_id', $this->id)
->where('pedido_producto.producto_id', $producto->id)
->where('pedidos.confirmed', true)
->sum('pedido_producto.cantidad');
}
private function exportarPedidoACsv() {
$columnaProductos = [];
$filasVaciasAgregadas = false;
foreach (Categoria::orderBy('id')->get() as $key => $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];
foreach ($categoria->productos()->orderBy('id')->get() as $key => $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)];
}
}
try {
$writer = Writer::createFromPath(resource_path('csv/exports/'.$this->nombre.'.csv'), 'w');
$writer->insertAll($columnaProductos);
} catch (CannotInsertRecord $e) {
var_export($e->getRecords());
}
}
} }

View File

@ -2,7 +2,7 @@
namespace App\Models; namespace App\Models;
use App\Constants; use App\Utils\TransporteUtils;
use Illuminate\Database\Eloquent\Relations\BelongsToMany; use Illuminate\Database\Eloquent\Relations\BelongsToMany;
use Illuminate\Database\Eloquent\Relations\BelongsTo; use Illuminate\Database\Eloquent\Relations\BelongsTo;
@ -85,8 +85,7 @@ function totalTransporte() : int {
if ($this->productos()->every(fn($prod) => !$prod->pagaTransporte())) if ($this->productos()->every(fn($prod) => !$prod->pagaTransporte()))
return 0; return 0;
$cantidad = 1 + floor($this->total($this->productosConTransporte()) / Constants::DIVISOR_TRANSPORTE); return TransporteUtils::total($this->productosConTransporte());
return $cantidad * Constants::COSTO_TRANSPORTE;
} }
/** /**

View File

@ -0,0 +1,19 @@
<?php
namespace App;
class TransporteUtils
{
public const COSTO_TRANSPORTE = 15;
public const DIVISOR_TRANSPORTE = 500;
static function cantidad(float $total) : int {
if ($total)
return 1 + floor($total / DIVISOR_TRANSPORTE);
return 0;
}
static function total(float $total) : int {
return cantidad($total) * COSTO_TRANSPORTE;
}
}