Generate Barcode For Products Using Automated Action In Odoo

  Рет қаралды 18,320

Odoo Mates

Odoo Mates

Күн бұрын

Пікірлер: 53
@larsaam3739
@larsaam3739 Жыл бұрын
Thank you very so much. This really solved barcode and labelling for me. Very good and detailed explenation. Excellent for us "dummies".
@OdooMates
@OdooMates 6 ай бұрын
Glad it helped!
@m.hoeppner6951
@m.hoeppner6951 27 күн бұрын
Hello, also used that example now to get "customer numbers" = barcodes in contact with slightly changed code: for record in records: if not record['barcode']: record['barcode'] = env['ir.sequence'].next_by_code('contact.barcode') and of course an additional sequence contact.barcode Works great too.
@RafFrederickx
@RafFrederickx 2 жыл бұрын
Great presentation! Well explained!👍
@OdooMates
@OdooMates 2 жыл бұрын
Glad you enjoyed it!
@victorianomunoz2321
@victorianomunoz2321 2 жыл бұрын
Godamit! you are a life saver thank you very much my friend
@OdooMates
@OdooMates 2 жыл бұрын
❤️❤️❤️
@KanuChijioke
@KanuChijioke 2 жыл бұрын
Nice Explanation
@OdooMates
@OdooMates 2 жыл бұрын
Thanks and welcome
@MrHighvolt
@MrHighvolt 2 жыл бұрын
Thank you!!!! I needed this
@OdooMates
@OdooMates 2 жыл бұрын
@m.hoeppner6951
@m.hoeppner6951 Жыл бұрын
Hello, great video, thanks a lot. It worked well for the server action (ascending numbers by 1). A bit strange, that for the automated action the sequence always jumps 2 steps instead of 1 like inserted in the new sequence (tested multiple times on product and product variant) What can I do or check? I am on Odoo 16 CE.
@SilverPaladin
@SilverPaladin 2 ай бұрын
thank you great tutorial! Still works in Odoo 17 but the menus are a bit different.
@OdooMates
@OdooMates 2 ай бұрын
Glad it helped
@ferarmas
@ferarmas 3 ай бұрын
Excelente video gracias
@MartijnPOtten
@MartijnPOtten Жыл бұрын
Thank you, great video!
@OdooMates
@OdooMates Жыл бұрын
Glad you liked it!
@Reema-h1b
@Reema-h1b 11 ай бұрын
thank you so much, pls how about to create a barcode for each equipment in the maintenance?
@Ansardee
@Ansardee 2 жыл бұрын
Thank you so much!
@OdooMates
@OdooMates 2 жыл бұрын
You're welcome
@cparker4486
@cparker4486 2 жыл бұрын
Excellent! I will definitely be using this.
@OdooMates
@OdooMates 2 жыл бұрын
glad to hear it
@KATHIR98able
@KATHIR98able 2 жыл бұрын
Thank you
@OdooMates
@OdooMates 2 жыл бұрын
welcome brother
@vattulinhkienofficial6519
@vattulinhkienofficial6519 10 ай бұрын
Thật tuyệt, điều này hoạt động! cám ơn bạn!
@asimtambe2003
@asimtambe2003 2 ай бұрын
How can i Update Sales price by automation by specific formula to Add margin ? I dont want to use Pricelist feature.
@rayenfhima7664
@rayenfhima7664 2 жыл бұрын
Hi I need your help, I'm looking for a rental model for odoo community v15 but I can't seem to find one is there anyway you can help me? much appreciated and thank you for you help.
@OdooMates
@OdooMates 2 жыл бұрын
odoo-community.org/shop/product/rental-2344
@OdooMates
@OdooMates 2 жыл бұрын
seems v15 is not yet available
@karim.mekhneche
@karim.mekhneche 2 жыл бұрын
Thanks a lot
@OdooMates
@OdooMates 2 жыл бұрын
welcome
@temphelp
@temphelp 2 жыл бұрын
thanks bro
@OdooMates
@OdooMates 2 жыл бұрын
welcome
@mutiaayusabrina-uiuxdesign5610
@mutiaayusabrina-uiuxdesign5610 Жыл бұрын
hello, i have tried your steps for the update barcode in action server, but it didnt show up when i click the action button. can you help me?
@larsaam3739
@larsaam3739 Жыл бұрын
I am sure you solved it. But for others: Make sure in the sever action that up the right corner it say the text: 'Remove contextual acrtion' . That indicates that the action is found in the action menu. Check field Binding View Types. Value should be: list,form The the confusen if you have several open tabs in your browser: Remember to refresh the window. Else new function do not show up.
@dayanneperalta7691
@dayanneperalta7691 Жыл бұрын
Hi, I tried to follow the steps but it appears this error when I want to update barcode: Validation Error × A barcode can only be assigned to one product !
@deepalitank5851
@deepalitank5851 2 жыл бұрын
👍👍
@OdooMates
@OdooMates 2 жыл бұрын
Thanks
@irfankhawaja8467
@irfankhawaja8467 2 жыл бұрын
Hi I tried this method its not letting assign further barcodes and gives this validation error "A barcode can only be assigned to one product !"
@OdooMates
@OdooMates 2 жыл бұрын
Can I see the code that you have added in automated action
@ryanperdana4612
@ryanperdana4612 2 жыл бұрын
i need ur help sir, how to integrate the variant of product?
@xader2016
@xader2016 Жыл бұрын
me to
@AmhyMaasy
@AmhyMaasy 2 жыл бұрын
hi sir, how to set barcode only for stockable product? thanks a lot
@OdooMates
@OdooMates 2 жыл бұрын
you can add one more condition to filter the product type, like, if record.type == 'product':
@ryanperdana4612
@ryanperdana4612 2 жыл бұрын
@@OdooMates sorry sir, still cant get it.. i shoud add if record.type == 'product': in python code or what?
@OdooMates
@OdooMates 2 жыл бұрын
Can I see the written code
@Beltechsa
@Beltechsa 3 ай бұрын
Is this still valid for odoo 18 enterprise
@OdooMates
@OdooMates 3 ай бұрын
Yes
@hasna4219
@hasna4219 2 жыл бұрын
👍🏽
@OdooMates
@OdooMates 2 жыл бұрын
@LuminaryEthSSPLC
@LuminaryEthSSPLC 2 жыл бұрын
Thank you.
@OdooMates
@OdooMates 2 жыл бұрын
You're welcome!
Customize  PDF Reports From User Interface In Odoo
16:25
Odoo Mates
Рет қаралды 32 М.
Barcode: Receipts and Deliveries | Odoo Inventory
6:40
How to Use Webhooks to Send and Receive Data in Odoo 17
24:09
Kevin Zaki
Рет қаралды 17 М.
How To Create Scheduled Actions in Odoo
17:01
Odoo Mates
Рет қаралды 33 М.
Manufacturing Execution System with Odoo MRP
9:36
Odoo
Рет қаралды 43 М.