Skip to Content
Menu
This question has been flagged
1 Reply
4499 Views

I am using Odoo 12 Enterprise Edition.

When my Receiving Manager prints the Receipts due to be received, he can scan the Receipt barcode to open it and can scan the product barcode either on the product or the paperwork to receive products.

To complete the transfer, he either has to click the VALIDATE button on the handheld with his finger, or grab the separate barcode sheet of COMMANDS FOR INVENTORY.

Since he already has the Receipt paper in one hand and the scanner in another hand, he needs to put down the paperwork to use his finger to to get the separate sheet.

Can the VALIDATE barcode be printed at the bottom of the Receipt so he can just scan the paperwork he is already holding? 

Can this be done for Internal Transfer and Delivery paperwork (Picking Operations) also?

Avatar
Discard
Best Answer

Scan the barcode you want to print into a simple text editor - this will paste the characters that you need.

For VALIDATE it is:

O-BTN.validate

Then add something like this to the end of the report in your own QWEB view that inherits and overrides the Picking Operations report view:

<div class="row justify-content-end mb16">
<div class="col-4" name="right_box">
<img
t-att-src="'/report/barcode/?type=%s&amp;value=%s&amp;width=%s&amp;height=%s' % ('Code128', 'O-BTN.validate', 600, 100)"
style="width:300px;height:50px;" alt="Barcode"/>
</div>
</div>


Avatar
Discard
Related Posts Replies Views Activity
2
Mar 15
11856
1
Jan 18
7006
0
Dec 24
13
1
Oct 24
835
2
Aug 24
329