Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

I am getting an error, Please Help.. How can I create Manufacturing orders automatically (via code) for BOM components of another Manufacturing order when Saving a Manufacturing Order ?

Subscribe

Get notified when there's activity on this post

This question has been flagged
Niyas
1 Reply
3026 Views
Avatar
Jaseel P M

I written a query for create manufacturing order in create method of mrp.production but Manufacturing Orders created through my query is not deletable, instead of that I am getting an error
 " Cannot delete a manufacturing order in done state" 
even the order is in draft state and I am getting another error,
" The quantity to produce must be positive! "
when I try to click "Mark as Done" for Manufacturing Orders created through my query.

Here is my code below,

def _create_mo_recursive(self, component, main_mo):
if component.stock_in_hand bom = self.env['mrp.bom'].search(
[('product_tmpl_id', '=', component.product_id.product_tmpl_id.id)], limit=1)
if bom:
vals = {
'product_id': component.product_id.id,
'bom_id': bom.id,
'state': 'draft',
'product_qty': component.product_uom_qty,
'qty_producing': 0,
'product_uom_id': component.product_uom.id,
'reference': main_mo.name,
'main_mo_id': main_mo.id,
}
new_mo = self.env['mrp.production'].create(vals)

for bom_line in bom.bom_line_ids:
move_raw_vals = {
'product_id': bom_line.product_id.id,
# 'production_id': new_mo.id,
'name': bom_line.product_id.name,
'product_uom_qty': bom_line.product_qty * component.product_uom_qty,
'product_uom': bom_line.product_uom_id.id,
'location_id': 8,
'location_dest_id': 15,
}
new_mo.write({'move_raw_ids': [(0, 0, move_raw_vals)]})
# new_mo_stock = self.env['stock.move'].create(move_raw_vals)

for operation in bom.operation_ids:
workorder_vals = {
'name': operation.name,
'workcenter_id': operation.workcenter_id.id,
'duration_expected': operation.time_cycle,
'product_uom_id': component.product_uom.id,
}
new_mo.write({'workorder_ids': [(0, 0, workorder_vals)]})

for sub_component in new_mo.move_raw_ids:
self._create_mo_recursive(sub_component, main_mo)
@api.model
def create(self, vals):
res = super(MrpProductionExtent, self).create(vals)
res.create_mo_for_bom_component()
return res

Please give me solution for this problem.

I hope anyone will give me the solution.

Thank You.

0
Avatar
Discard
Avatar
Jaseel P M
Author Best Answer

I got the solution after wrote 1 more query for add an entry of Manufacturing product in stock.move,

here is my new code,

def _create_mo_recursive(self, component, main_mo):
if component.stock_in_hand bom = self.env['mrp.bom'].search(
[('product_tmpl_id', '=', component.product_id.product_tmpl_id.id)], limit=1)
if bom:
vals = {
'product_id': component.product_id.id,
'bom_id': bom.id,
'state': 'draft',
'product_qty': component.product_uom_qty,
# 'qty_producing': component.product_uom_qty,
'product_uom_id': component.product_uom.id,
'reference': main_mo.name,
'main_mo_id': main_mo.id,
}
new_mo = self.env['mrp.production'].create(vals)
print(bom.product_id.name)
bom_main_val = {
'production_id': new_mo.id,
'product_id': new_mo.product_id.id,
# 'description': new_mo.product_id.name,
# 'production_id': new_mo.id,
'name': new_mo.product_id.name,
'product_uom_qty': component.product_uom_qty,
'product_uom': bom.product_uom_id.id,
'location_id': 15,
'location_dest_id': 8,
}
print(bom_main_val)
new_mo_stock = self.env['stock.move'].create(bom_main_val)

for bom_line in bom.bom_line_ids:
move_raw_vals = {
'product_id': bom_line.product_id.id,
# 'production_id': new_mo.id,
'name': bom_line.product_id.name,
'product_uom_qty': bom_line.product_qty * component.product_uom_qty,
'product_uom': bom_line.product_uom_id.id,
'location_id': 8,
'location_dest_id': 15,
}
new_mo.write({'move_raw_ids': [(0, 0, move_raw_vals)]})
# new_mo_stock = self.env['stock.move'].create(move_raw_vals)

for operation in bom.operation_ids:
workorder_vals = {
'name': operation.name,
'workcenter_id': operation.workcenter_id.id,
'duration_expected': operation.time_cycle,
'product_uom_id': component.product_uom.id,
}
new_mo.write({'workorder_ids': [(0, 0, workorder_vals)]})

for sub_component in new_mo.move_raw_ids:
self._create_mo_recursive(sub_component, main_mo)
@api.model
def create(self, vals):
res = super(MrpProductionExtent, self).create(vals)
res.create_mo_for_bom_component()
return res


0
Avatar
Discard
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Sign up
Related Posts Replies Views Activity
How to Auto checkout attendance in odoo15 Solved
Niyas
Avatar
Avatar
1
Sep 23
2881
How will i add two unit of measure
Niyas
Avatar
Avatar
2
Jun 23
2991
Project and employee
Niyas
Avatar
Avatar
1
May 20
2843
Project and employee
Niyas
Avatar
Avatar
1
May 20
3323
How to loadXML in Odoo js 16 Solved
Niyas Cybrosys
Avatar
Avatar
2
Aug 23
3740
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now