Zum Inhalt springen
Odoo Menü
  • Anmelden
  • Jetzt gratis testen
  • Apps
    Finanzen
    • Buchhaltung
    • Rechnungsstellung
    • Spesenabrechnung
    • Tabellenkalkulation (BI)
    • Dokumente
    • E-Signatur
    Vertrieb
    • CRM
    • Vertrieb
    • Kassensystem – Shop
    • Kassensystem – Restaurant
    • Abonnements
    • Vermietung
    Websites
    • Website-Builder
    • E-Commerce
    • Blog
    • Forum
    • Livechat
    • E-Learning
    Lieferkette
    • Lager
    • Fertigung
    • PLM
    • Einkauf
    • Wartung
    • Qualität
    Personalwesen
    • Mitarbeiter
    • Personalbeschaffung
    • Abwesenheiten
    • Mitarbeiterbeurteilung
    • Personalempfehlungen
    • Fuhrpark
    Marketing
    • Social Marketing
    • E-Mail-Marketing
    • SMS-Marketing
    • Veranstaltungen
    • Marketing-Automatisierung
    • Umfragen
    Dienstleistungen
    • Projekte
    • Zeiterfassung
    • Außendienst
    • Kundendienst
    • Planung
    • Termine
    Produktivität
    • Dialog
    • Genehmigungen
    • IoT
    • VoIP
    • Wissensdatenbank
    • WhatsApp
    Apps von Drittanbietern Odoo Studio Odoo Cloud-Plattform
  • Branchen
    Einzelhandel
    • Buchladen
    • Kleidergeschäft
    • Möbelhaus
    • Lebensmittelgeschäft
    • Baumarkt
    • Spielwarengeschäft
    Essen & Gastgewerbe
    • Bar und Kneipe
    • Restaurant
    • Fast Food
    • Gästehaus
    • Getränkehändler
    • Hotel
    Immobilien
    • Immobilienagentur
    • Architekturbüro
    • Baugewerbe
    • Immobilienverwaltung
    • Gartenarbeit
    • Eigentümervereinigung
    Beratung
    • Buchhaltungsfirma
    • Odoo-Partner
    • Marketingagentur
    • Anwaltskanzlei
    • Talentakquise
    • Prüfung & Zertifizierung
    Fertigung
    • Textil
    • Metall
    • Möbel
    • Speisen
    • Brauerei
    • Firmengeschenke
    Gesundheit & Fitness
    • Sportklub
    • Brillengeschäft
    • Fitnessstudio
    • Therapeut
    • Apotheke
    • Friseursalon
    Handel
    • Handyman
    • IT-Hardware & -Support
    • Solarenergiesysteme
    • Schuster
    • Reinigungsdienstleistungen
    • HLK-Dienstleistungen
    Sonstiges
    • Gemeinnützige Organisation
    • Umweltschutzagentur
    • Plakatwandvermietung
    • Fotostudio
    • Fahrrad-Leasing
    • Software-Händler
    Alle Branchen ansehen
  • Community
    Lernen
    • Tutorials
    • Dokumentation
    • Zertifizierungen
    • Schulung
    • Blog
    • Podcast
    Bildung fördern
    • Bildungsprogramm
    • Scale-Up! Planspiel
    • Odoo besuchen
    Software anfragen
    • Herunterladen
    • Editionen vergleichen
    • Releases
    Zusammenarbeiten
    • Github
    • Forum
    • Veranstaltungen
    • Übersetzungen
    • Partner werden
    • Dienstleistungen für Partner
    • Buchhaltungsfirma registrieren
    Services anfragen
    • Partner finden
    • Buchhalter finden
    • Einen Experten treffen
    • Implementierungsservices
    • Kundenreferenzen
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Eine Demo erhalten
  • Preiskalkulation
  • Hilfe

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

  • CRM
  • e-Commerce
  • Buchhaltung
  • Lager
  • PoS
  • Projekte
  • MRP
All apps
Sie müssen registriert sein, um mit der Community zu interagieren.
Alle Beiträge Personen Abzeichen
Stichwörter (Alle anzeigen)
odoo accounting v14 pos v15
Über dieses Forum
Sie müssen registriert sein, um mit der Community zu interagieren.
Alle Beiträge Personen Abzeichen
Stichwörter (Alle anzeigen)
odoo accounting v14 pos v15
Über dieses Forum
Hilfe

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

Abonnieren

Erhalten Sie eine Benachrichtigung, wenn es eine Aktivität zu diesem Beitrag gibt

Diese Frage wurde gekennzeichnet
1 Antworten
2943 Ansichten
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
Verwerfen
Niyas Raphy (Walnut Software Solutions)

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

Avatar
Ray Carnes (ray)
Beste Antwort

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
Verwerfen
Perry
Autor

Hi Ray,

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

Diskutieren Sie gerne? Treten Sie bei, statt nur zu lesen!

Erstellen Sie heute ein Konto, um exklusive Funktionen zu nutzen und mit unserer tollen Community zu interagieren!

Registrieren
Community
  • Tutorials
  • Dokumentation
  • Forum
Open Source
  • Herunterladen
  • Github
  • Runbot
  • Übersetzungen
Dienstleistungen
  • Odoo.sh-Hosting
  • Support
  • Upgrade
  • Individuelle Entwicklungen
  • Bildung
  • Buchhalter finden
  • Partner finden
  • Partner werden
Über uns
  • Unsere Firma
  • Markenwerte
  • Kontakt
  • Karriere
  • Veranstaltungen
  • Podcast
  • Blog
  • Kunden
  • Rechtliches • Datenschutz
  • Sicherheit
الْعَرَبيّة 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 ist eine Suite von Open-Source-Betriebsanwendungen, die alle Bedürfnisse Ihres Unternehmens abdecken: CRM, E-Commerce, Buchhaltung, Lager, Kassensystem, Projektmanagement etc.

Das einzigartige Wertversprechen von Odoo ist, dass es gleichzeitig sehr einfach zu bedienen und voll integriert ist.

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