call para el catalogue_get

This commit is contained in:
Jaume Solís 2024-01-17 18:37:00 +01:00
parent a96df9938e
commit 1e28f94293
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ async function connect() {
async function getProducts() {
const conn = await connect();
const [rows] = await conn.query('CALL getProduct("2024-01-30", "08001")');
const [rows] = await conn.query('CALL catalogue_get("2024-01-30", "08001")');
return rows;
}