|
@@ -1372,8 +1372,7 @@ function checkBlob(config){
|
|
|
|
|
|
}
|
|
}
|
|
|
|
|
|
-function printForm(config){
|
|
|
|
-
|
|
|
|
|
|
+function generatePDF(config){
|
|
let doc=new PDFDocument();
|
|
let doc=new PDFDocument();
|
|
doc.fontSize(25).text("Some text with standard font Andrej (1)!", 100, 100);
|
|
doc.fontSize(25).text("Some text with standard font Andrej (1)!", 100, 100);
|
|
doc.end();
|
|
doc.end();
|
|
@@ -1387,9 +1386,13 @@ function printForm(config){
|
|
config.a.style = "display: none";
|
|
config.a.style = "display: none";
|
|
config.count=0;
|
|
config.count=0;
|
|
blobInterval=setInterval(checkBlob,1000,config);
|
|
blobInterval=setInterval(checkBlob,1000,config);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+function printForm(config){
|
|
|
|
|
|
//pick data from crfForm list
|
|
//pick data from crfForm list
|
|
- print(config,"Printing form");
|
|
|
|
|
|
+ print(config,"Printing form");
|
|
|
|
|
|
for (let i=0;i<config.formConfig.formSetup.rows.length;i++){
|
|
for (let i=0;i<config.formConfig.formSetup.rows.length;i++){
|
|
let entry=config.formConfig.formSetup.rows[i];
|
|
let entry=config.formConfig.formSetup.rows[i];
|
|
@@ -1423,6 +1426,7 @@ function formatFormData(config){
|
|
print(config,'Formatting ['+queryName+']');
|
|
print(config,'Formatting ['+queryName+']');
|
|
formatDataset(config,queryName);
|
|
formatDataset(config,queryName);
|
|
}
|
|
}
|
|
|
|
+ //generatePDF(config);
|
|
}
|
|
}
|
|
|
|
|
|
function formatDataset(config,queryName){
|
|
function formatDataset(config,queryName){
|
|
@@ -1430,6 +1434,7 @@ function formatDataset(config,queryName){
|
|
let fields=data.metaData.fields;
|
|
let fields=data.metaData.fields;
|
|
for (let i=0;i<data.rows.length;i++){
|
|
for (let i=0;i<data.rows.length;i++){
|
|
for (f in fields){
|
|
for (f in fields){
|
|
|
|
+ print(config,'Setting ['+f+'/'+queryName+']');
|
|
let field=fields[f];
|
|
let field=fields[f];
|
|
if (field.hidden) continue;
|
|
if (field.hidden) continue;
|
|
let vName=field.name;
|
|
let vName=field.name;
|
|
@@ -1437,7 +1442,7 @@ function formatDataset(config,queryName){
|
|
print(config,'['+vName+'/'+vType+']: '+data.rows[i][vName]);
|
|
print(config,'['+vName+'/'+vType+']: '+data.rows[i][vName]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|