añadiendo linea factura

This commit is contained in:
2024-07-09 15:21:20 +02:00
parent 5605a88846
commit 2b7b12fde7
5 changed files with 146 additions and 5 deletions

View File

@ -20,11 +20,13 @@ class Test extends BaseController
public function index()
{
$model = new PresupuestoModel();
$data = $model->generarLineaPedido(123);
echo '<pre>';
$model = model("\App\Models\Pedidos\PedidoLineaModel");
$data = $model->obtenerLineasPedidoSinFacturar(999);
echo('<pre>');
var_dump($data);
echo '</pre>';
echo('</pre>');
}