From e1a72e7874c0c572db8a6b7c5bee83f9ba865ccd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Jim=C3=A9nez?= Date: Thu, 29 Aug 2024 09:32:58 +0200 Subject: [PATCH] modificado lo necesario para presupuesto cliente --- ci4/app/Services/PresupuestoClienteService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci4/app/Services/PresupuestoClienteService.php b/ci4/app/Services/PresupuestoClienteService.php index ecb1f1ad..bf6c6408 100644 --- a/ci4/app/Services/PresupuestoClienteService.php +++ b/ci4/app/Services/PresupuestoClienteService.php @@ -385,7 +385,7 @@ class PresupuestoClienteService extends BaseService $POD = $data['POD'] ?? -1; $model = model('App\Models\Presupuestos\PresupuestoAcabadosModel'); - $values = $model->getPrecioTarifa($tarifa_id, $tirada, $POD); + $values = $model->getPrecioTarifa($tarifa_id, $tirada, -1, $POD); // proveedor más barato return $values; }