Skip to Content

QR Code Generator Engine

Automatically generate QR code in the binary field
42.96 € 42.96 € (Tax excluded)
US$ 50.00 (Tax excluded)

  • Versions
Terms and Conditions
30-day money-back guarantee
Shipping: 2-3 Business Days


ODOO'S FUNCTION

Odoo provides the barcode widget to print barcodes in different reports.



CLUEDOO'S FUNCTION

CLuedoo adds a QR code generator, which can:

1️⃣ generate a QR code from any text field that you like

2️⃣ show the QR code directly on the Odoo interface

3️⃣ add the QR code in the report

1. Go to any record of any model > Studio > Create 2 fields:

  • char type 

e.g., x_studio_qr_code_full_sequence

  • binary type

e.g., x_studio_qr_code_full_2

2.  Add Dependencies and Computation to the binary field

Dependencies: x_studio_qr_code_full_sequence

Compute: 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 in the char field > It will  automatically generate QR code in the binary field