QR Code Generator Engine
Generate QR code based on any field
QR Code Generator Engine
Generate QR code based on any field
STORY BEHIND THE FEATURES
ODOO BEHAVIOR
Odoo provides the barcode widget to be able to print barcodes on diffferent reports.
CLUEDOO BEHAVIOR
Cluedoo adds in the QR code generator which can:
- generate a QR code from any text field that you like
- show the QR code directly on Odoo interface
- add the QR code in the report
HOW TO USE THIS MODULE?
1
Create two fields using studio:
a. Field with char type (ex: x_studio_qr_code_full_sequence)
b. Field with binary type (ex: x_studio_qr_code_full_2)
2
We can add dependency and computation to the field x_studio_qr_code_full
Dependency: field dependency, ex: x_studio_qr_code_full_sequence
Compute: field computation
for record in self:
record['x_studio_qr_code_full_2'] = record.generate_qr(record.x_studio_qr_code_full_sequence)
3
When we fill the QR Code Full Sequence, it will automatically generate QR Code on the field QR Code Full