I am having a Sales Order (many poduct ) and i have to automatically generate a manufacturing order based on this SO when my manufacturing order is composed by many poduct ?
Thanks
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
I am having a Sales Order (many poduct ) and i have to automatically generate a manufacturing order based on this SO when my manufacturing order is composed by many poduct ?
Thanks
Thank you,
Many product in the same Manufacturing order
how i can do it ?
In your sales order module create a
<button name="auto_mo" type="object">
Then in that define
def auto_mo(self,cr,uid,ids):
m_order=self.pool.get('mrp.production')
id=m_order.create(cr,uid,{values you want to add})
for full guidance please refer openerp developer book,,,,,,,/////
Would is not be easiest to use the built-in functionality that comes with products?
So using these steps:
Will this do the trick?
Create an account today to enjoy exclusive features and engage with our awesome community!
Přihlásit se
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.
how i can create an MO with many poduct ? One Mo for many product @Ludo - Neobis