This commit is contained in:
2024-11-07 23:54:51 +03:00
parent 7a89ce2840
commit 757f5c13a5
2 changed files with 2 additions and 2 deletions

View File

@@ -55,7 +55,7 @@ class ProductService {
async getByLocalId(groupId, localId) {
let result = (await db.query("SELECT * FROM products WHERE group_id = $1 AND local_id = $2", [groupId, localId]));
if (result.rowCount == 0) throw new customError(`getByLocalId product not found`, responseCodes.responses.products.not_found);
return responseCodes.rows[0];
return result.rows[0];
}
};