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
    • Validations
    • 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
    • Épicerie
    • 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
    • Bricoleur
    • 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 industries
  • 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
    • Devenez 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

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

  • CRM
  • e-Commerce
  • Comptabilité
  • Inventaire
  • PoS
  • Projet
  • MRP
All apps
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

Help me create a many2one of products that are inside a source in a page in lines

S'inscrire

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

Cette question a été signalée
stock_pickingsale.order.lineproduct.productstock.move
5191 Vues
Avatar
Douglas Barbosa

Good afternoon,
I would like to create a model similar to the move_lines of stock.move (stock.picking) with some changes. I created a many2one field within the items_lines -> (page. Ex: <page string = "Initial Demand">) where I can choose the source, after choosing the source I would like to see next to the products in many2one that is Within the origin and next to the quantity according to the product that is in the request. Remembering that this model is new.

Can not do a domain for lack of necessary fields

My code:
Where i can not make it work:

   @api.one

    @api.depends('name')    

    def get_product(self):

        lines = self.env['sale.order.line'].search([('order_id','=',self.name.id)])

        for line in lines:

            product = line.product_id

        self.product_id = product 


        product_id = fields.Many2one('product.product', inverse='get_product')


My code all:

class stockentregaslines(models.Model):


    _name = 'stock.picking.entregas.lines'

    _description = 'Group Lines'

    _order = 'entregas_id, sequence, id'


    entregas_id = fields.Many2one('stock.picking.entregas', string=u'Nº Romaneio', required=True, ondelete='cascade', index=True, copy=False)

    sequence = fields.Integer(string='Sequence', default=10, index=True)

    name = fields.Many2one('sale.order', u'Saída', domain=lambda self: [('name', '=', self.env['stock.picking'].search([('state','=','assigned')]).mapped('origin'))])

    proceda = fields.Many2one('tabela.proceda', 'Ocorrência')


    @api.onchange('name')

    def get_out_entrega(self):

        for line in self:

            line.out_name = line.name.name

  

    out_name = fields.Char(string=u'Saída', compute='get_out_entrega')


    @api.one

    @api.depends('name')    

    def get_product(self):

        lines = self.env['sale.order.line'].search([('order_id','=',self.name.id)])

        for line in lines:

            product = line.product_id

        self.product_id = product 


        product_id = fields.Many2one('product.product', inverse='get_product')


    @api.one

    @api.depends('name')

    def get_qty_pedido(self):

        lines = self.env['sale.order.line'].search([('order_id','=',self.name.id)])

        qty = 0

        prod = None 

        for line in lines:

            qty = line.product_uom_qty

        self.produtos_qty = qty


    produtos_qty = fields.Char(string='Quantidade', compute='get_qty_pedido', store=True)


    @api.one

    @api.depends('name')

    def get_partner_id(self):

        line = self.env['sale.order'].search([('name','=',self.out_name)])

        partner = 0

        cep = 0

        street = None

        number = None

        state = None

        for lines in line:

            partner = lines.partner_id.id

            cep = lines.partner_id.zip

            street = lines.partner_id.street

            number = lines.partner_id.number

            state = lines.partner_id.state_id.name

        self.partner_id = partner

        self.zip = cep

        self.rua = street

        self.numero = number

        self.estado = state

        

    partner_id = fields.Many2one('res.partner',string='Cliente', compute='get_partner_id',store=True)

    zip = fields.Char(string=u'CEP', compute='get_partner_id', store=True)

    rua = fields.Char(string=u'Rua', compute='get_partner_id', store=True)

    numero = fields.Char(compute='get_partner_id', store=True)

    estado = fields.Char(String=u'Estado', compute='get_partner_id', store=True)

    completo= fields.Char(string=u'Rua')


    @api.one

    @api.depends('name')

    @api.constrains('name') 

    def _change_rua_name(self):

        if self.rua:

            self.completo = self.rua + ', ' + str(self.numero)

 

    # @api.multi

    # @api.depends('origem')

    # def method_validar(self):

    # self.env['stock.picking'].search([('origin','=', self.origem)]).do_new_transfer()

0
Avatar
Ignorer
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é
Invoice Stock Move Résolu
stock_picking stock.move
Avatar
Avatar
1
sept. 23
4838
cantidad realizada
stock_picking stock.move
Avatar
0
mars 23
2610
unable to create a stock back order confirmation
stock_picking stock.move
Avatar
0
mars 18
3727
Know if Stock Picking is IN or OUT Résolu
stock_picking stock.move 17
Avatar
Avatar
1
août 24
3149
how to send value from sale.order.line to delivery order stock.move
sale.order.line stock.move odoo12
Avatar
Avatar
Avatar
Avatar
3
mai 20
12850
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
  • Devenez 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 ภาษาไทย 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