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.
 
 
 
 
 

21 lines
451 B

<#import "base.ftl" as printbase>
<@printbase.layout>
<#if error?? >
<script>alert("${error}");</script>
<#else >
<script>
function lodopReady(){
LODOP.PRINT_INIT("sf_order");
LODOP.SET_PRINT_PAGESIZE(0,770,770,"");
LODOP.ADD_PRINT_BARCODE(10,23,75,75,"QRCode","${sfOrder}");
LODOP.ADD_PRINT_TEXT(80,20,145,15,"半成品工单: ${orderNo}");
LODOP.SET_PRINT_STYLE("FontSize",9);
}
</script>
</#if>
</@printbase.layout>