Se rendre au contenu
Odoo Menu
  • Se connecter
  • Essai gratuit
  • Applications
    Finance
    • Comptabilité
    • Facturation
    • Notes de frais
    • Feuilles de calcul (BI)
    • Documents
    • Signature
    Ventes
    • CRM
    • Ventes
    • PdV Boutique
    • PdV Restaurant
    • Abonnements
    • Location
    Sites web
    • Site Web
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Chaîne d'approvisionnement
    • Inventaire
    • Fabrication
    • PLM
    • Achats
    • Maintenance
    • Qualité
    Ressources Humaines
    • Employés
    • Recrutement
    • Congés
    • Évaluations
    • Recommandations
    • Parc automobile
    Marketing
    • Marketing Social
    • E-mail Marketing
    • SMS Marketing
    • Événements
    • Marketing Automation
    • Sondages
    Services
    • Projet
    • Feuilles de temps
    • Services sur Site
    • Assistance
    • Planification
    • Rendez-vous
    Productivité
    • Discussion
    • Intelligence artificielle
    • Internet des Objets
    • VoIP
    • Connaissances
    • WhatsApp
    Applications tierces Odoo Studio Plateforme Cloud d'Odoo
  • Industries
    Commerce de détail
    • Librairie
    • Magasin de vêtements
    • Magasin de meubles
    • Supermarché
    • Quincaillerie
    • Magasin de jouets
    Restauration & Hôtellerie
    • Bar et Pub
    • Restaurant
    • Fast-food
    • Maison d’hôtes
    • Distributeur de boissons
    • Hôtel
    Immobilier
    • Agence immobilière
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consultance
    • Cabinet d'expertise comptable
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Métal
    • Meubles
    • Alimentation
    • Brasserie
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Commerce
    • Homme à tout faire
    • Matériel informatique & support
    • Systèmes photovoltaïques
    • Cordonnier
    • Services de nettoyage
    • Services CVC
    Autres
    • Organisation à but non lucratif
    • Agence environnementale
    • Location de panneaux d'affichage
    • Photographie
    • Leasing de vélos
    • Revendeur de logiciel
    Parcourir toutes les industriesInauguration Odoo Lyon
  • Communauté
    Apprenez
    • Tutoriels
    • Documentation
    • Certifications
    • Formation
    • Blog
    • Podcast
    Renforcer l'éducation
    • Programme éducatif
    • Business Game Scale-Up!
    • Rendez-nous visite
    Obtenir le logiciel
    • Téléchargement
    • Comparez les éditions
    • Versions
    Collaborer
    • Github
    • Forum
    • Événements
    • Traductions
    • Devenir partenaire
    • Services pour partenaires
    • Enregistrer votre cabinet comptable
    Nos Services
    • Trouver un partenaire
    • Trouver un comptable
    • Rencontrer un conseiller
    • Services de mise en œuvre
    • Références clients
    • Assistance
    • Mises à niveau
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obtenir une démonstration
  • Tarification
  • Aide
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Aide

Report Customization

S'inscrire

Recevez une notification lorsqu'il y a de l'activité sur ce poste

Cette question a été signalée
manufacturingtraceabilityCustomization
2 Réponses
1506 Vues
Avatar
Vashmitha V

Hello there,


I have added a custom field named "Reference lot/serial" in MO


that field needs to be added to the traceability report,



Add that custom field as a separate column in this report.

How can I add this? Is there any separate model for this?

If there is any idea, kindly let me know. 

Note: Odoo16 e+


Thank you!

-1
Avatar
Ignorer
Avatar
Vashmitha V
Auteur Meilleure réponse

 NOTE: The "ref_lot_serial_number" field is added in stock_move

models/traceability_report.py

from odoo import models, api

class MrpStockReport(models.TransientModel):
_inherit = 'stock.traceability.report'

def _make_dict_move(self, level, parent_id, move_line, unfoldable=False):

result = super()._make_dict_move(level, parent_id, move_line, unfoldable)

ref_lot_serial = move_line.move_id.ref_lot_serial_number if move_line.move_id.ref_lot_serial_number else ''

