Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Immobiliari
    • Agència immobiliària
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consultoria
    • Empresa comptable
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Mobles
    • Menjar
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Sistemes d'energia solar
    • Shoe Maker
    • Serveis de neteja
    • Instal·lacions HVAC
    Altres
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

Stock picking removes sale orders link

Subscriure's

Get notified when there's activity on this post

This question has been flagged
stock_pickingsales.orderstock_move
2 Respostes
5045 Vistes
Avatar
Zan Banko

Hello I am modifying the stock.picking view form by adding the pre-existing sale_id field, which will link the picking form to a sale order. When I add or change products in the Operations field and click save the Sale_id field is emptied and the link to the sale order is removed. I was wondering if anyone could help me locate which function in StockMove or StockPicking does this so I can override it. I am using Odoo v14.


This is my code if anyone wants to try:

from odoo import models, fields, api
from odoo.exceptions import ValidationError


class StockPickingInherit(models.Model):
_inherit = "stock.picking"


@api.onchange
('partner_id')
def onchange_partner_id(self):
return {'domain': {'sale_id': [('partner_id', 'in', self.get_partner_ids())]}}

def get_partner_ids(self):
res = []
root_id = self.partner_id
if self.partner_id.parent_id.id != False:
root_id = self.partner_id.parent_id
res.append(root_id.id)
for child_id in root_id.child_ids:
res.append(child_id.id)
return res



"id="stock_picking_form_view_inherit" model="ir.ui.view">
name="name">stock.picking.form.view.inherit
name="model">stock.picking
name="inherit_id" ref="stock.view_picking_form"/>
name="arch" type="xml">
name="origin" position="after">
name="sale_id"/>

name="product_uom_qty" position="attributes">
name="invisible">0


"

0
Avatar
Descartar
Avatar
Samuddhan Joshi
Best Answer
After creating the stock.picking record, we attempt to link it back to the sale order by adding it to the picking_ids field of the sale order (order.picking_ids += picking).

​if any(line.product_id.is_receipt_require for line in order.order_line):

​        picking_vals = {

​            'picking_type_id': order.warehouse_id.in_type_id.id,

​            'partner_id': order.partner_id.id,

​            'location_dest_id': order.warehouse_id.lot_stock_id.id,

​            'origin': order.name,

​            'sale_id': order.id,

​            'location_id' : order.partner_id.property_stock_supplier.id,

​        }

​        picking = self.env['stock.picking'].create(picking_vals)

​

​        for line in order.order_line:

​            if line.product_id.is_receipt_require:

​                picking_line_vals = {

​                    'picking_id': picking.id,

​                    'product_id': line.product_id.receipt_product.id,

​                    'product_uom_qty': line.product_uom_qty,

​                    'product_uom' : line.product_id.receipt_product.uom_id.id,

​                    'name': line.name,

​                    'location_id' : order.partner_id.property_stock_supplier.id,

​                    'location_dest_id' : order.warehouse_id.lot_stock_id.id,

​                }

​                self.env['stock.move'].create(picking_line_vals)

​                

​        # Update the sale order to link it with the created picking

​        order.picking_ids += picking

​          return res

​    else: ​       

​ return res


1
Avatar
Descartar
Avatar
Support GeminateCS
Best Answer

Hello Zan,

Please replace this code in your module. i hope your problem will be solved after adding this code. this is py file and xml file code. change in your xpath so your error will be solved.


py file code

from odoo import models, fields, api
from odoo.exceptions import ValidationError


class StockPickingInherit(models.Model)
_inherit = "stock.picking"

sale_id = fields.Char



Feel free for further assistance on contact@geminatecs.com

Thank you
Geminate Consultancy Services.

0
Avatar
Descartar
Support GeminateCS

Hello Zan,

Please replace this code in your module. i hope your problem will be solved after adding this code. this is py file and xml file code. change in your xpath so your error will be solved.

py file code

from odoo import models, fields, api
from odoo.exceptions import ValidationError

class StockPickingInherit(models.Model)
_inherit = "stock.picking"

sale_id = fields.Char

// api onchange('partner_id')
// def onchange_partner_id(self):
// return {'domain': {'sale_id': [('partner_id', 'in', self.get_partner_ids())]}}
//
// def get_partner_ids(self):
// res = []
// root_id = self.partner_id
// if self.partner_id.parent_id.id != False:
// root_id = self.partner_id.parent_id
// res.append(root_id.id)
// for child_id in root_id.child_ids:
// res.append(child_id.id)
// return res

view file code

//record id="stock_picking_form_view_inherit" model="ir.ui.view"
// field name="name">stock.picking.form.view.inherit</field
// field name="model">stock.picking</field
// field name="inherit_id" ref="stock.view_picking_form"
// field name="arch" type="xml"
// xpath expr="//field[@name='origin']" position="after"
// field name="sale_id"
// xpath
//
// xpath expr="field[@name='product_uom_qty']" position="attributes"
// attribute name="invisible">True
// xpath
// field
//record

Feel free for further assistance on contact@geminatecs.com

Thank you
Geminate Consultancy Services.

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

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

Registrar-se
Related Posts Respostes Vistes Activitat
Difference Between move_line_ids and move_line_nosuggest_ids
stock_picking stock_move
Avatar
Avatar
1
d’ag. 21
8636
Why am I getting "Extra Move" on picking transfers?
stock_picking stock_move
Avatar
0
de febr. 17
6862
Use aggregated sum of stock moves in stock picking model Solved
stock_picking stock_move valueerror
Avatar
1
d’abr. 23
3368
[Routes] Automatic purchase orders --> Stock location wrong (missing)
stock_picking purchase_order stock_move
Avatar
Avatar
1
de juny 22
4115
Change quantity = 0 in PO Odoo 8
stock stock_picking stock_move
Avatar
0
de nov. 17
4083
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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