Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Magazin de îmbrăcăminte
    • Magazin de Mobilă
    • Magazin alimentar
    • Magazin de materiale de construcții
    • Magazin de jucării
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Distribuitor de băuturi
    • Hotel
    Proprietate imobiliara
    • Real Estate Agency
    • Firmă de Arhitectură
    • Construcție
    • Estate Managament
    • Grădinărit
    • Asociația Proprietarilor de Proprietăți
    Consultanta
    • Firma de Contabilitate
    • Partener Odoo
    • Agenție de marketing
    • Law firm
    • Atragere de talente
    • Audit & Certification
    Producție
    • Textil
    • Metal
    • Mobilier
    • Mâncare
    • Brewery
    • Cadouri corporate
    Health & Fitness
    • Club Sportiv
    • Magazin de ochelari
    • Centru de Fitness
    • Wellness Practitioners
    • Farmacie
    • Salon de coafură
    Trades
    • Handyman
    • IT Hardware and Support
    • Asigurare socială de stat
    • Cizmar
    • Servicii de curățenie
    • HVAC Services
    Altele
    • Organizație nonprofit
    • Agenție de Mediu
    • Închiriere panouri publicitare
    • Fotografie
    • Închiriere biciclete
    • Asigurare socială
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

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

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

Showing Delivery Information on Sales Orders?

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
stocksalesdelivery
3 Răspunsuri
5972 Vizualizări
Imagine profil
Rachid

I would like to add field picked_rate in sale.order.tree to show the  (%) of delivered

I used the answer  https://www.odoo.com/forum/help-1/question/showing-delivery-information-status-carrier-ref-backorders-on-sales-orders-29603

but the field picked_rate doesn't exist in sale.order !!!

2
Imagine profil
Abandonează
Imagine profil
Rachid
Autor Cel mai bun răspuns

here is the solution

class sale_order(osv.osv):
    _inherit = 'sale.order'
    
    def _picked_rate(self, cr, uid, ids, name, arg, context=None):
        if not ids:
            return {}
        res = {}
        tmp = {}
        for i in ids:
            tmp[i] = {'picked': 0.0, 'total': 0.0}
        cr.execute(''' SELECT s.id AS sale_order_id,sum(sm.product_uom_qty) AS nbr, sm.state AS move_state, spt.code AS picking_type
             FROM sale_order s
              LEFT JOIN procurement_group p ON (p.id=s.procurement_group_id)
              LEFT JOIN stock_picking sp ON (sp.group_id=p.id)
              LEFT JOIN stock_move sm ON (sm.picking_id=sp.id)
              LEFT JOIN stock_picking_type spt on (spt.id=sp.picking_type_id)
              WHERE s.id IN %s GROUP BY sm.state,s.id,spt.code ''', (tuple(ids),))
         
        for item in cr.dictfetchall():
            if item['move_state'] == 'cancel':
                continue
         
            if item['picking_type'] == 'incoming':  # this is a returned picking
                tmp[item['sale_order_id']]['total'] -= item['nbr'] or 0.0  # Deducting the return picking qty
#                 if item['procurement_state'] == 'done' or item['move_state'] == 'done':
                if  item['move_state'] == 'done':
                    tmp[item['sale_order_id']]['picked'] -= item['nbr'] or 0.0
            else:
                tmp[item['sale_order_id']]['total'] += item['nbr'] or 0.0
#                 if item['procurement_state'] == 'done' or item['move_state'] == 'done':
                if  item['move_state'] == 'done':
                    tmp[item['sale_order_id']]['picked'] += item['nbr'] or 0.0
 
        for order in self.browse(cr, uid, ids, context=context):
            if order.shipped:
                res[order.id] = 100.0
            else:
                res[order.id] = tmp[order.id]['total'] and (100.0 * tmp[order.id]['picked'] / tmp[order.id]['total']) or 0.0
        return res  

    _columns = {
        'picked_rate': fields.function(_picked_rate, method=True, string='Picked', type='float'),
}

then and override the sale.order.tree view and add:

<field name="picked_rate" widget="progressbar" string="Shipped"/>

1
Imagine profil
Abandonează
Imagine profil
Zbik
Cel mai bun răspuns

The field picked_rate no longer exists in v8.

0
Imagine profil
Abandonează
Rachid
Autor

yes I know how to add it ?

Zbik

It is rather difficult with a new WMS system.

Imagine profil
Emad Jaddo
Cel mai bun răspuns

Where exactly do you add this code to add this field?

Just a beginner here so please give some details.

0
Imagine profil
Abandonează
Rachid
Autor

create new model or you can add the to the sale modules

Emad Jaddo

I can define the variable in the sales model. I tried all field type, but I cannot find any that allow to input the above function. Can someone give a more detailed way to achieve this?

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

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

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
Automatic stock update after a sale
stock sales
Imagine profil
Imagine profil
Imagine profil
2
aug. 25
2684
pass value from sale.order.line to stock.move in odoo 16 Rezolvat
stock sales
Imagine profil
Imagine profil
1
mai 25
2883
Stock update Rezolvat
stock sales
Imagine profil
Imagine profil
1
dec. 24
8478
Edit Sales Order after a delivery has been done Rezolvat
sales delivery
Imagine profil
Imagine profil
1
mai 23
6833
Delivery Disable?
stock delivery
Imagine profil
Imagine profil
1
iun. 22
5127
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة 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 este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

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