You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
425 B
20 lines
425 B
<#import "base.ftl" as printbase>
|
|
<@printbase.layout>
|
|
|
|
<#if error?? >
|
|
<script>alert("${error}");</script>
|
|
<#else >
|
|
<script>
|
|
function lodopReady(){
|
|
LODOP.PRINT_INIT("PrintText");
|
|
LODOP.SET_PRINT_PAGESIZE(0,770,770,"");
|
|
LODOP.ADD_PRINT_BARCODE(10,23,75,75,"QRCode","${text}");
|
|
LODOP.SET_PRINT_STYLE("FontSize",14);
|
|
LODOP.ADD_PRINT_TEXT(80,26,300,20,"${text}");
|
|
}
|
|
</script>
|
|
|
|
</#if>
|
|
|
|
|
|
</@printbase.layout>
|