refs #4550 Bugs fixed
gitea/printnatura/pipeline/head This commit looks good Details

This commit is contained in:
Guillermo Bonet 2022-11-28 09:14:19 +01:00
parent 5a104e3b62
commit 7464b579a0
1 changed files with 2 additions and 6 deletions

View File

@ -85,16 +85,11 @@ class PrintServer {
try {
await conn.beginTransaction();
<<<<<<< HEAD
[[printJob]] = await conn.query(selectQuery);
if (!printJob) {
conn.rollback();
return;
}
=======
[[printJob]] = await conn.query(selectQuery);
if (!printJob) return;
>>>>>>> b9b83b979507038a3f39ef7c1ed47d9c316191fe
jobId = printJob.id;
this.method = printJob.method;
@ -113,8 +108,9 @@ class PrintServer {
args[row.name] = row.value;
try {
let methodPath = this.method.replace(/{\w+}/g, function(match) {
const params = {id: args.collectionFk};
const key = match.substr(1, match.length - 2);
const value = args[key];
const value = params[key];
return value !== undefined ? value : match;
});