Quit clogs
gitea/salix/pipeline/head There was a failure building this commit Details

This commit is contained in:
Jorge Padawan 2021-02-17 11:04:46 +01:00
parent b71b959b49
commit 0732ff38b1
1 changed files with 0 additions and 2 deletions

View File

@ -36,7 +36,6 @@ module.exports = Self => {
FROM travel t
WHERE t.agencyFk = ? LIMIT 50)`, [agencyModeFk]);
stmts.push(stmt);
console.log(stmts);
stmt = new ParameterizedSQL(`SELECT t.id, t.warehouseInFk, t.warehouseOutFk,
(SELECT ROUND(AVG(DATEDIFF(t.landed, t.shipped )))
@ -53,7 +52,6 @@ module.exports = Self => {
let result = await conn.executeStmt(sql);
avgDays = result[resultAvgDays];
console.log(avgDays);
return avgDays;
};
};