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.
48 lines
2.1 KiB
48 lines
2.1 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<data>
|
|
<template id="customer_qr_template">
|
|
<t t-foreach="data" t-as="records">
|
|
<t t-foreach="records" t-as="record">
|
|
<t t-call="web.html_container">
|
|
<t t-call="web.internal_layout">
|
|
<style>
|
|
table{
|
|
border:1px solid black !important;
|
|
height:370px;
|
|
width:370px;
|
|
}
|
|
tr{
|
|
border:1px solid black !important;
|
|
}
|
|
td{
|
|
border:1px solid black !important;
|
|
font-size:30px;
|
|
}
|
|
</style>
|
|
<div class="page">
|
|
<center>
|
|
<table>
|
|
<tr>
|
|
<td style="text-align:center;">
|
|
<span t-esc="record.name" style="float:center;"/>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<center><img t-att-src="'data:image/png;base64,%s' % to_text(record.qr)"
|
|
style="height:280px;width:280px;float:center;"/><br/>
|
|
<span t-esc="record.sequence" style="float:center;"/>
|
|
</center>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</center>
|
|
</div>
|
|
</t>
|
|
</t>
|
|
</t>
|
|
</t>
|
|
</template>
|
|
</data>
|
|
</odoo>
|