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

Related field and compute

Abonare

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

Această întrebare a fost marcată
related_fields
1 Răspunde
10272 Vizualizări
Imagine profil
Eder

right now i am using a module from github, that creates a page in product that lists all the "prices" from product.pricelist of the product. What i want, is to take the "price_list" of the product, and substract the discount in each line.


import math

import re

import logging

import openerp.addons.decimal_precision as dp

#from _common import rounding

from openerp import tools

from openerp.osv import osv, fields

from openerp.tools.translate import _

_logger = logging.getLogger(__name__) # Need for message in console.

class product_template(osv.osv):

_name = 'product.template'

_inherit = 'product.template'

_columns = {

# For display price in product.

'prices_ids': fields.one2many('product.pricelist.item', 'product_id', 'Supplier'),

'price_bas': fields.Char('Display Name', related='price_list.price.bas',store=True),

}

product_template()

class product_pricelist_item(osv.osv):

_name = 'product.pricelist.item'

_inherit = 'product.pricelist.item'

_columns = {

}

product_pricelist_item()


Bold, added by me, making some mistakes. I couldnt get to the point of showing the "price_list" = standard price of the product, into the new price page, yet.


This is the xml.


<?xml version="1.0" encoding="utf-8"?>

<openerp>

<data>

<record id="price_list_tab_view" model="ir.ui.view">

<field name="name">product.template.product.form</field>

<field name="model">product.template</field>

<field name="type">form</field>

<field name="inherit_id" ref="product.product_template_form_view" />

<field name="arch" type="xml">

<xpath expr="/form/sheet/notebook" position="inside" version="7.0">

<page string="Prices" >

<group >

<field name="price.bas"/>

</group>

<group colspan="2" col="2">

<field name="prices_ids" nolabel="1" widget="one2many_list" >

<tree string="Price List">

<field name="price_version_id"/>

<field name="min_quantity"/>

<field name="price_surcharge" string="Descuento"/>

</tree>

</field>

</group>

</page>

</xpath>

</field>

</record>

<!-- it for posible add price from product -->

<record id="price_versionid_form_view" model="ir.ui.view">

<field name="name">product.pricelist.item.form</field>

<field name="model">product.pricelist.item</field>

<field name="type">form</field>

<field name="inherit_id" ref="product.product_pricelist_item_form_view" />

<field name="arch" type="xml">

<xpath expr="//field[@name='product_id']" position='before'>

<group col="4" string="Price version">

<field name="price_version_id"/>

</group>

</xpath>

</field>

</record>

</data>

</openerp>

0
Imagine profil
Abandonează
Imagine profil
Eder
Autor Cel mai bun răspuns

Update:


I finally managed to show the "list_price" as a column with the "price_surcharge" also, now i want to add a third column, with that subtract "list_price" - "price_surcharge" = third_column.

This is mas code so far:

# -*- coding: utf-8 -*-

#from osv import fields, osv

import math

import re

import logging

import openerp.addons.decimal_precision as dp

#from _common import rounding

from openerp import tools, models, fields, api

from openerp.osv import osv, fields

from openerp.tools.translate import _

_logger = logging.getLogger(__name__) # Need for message in console.

class product_pricelist_item(osv.osv):

_inherit = 'product.pricelist.item'

_columns = {

'list_price': fields.related('product_id', 'list_price', type='char', string='List Price', relation="product.template", store=False, readonly=True ),

}

product_pricelist_item()

class product_template(osv.osv):

_name = 'product.template'

_inherit = 'product.template'

_columns = {

# For display price in product.

'prices_ids': fields.one2many('product.pricelist.item', 'product_id', 'Supplier')

}

product_template()

0
Imagine profil
Abandonează
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
odoo 13 related field to a custom field not working
related_fields
Imagine profil
Imagine profil
2
apr. 23
6993
how can i add related field for the another model filed. i'm getting error TypeError: Model 'hr.employee' inherits from non-existing model 'hr.contract'.
related_fields
Imagine profil
Imagine profil
3
apr. 17
12339
How to create a related field from a custom field Rezolvat
related_fields
Imagine profil
Imagine profil
1
mai 16
9854
Problem with related field
related_fields
Imagine profil
0
mai 16
3954
v17: how to add related field in this scenario?
related_fields v17
Imagine profil
Imagine profil
1
ian. 24
3128
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