-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun.js
30 lines (29 loc) · 1.1 KB
/
run.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
exports.header = {
height: "1.5cm",
contents: function (pageNum, numPages) {
return (
"<p style='font-size: 10px; display: block; font-family: sans-serif; border-bottom: 1px dotted #CCC; padding-bottom: 10px; margin-bottom: 40px;'><a style='color: #007bff; font-weight: bold; text-decoration: none;' href='https://tecdiary.net/products/warehouse-inventory-management-solution-wims'>Warehouse Inventory Management Solution (WIMS)</a> <span style='float:right'>" +
pageNum +
" / " +
numPages +
"</span></p>"
);
},
};
exports.footer = {
height: "0.8cm",
contents: function (pageNum, numPages) {
if (pageNum == numPages) {
return "";
}
return (
"<p style='margin-top: 20px; font-size: 10px; font-family: sans-serif; border-top: 1px dotted #CCC; padding-top: 4px;'><span style='float:right'>" +
pageNum +
" / " +
numPages +
"</span> © " +
new Date().getFullYear() +
' <a style="color: #007bff; font-weight: bold; text-decoration: none;" href="https://tecdiary.net">Tecdiary.net</a> All Rights Reserved.</p>'
);
},
};