Refactor bonos de transporte

This commit is contained in:
Alejandro Tasistro 2024-03-20 00:13:37 -03:00
parent 83dd00858b
commit 1da3d6db92
1 changed files with 2 additions and 3 deletions

View File

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