24 lines
607 B
Smarty
24 lines
607 B
Smarty
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<style>
|
|
@page { size: 90mm 130mm; margin: 6mm; }
|
|
body { font-family: Arial, sans-serif; font-size: 12pt; }
|
|
.label { width: 78mm; }
|
|
h1 { font-size: 18pt; margin: 0 0 8px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="label">
|
|
<h1>Warenanhänger</h1>
|
|
<p><b>Serial:</b> {{text:serialNumber}}</p>
|
|
<p><b>Part:</b> {{text:partNumber}}</p>
|
|
<p><b>Order:</b> {{text:workorderNumber}}</p>
|
|
<img alt="Barcode" src="{{barcode:CODE_128:serialNumber:360x90}}">
|
|
<br>
|
|
<img alt="QR" src="{{qr:serialNumber}}" style="width:120px;height:120px;">
|
|
</div>
|
|
</body>
|
|
</html>
|