print(f"level {level} parent_id {parent_id} move_line {move_line} ref_lot_serial {ref_lot_serial}")

for rec in result:
rec['ref_lot_serial_number'] = ref_lot_serial

print(f"result {result}")
return result

@api.model
def _final_vals_to_lines(self, final_vals, level):

lines = super()._final_vals_to_lines(final_vals, level)

for line in lines:
line['ref_lot_serial_number'] = ''

matching = next((f for f in final_vals if f['model_id'] == line['model_id']), None)
if matching and 'ref_lot_serial_number' in matching:
line['ref_lot_serial_number'] = matching['ref_lot_serial_number']

line['columns'].insert(4,line['ref_lot_serial_number'])

return lines

views/traceability_report.xml

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="inherit_report_stock_inventory" inherit_id="stock.report_stock_inventory">
<xpath expr="//thead/tr[@class='o_report_header']/th[contains(., 'Lot/Serial #')]" position="after">
<th class="o_report_line_header">Ref Lot/Serial</th>
</xpath>
</template>

<template id="inherit_report_stock_body_print" inherit_id="stock.report_stock_body_print">
<xpath expr="//thead/tr[@class='o_report_header']/th[contains(., 'Lot/Serial #')]" position="after">
<th class="o_report_line_header">Ref Lot/Serial</th>
</xpath>
</template>
</odoo>


the result:


0
Avatar
Ignorer
Avatar
D Enterprise
Meilleure réponse

Hii,

Here is custom model please try this

Python: Add Custom Field
you will already add

XML: Extend Traceability Report Template

In your custom module (views/report_traceability_line_inherit.xml), use the following code:

<odoo> <!-- Inherit the QWeb template used for the traceability report --> <template id="report_traceability_line_inherit_ref_lot" inherit_id="stock.report_traceability_line"> <!-- Add new column header --> <xpath expr="//thead/tr" position="inside"> <th>Reference Lot/Serial</th> </xpath> <!-- Add new column data --> <xpath expr="//tbody/tr" position="inside"> <td> <t t-esc="line.reference_lot_serial or ''"/> </td> </xpath> </template> </odoo>

__manifest__.py

Ensure the view is loaded in your manifest:


'data': [ 'views/report_traceability_line_inherit.xml', ],

i hope it is usefull

0
Avatar
Ignorer
Vashmitha V
Auteur

Hello there,
Thanks for you reply, I customized it yesterday

Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !

Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !

S'inscrire
Publications associées Réponses Vues Activité
You should provide a lot for the final product
manufacturing traceability
Avatar
0
nov. 17
4643
Product with serial numbers have batch number. Should we track batch number with product attributes?
manufacturing attributes traceability
Avatar
0
déc. 17
6607
Serial number tracking across multiple MO's/Repairs
manufacturing repair traceability Odoo16
Avatar
0
oct. 24
2362
How To list Lot/Serial Number from a specific product?
manufacturing lot serial_number traceability
Avatar
0
juin 17
10090
How to make Odoo schedule manufacturing in parallel?
manufacturing
Avatar
Avatar
1
mai 26
1675
Communauté
  • Tutoriels
  • Documentation
  • Forum
Open Source
  • Téléchargement
  • Github
  • Runbot
  • Traductions
Services
  • Hébergement Odoo.sh
  • Assistance
  • Migration
  • Développements personnalisés
  • Éducation
  • Trouver un comptable
  • Trouver un partenaire
  • Devenir partenaire
À propos
  • Notre société
  • Actifs de la marque
  • Contactez-nous
  • Emplois
  • Événements
  • Podcast
  • Blog
  • Clients
  • Informations légales • Confidentialité
  • Sécurité.
الْعَرَبيّة 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 Svenska ภาษาไทย Türkçe українська Tiếng Việt

Odoo est une suite d'applications open source couvrant tous les besoins de votre entreprise : CRM, eCommerce, Comptabilité, Inventaire, Point de Vente, Gestion de Projet, etc.

Le positionnement unique d'Odoo est d'être à la fois très facile à utiliser et totalement intégré.

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