Reputation: 61
I am tried all these codes. But it's not working? Actually I am adding '*' with barcode, but it does not work. Do I need to configure or do any changes on barcode nomenclature?
<img t-att-src="'/report/barcode/?type=%s&value=%s&width=%s&height=%s' % ('EAN13', '2210000000001', 600, 100)" style="width:300px;height:50px;"/>
<barcode encoding="code128">
<t t-esc='receipt.orderbarcode' />
</barcode>
<barcode encoding="CODE39">
<t t-esc='receipt.orderbarcode' />
</barcode>
Any advice?
Upvotes: 2
Views: 1353
Reputation: 14768
According to the report module of Odoo you should try out Standard39
or Extended39
as encoding.
Upvotes: 1