I want to add QR code in the Employee Form

Hello Axelor Community ,
I want to add QR ( or any type of Code ) for the Employee.
For products axelor provide the functionality to generate that code .

I have try some ways to create that code for employee let me show you.

In the Employee Domain I add these new fields.

        <string name="employeeCode" title="Employee Code" />
    <boolean name="activateBarCodeGeneration" />
    <many-to-one name="barCode" title="Barcode" ref="com.axelor.meta.db.MetaFile"/>
    <many-to-one name="barcodeTypeConfig" title="Barcode Type"
                 ref="com.axelor.apps.base.db.BarcodeTypeConfig"/>

I also add the related fields in the form of Employee but not working yet.

Is there anyone who can provide me help in this case ?

Hello @ZeeshanAhmad,

The API used allows with a few lines of code to apply them to any ERP object.
See class https://github.com/axelor/axelor-open-suite/blob/master/axelor-base/src/main/java/com/axelor/apps/base/service/BarcodeGeneratorServiceImpl.java

See the following post:

Thank you PakMax ,
I am on it.