cargando papeles y gramaje en el comparador

This commit is contained in:
Jaime Jimenez
2023-09-20 21:45:22 +02:00
parent ba176c04c2
commit 96a2c7f985
12 changed files with 516 additions and 280 deletions

View File

@ -2,7 +2,7 @@
namespace App\Controllers;
use App\Services\PresupuestoService;
use App\Models\Configuracion\PapelGenericoModel;
class Test extends BaseController
{
@ -15,8 +15,10 @@ class Test extends BaseController
public function index()
{
$text = PresupuestoService::example();
echo $text;
$model = new PapelGenericoModel();
echo '<pre>';
var_dump($model->getGramajeComparador('CARTULINA GRÁFICA ESTUCADA 1/C'));
echo '</pre>';
}
}