我创建了一个带有一些标准的产品代码..
我的条码长度约为26-30个字符..
我可以正确打印条形码但扫描/读取时没有获得价值..
我的条形码:
47789456789234/100001|417-19D
print_barcode.xml
<img t-att-src="'/report/barcode/?type=%s&value=%s&width=%s&height=%s' %
('Code128', l.lot_id.name, 600, 100)"
style="width:300px;height:50px;" />
任何人都可以帮我解决这个问题。
答案 0 :(得分:0)
尝试从 Code128 将条形码格式更改为 EAN13 。
<img t-att-src="'/report/barcode/?type=%s&value=%s&width=%s&height=%s' %('EAN13', l.lot_id.name, 600, 100)" style="width:300px;height:50px;" />