Přejít na obsah
Odoo Menu
  • Přihlásit se
  • Vyzkoušejte zdarma
  • Aplikace
    Finance
    • Účetnictví
    • Fakturace
    • Výdaje
    • Spreadsheet (BI)
    • Dokumenty
    • Podpisy
    Prodej
    • CRM
    • Prodej
    • POS Obchod
    • POS Restaurace
    • Předplatné
    • Pronájem
    Webové stránky
    • Webové stránky
    • E-shop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Dodavatelský řetězec
    • Sklad
    • Výroba
    • PLM
    • Nákup
    • Údržba
    • Kvalita
    Lidské zdroje
    • Zaměstnanci
    • Nábor
    • Volno
    • Hodnocení zaměstnanců
    • Doporučení
    • Vozový park
    Marketing
    • Marketing sociálních sítí
    • Emailový marketing
    • SMS Marketing
    • Události
    • Marketingová automatizace
    • Dotazníky
    Služby
    • Projekt
    • Časové výkazy
    • Práce v terénu
    • Helpdesk
    • Plánování
    • Schůzky
    Produktivita
    • Diskuze
    • Schvalování
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Aplikace třetích stran Odoo Studio Odoo cloudová platforma
  • Branže
    Maloobchod
    • Knihkupectví
    • Obchod s oblečením
    • Obchod s nábytkem
    • Potraviny
    • Obchod s hardwarem
    • Hračkářství
    Jídlo a pohostinství
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Penzion
    • Distributor nápojů
    • Hotel
    Nemovitost
    • Realitní kancelář
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Poradenství
    • Účetní firma
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textil
    • Kov
    • Nábytek
    • Jídlo
    • Pivovar
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Transakce
    • Údržbář
    • Podpora IT & hardware
    • Systémy solární energie
    • Výrobce obuvi
    • Úklidové služby
    • Služby HVAC
    Ostatní
    • Nezisková organizace
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Procházet všechna odvětví
  • Komunita
    Edukační program
    • Tutoriály
    • Dokumentace
    • Certifikace
    • Vzdělávání
    • Blog
    • Podcast
    Podpora vzdělávání
    • Vzdělávací program
    • Scale Up! Hra na firmu
    • Navštivte Odoo
    Získat software
    • Stáhnout
    • Porovnejte edice
    • Verze
    Spolupráce
    • Github
    • Fórum
    • Události
    • Překlady
    • Stát se partnerem
    • Služby pro partnery
    • Registrujte svou účetní firmu
    Získat služby
    • Najít partnera
    • Najít účetní
    • Setkejte se s poradcem
    • Implementační služby
    • Zákaznické reference
    • Podpora
    • Upgrady
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dohodnout demo
  • Ceník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účetnictví
  • Sklad
  • PoS
  • Projekty
  • MRP
All apps
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
Pomoc

"pricelist" does not show up on view of customer after automated installation

Odebírat

Get notified when there's activity on this post

This question has been flagged
1 Odpovědět
2946 Zobrazení
Avatar
Perry

Please help on this issue, thanks in advance!

A) What I am looking for:

enable feature "Pricelists" defined by Odoo itself in automation code at INSTALL time so that the field "Pricelist" can be seen on tab 'Sales & Purchase' of page of any customer after the installation.


B) What I saw:

after installation of a customized module, 

1) I saw "Pricelists" is ENABLED on page "Settings -> Sales -> Pricing"

2) I did NOT see the field "pricelist" on the page "Sales -> Customers -> My Company(I created) -> Sales & Purchase"


C) What I expect:

I can see the field "pricelist" on the page "Sales -> Customers -> My Company(I created) -> Sales & Purchase" as well after AUTOMATED installation at B)-2).

Comparing with manual action: If I enable the checkbox of "Pricelists" on page "Settings -> Sales -> Pricing" MANUALLY, I can see the field "pricelist" afterwards.


D) What I did (reproducing steps):

1) create a new customized module 'Module_A';

2) in 'Module_A', create a new model which inherites 'res.config.settings' to set 'product.group_product_pricelist' with 'True' in 'ir.config_parameter';

- create a xml file and write code below

    <function model="res.config.settings" name="config_flsp_global_features_for_install" />

- define method "config_flsp_global_features_for_install" in the model to set the value when to install 'Module_A'

class ResConfigSettings(models.TransientModel):

    _inherit = 'res.config.settings'

    @api.model

    def config_flsp_global_features_for_install(self):

        # update ir.config_parameter to set the value globally

        self.env['ir.config_parameter'].sudo().set_param('product.group_product_pricelist', True)

        # update the field value in res.config.settings

        self.group_product_pricelist = True


E) My analysis:

- I am sure the code in D)-2) was run as "Pricelists" was ENABLED on page "Settings -> Sales -> Pricing";

- I also tried method get_values() and set_values() in model 'res.config.settings', but it did not work;

- I think the value has been set in database, even in the model field 'group_product_pricelist' at running time because I set it in code, but the problem is that the view of customer(res.partner) does not refer its updated value and the field "Pricelist" is missing; 

- definition of the field "Pricelist" on customer's view in addons\product\views\res_partner_views.xml

<field name="property_product_pricelist" groups="product.group_product_pricelist" attrs="{'invisible': [('is_company','=',False),('parent_id','!=',False)]}"/>

- in my manual test, the value set is initialized on client view, so in addition to the value update in model and in database, there must be some actions done at the same time to refresh customer(res.partner)'s view with the new value, which I do not know.

0
Avatar
Zrušit
Niyas Raphy (Walnut Software Solutions)

Will this help? https://www.youtube.com/watch?v=mCwg-X3NfjQ

Avatar
Ray Carnes (ray)
Nejlepší odpověď

I would model your use of updating res.config.settings based on what we do at https://github.com/odoo/odoo/blob/14.0/addons/base_setup/tests/test_res_config.py#L40

ResConfig = self.env['res.config.settings']
default_values = ResConfig.default_get(list(ResConfig.fields_get()))
default_values.update({'group_product_pricelist': True})
ResConfig.create(default_values).execute()

You would leverage this code inside a Python function called via the post_init_hook attribute in the manifest, which would instruct Odoo to run a function that you put in __init__.py after the rest of your module is installed.

See https://www.odoo.com/documentation/14.0/developer/reference/module.html?highlight=post_init_hook#module-manifests and https://github.com/odoo/enterprise/blob/14.0/website_helpdesk_form/__init__.py for more information.

0
Avatar
Zrušit
Perry
Autor

Hi Ray,

It works in my case, you saved my day, thanks so much for your help!

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

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

Přihlásit se
Komunita
  • Tutoriály
  • Dokumentace
  • Fórum
Open Source
  • Stáhnout
  • Github
  • Runbot
  • Překlady
Služby
  • Odoo.sh hostování
  • Podpora
  • Upgrade
  • Nestandardní vývoj
  • Edukační program
  • Najít účetní
  • Najít partnera
  • Stát se partnerem
O nás
  • Naše společnost
  • Podklady značky
  • Kontakujte nás
  • Práce
  • Události
  • Podcast
  • Blog
  • Zákazníci
  • Právní dokumenty • Soukromí
  • Zabezpečení
الْعَرَبيّة 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 balíček open-source aplikací, které pokrývají všechny potřeby vaší společnosti: CRM, e-shop, účetnictví, sklady, kasy, projektové řízení a další.

Unikátní nabídka od Odoo poskytuje velmi jednoduché uživatelské rozhraní a vše je integrované na jednom místě.

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