Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Estate Managament
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Iní
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

assing the value from custom field in products to other one custom field in the sale order form using custom modules

Odoberať

Get notified when there's activity on this post

This question has been flagged
valuesassigningcustomfield
1 Odpoveď
4809 Zobrazenia
Avatar
Alfa y Omega Pachuca

Code for custom module for product.template:

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

from openerp import models, fields, api

class myfieldinproduct(models.Model):

_inherit = 'product.template'

#Add custom field "reg_model"

reg_model = fields.Char('Model', default='NL-XXXX-XXX')

....

My code for custom module for sale.order:

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

from openerp import models, fields, api

class myfieldinsaleorder(models.Model):

_inherit = 'sale.order'

#Add custom field "reg_model"

reg_modelinsaleorder = fields.Char('Model', default='NL-XXXX-XXX')

In this point how i can get the value of "reg_model" from product.template custom module (myfieldinproduct) and assing to reg_modelinsaleorder

....

Example:

in produc.template have a custom field "mycolor"

in sale.order have a custom field "hiscolor"

hiscolor = mycolor some thing like that.

Thank you.



0
Avatar
Zrušiť
Avatar
Qutechs, Ahmed M.Elmubarak
Best Answer

Hello,

I just don't understand something: that is the sale order can contains several lines with products ! it'll be more logical if you added your custom field to sale order line rather than the sale order.

Usually to fetch some values you can use onchange method, or make the fields related.

You can check how the system fetch the product's information in the sale order line in this method So most probably you'll need to override this function ...

Hope this could help

0
Avatar
Zrušiť
Alfa y Omega Pachuca
Autor

for example i need know how many products in budgets (quotations) are pink, how many products are blue... For example in products for store values i add several custom fields for computers like product_ memory_capacity, product_cpu_speed, product_hdd_capacity because i need to see this values in listview(treeeview) like list prices... In the case of the sale order to store values i will add the same fields like salorder_memory_capacity, saleorder_cpu_speed, saleorder_hdd_capacity BECAUSE i need to make a filter in listview (treeview) to know how many computer in salorder_ memory_capacity = 8GB, or 4 GB... or saleorder_cpu_speed = 2.7GHz or 3.0 GHz... And also In this point when i create a new budgets (quotations) i need to fill this values with hand, and i will like to get default values from the current product in sale order line because maybe just the memory capacity was changed. And yes, i use just one product for every budgets (quotations) in sale order line, of course i do not sell computers.

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

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

Registrácia
Related Posts Replies Zobrazenia Aktivita
Task Assignment from the website
assigning
Avatar
0
júl 22
2079
Import product attributes/values containing a comma
values importing
Avatar
Avatar
2
apr 25
1974
Importing Leads into Odoo CRM
import assigning
Avatar
Avatar
2
feb 24
2113
Missing context references on my crm
crm customfield
Avatar
0
feb 24
1938
How to add Custom Boolean fields on the Product Page
product customfield
Avatar
Avatar
Avatar
2
okt 23
3914
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة 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 je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

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