Hi there,
I enabled LOT/SERIAL NUMBER.
And when I tried to print picking operations report, the LOT/SERIAL NUMBER field show me a barcode.
I just need the number, how can I stop print the barcode out? Thanks.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hi there,
I enabled LOT/SERIAL NUMBER.
And when I tried to print picking operations report, the LOT/SERIAL NUMBER field show me a barcode.
I just need the number, how can I stop print the barcode out? Thanks.
You can inherit the picking operation template and replace it with the below code.
Please find the code from the comment
<xpath expr="//td[@t-if='has_serial_number']" position="replace">
<td class=" text-center h6" t-if="has_serial_number">
<span t-esc=" ml.lot_id.name or ml.lot_name"/>
</td>
</xpath>
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign upRelated Posts | Replies | Views | Activity | |
---|---|---|---|---|
|
0
Apr 24
|
324 | ||
|
1
Sep 22
|
3010 | ||
|
0
Feb 22
|
1284 | ||
|
2
Dec 24
|
3117 | ||
|
0
Dec 24
|
13 |
Hello,
You have to remove the barcode printing code from the report template.