Passa al contenuto
Odoo Menu
  • Accedi
  • Provalo gratis
  • App
    Finanze
    • Contabilità
    • Fatturazione
    • Note spese
    • Fogli di calcolo (BI)
    • Documenti
    • Firma
    Vendite
    • CRM
    • Vendite
    • Punto vendita Negozio
    • Punto vendita Ristorante
    • Abbonamenti
    • Noleggi
    Siti web
    • Configuratore sito web
    • E-commerce
    • Blog
    • Forum
    • Live chat
    • E-learning
    Supply chain
    • Magazzino
    • Produzione
    • PLM
    • Acquisti
    • Manutenzione
    • Qualità
    Risorse umane
    • Dipendenti
    • Assunzioni
    • Ferie
    • Valutazioni
    • Referral dipendenti
    • Parco veicoli
    Marketing
    • Social marketing
    • E-mail marketing
    • SMS marketing
    • Eventi
    • Marketing automation
    • Sondaggi
    Servizi
    • Progetti
    • Fogli ore
    • Assistenza sul campo
    • Helpdesk
    • Pianificazione
    • Appuntamenti
    Produttività
    • Comunicazioni
    • Approvazioni
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    App di terze parti Odoo Studio Piattaforma cloud Odoo
  • Settori
    Retail
    • Libreria
    • Negozio di abbigliamento
    • Negozio di arredamento
    • Alimentari
    • Ferramenta
    • Negozio di giocattoli
    Cibo e ospitalità
    • Bar e pub
    • Ristorante
    • Fast food
    • Pensione
    • Grossista di bevande
    • Hotel
    Agenzia immobiliare
    • Agenzia immobiliare
    • Studio di architettura
    • Edilizia
    • Gestione immobiliare
    • Impresa di giardinaggio
    • Associazione di proprietari immobiliari
    Consulenza
    • Società di contabilità
    • Partner Odoo
    • Agenzia di marketing
    • Studio legale
    • Selezione del personale
    • Audit e certificazione
    Produzione
    • Tessile
    • Metallo
    • Arredamenti
    • Alimentare
    • Birrificio
    • Ditta di regalistica aziendale
    Benessere e sport
    • Club sportivo
    • Negozio di ottica
    • Centro fitness
    • Centro benessere
    • Farmacia
    • Parrucchiere
    Commercio
    • Tuttofare
    • Hardware e assistenza IT
    • Ditta di installazione di pannelli solari
    • Calzolaio
    • Servizi di pulizia
    • Servizi di climatizzazione
    Altro
    • Organizzazione non profit
    • Ente per la tutela ambientale
    • Agenzia di cartellonistica pubblicitaria
    • Studio fotografico
    • Punto noleggio di biciclette
    • Rivenditore di software
    Carica tutti i settori
  • Community
    Apprendimento
    • Tutorial
    • Documentazione
    • Certificazioni 
    • Formazione
    • Blog
    • Podcast
    Potenzia la tua formazione
    • Programma educativo
    • Scale Up! Business Game
    • Visita Odoo
    Ottieni il software
    • Scarica
    • Versioni a confronto
    • Note di versione
    Collabora
    • Github
    • Forum
    • Eventi
    • Traduzioni
    • Diventa nostro partner
    • Servizi per partner
    • Registra la tua società di contabilità
    Ottieni servizi
    • Trova un partner
    • Trova un contabile
    • Incontra un esperto
    • Servizi di implementazione
    • Testimonianze dei clienti
    • Supporto
    • Aggiornamenti
    GitHub Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Richiedi una demo
  • Prezzi
  • Aiuto

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

  • CRM
  • e-Commerce
  • Contabilità
  • Magazzino
  • PoS
  • Progetti
  • MRP
All apps
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
Assistenza

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 ?

Iscriviti

Ricevi una notifica quando c'è un'attività per questo post

La domanda è stata contrassegnata
Niyas
1 Rispondi
3017 Visualizzazioni
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
Abbandona
Avatar
Jaseel P M
Autore Risposta migliore

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
Abbandona
Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!

Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!

Registrati
Post correlati Risposte Visualizzazioni Attività
How to Auto checkout attendance in odoo15 Risolto
Niyas
Avatar
Avatar
1
set 23
2877
How will i add two unit of measure
Niyas
Avatar
Avatar
2
giu 23
2986
Project and employee
Niyas
Avatar
Avatar
1
mag 20
2838
Project and employee
Niyas
Avatar
Avatar
1
mag 20
3317
How to loadXML in Odoo js 16 Risolto
Niyas Cybrosys
Avatar
Avatar
2
ago 23
3730
Community
  • Tutorial
  • Documentazione
  • Forum
Open source
  • Scarica
  • Github
  • Runbot
  • Traduzioni
Servizi
  • Hosting Odoo.sh
  • Supporto
  • Aggiornamenti
  • Sviluppi personalizzati
  • Formazione
  • Trova un contabile
  • Trova un partner
  • Diventa nostro partner
Chi siamo
  • La nostra azienda
  • Branding
  • Contattaci
  • Lavora con noi
  • Eventi
  • Podcast
  • Blog
  • Clienti
  • Note legali • Privacy
  • Sicurezza
الْعَرَبيّة 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 è un gestionale di applicazioni aziendali open source pensato per coprire tutte le esigenze della tua azienda: CRM, Vendite, E-commerce, Magazzino, Produzione, Fatturazione elettronica, Project Management e molto altro.

Il punto di forza di Odoo è quello di offrire un ecosistema unico di app facili da usare, intuitive e completamente integrate tra loro.

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