Overslaan naar inhoud
Odoo Menu
  • Aanmelden
  • Probeer het gratis
  • Apps
    Financiën
    • Boekhouding
    • Facturatie
    • Onkosten
    • Spreadsheet (BI)
    • Documenten
    • Ondertekenen
    Verkoop
    • CRM
    • Verkoop
    • Kassasysteem winkel
    • Kassasysteem Restaurant
    • Abonnementen
    • Verhuur
    Websites
    • Websitebouwer
    • E-commerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Bevoorradingsketen
    • Voorraad
    • Productie
    • PLM
    • Inkoop
    • Onderhoud
    • Kwaliteit
    Personeelsbeheer
    • Werknemers
    • Werving & Selectie
    • Verlof
    • Evaluaties
    • Aanbevelingen
    • Wagenpark
    Marketing
    • Social media Marketing
    • E-mailmarketing
    • SMS Marketing
    • Evenementen
    • Marketingautomatisering
    • Enquêtes
    Diensten
    • Project
    • Urenstaten
    • Buitendienst
    • Helpdesk
    • Planning
    • Afspraken
    Productiviteit
    • Chat
    • Goedkeuringen
    • IoT
    • VoIP
    • Kennis
    • WhatsApp
    Apps van derden Odoo Studio Odoo Cloud Platform
  • Bedrijfstakken
    Detailhandel
    • Boekhandel
    • kledingwinkel
    • Meubelzaak
    • Supermarkt
    • Bouwmarkt
    • Speelgoedwinkel
    Food & Hospitality
    • Bar en Pub
    • Restaurant
    • Fastfood
    • Gastenverblijf
    • Drankenhandelaar
    • Hotel
    Vastgoed
    • Makelaarskantoor
    • Architectenbureau
    • Bouw
    • Vastgoedbeheer
    • Tuinieren
    • Vereniging van eigenaren
    Consulting
    • Accountantskantoor
    • Odoo Partner
    • Marketingbureau
    • Advocatenkantoor
    • Talentenwerving
    • Audit & Certificering
    Productie
    • Textiel
    • Metaal
    • Meubels
    • Eten
    • Brewery
    • Relatiegeschenken
    Gezondheid & Fitness
    • Sportclub
    • Opticien
    • Fitnesscentrum
    • Wellness-medewerkers
    • Apotheek
    • Kapper
    Trades
    • Klusjesman
    • IT-hardware & support
    • Zonne-energiesystemen
    • Schoenmaker
    • Schoonmaakdiensten
    • HVAC-diensten
    Andere
    • Non-profitorganisatie
    • Milieuagentschap
    • Verhuur van Billboards
    • Fotograaf
    • Fietsleasing
    • Softwareverkoper
    Browse all Industries
  • Community
    Leren
    • Tutorials
    • Documentatie
    • Certificeringen
    • Training
    • Blog
    • Podcast
    Versterk het onderwijs
    • Onderwijs- programma
    • Scale Up! Business Game
    • Bezoek Odoo
    Download de Software
    • Downloaden
    • Vergelijk edities
    • Releases
    Werk samen
    • Github
    • Forum
    • Evenementen
    • Vertalingen
    • Word een Partner
    • Services for Partners
    • Registreer je accountantskantoor
    Diensten
    • Vind een partner
    • Vind een boekhouder
    • Een adviseur ontmoeten
    • Implementatiediensten
    • Klantreferenties
    • Ondersteuning
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Vraag een demo aan
  • Prijzen
  • Help

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

  • CRM
  • e-Commerce
  • Boekhouding
  • Voorraad
  • PoS
  • Project
  • MRP
All apps
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Help

Custom Module Not Populating in Apps List

Inschrijven

Ontvang een bericht wanneer er activiteit is op deze post

Deze vraag is gerapporteerd
modulecustom
4 Antwoorden
9961 Weergaven
Avatar
Thomas Lowe

Hello all,


I have Odoo 13 Enterprise with minimal apps installed running locally on Windows 10 for development. 


I made my first custom module to change the appearance of the GUI.  I created and modified it with PyCharm, added it to the addons directory (C:\Program Files (x86)\Odoo 13.0e\server\odoo\addons), restarted the server, enabled developer mode, updated the apps list, and it doesn't appear.  I've done this many times as both a user and superuser with little changes here and there but it still will not appear.  I've added the manifest and init code, as well as the log event of the module update below.  


Thanks in advance for any help you can offer!


Tom


**Edited to add**  Yes, I have updated the apps list and removed the default apps filter many, many times. 


**Further edited to add** I also tried adding 'application': True to the manifest, even though it's not an application just to see if it made a difference - and it still doesn't show up.  


Any ideas?


__manifest__.py

# -*- encoding: utf-8 -*-

{
'name': "Theme Tom2",
'version': '0.1',
'category': 'Uncategorized',
'description': """
Module to override the default appearance of Odoo.
""",
'depends': ['web'],
'author': "Tom Lowe",
'website': 'https://www.clearwatersystems.com',
'data': [
'views/theme_tom2.xml',
],
'installable': True,
}

__init__.py

# -*- encoding: utf-8 -*-
from . import models

Log event

2020-10-01 17:54:47,168 8664 INFO tlowe123 werkzeug: 127.0.0.1 - - [01/Oct/2020 17:54:47] "POST /web/dataset/call_kw/base.module.update/default_get HTTP/1.1" 200 - 2 0.001 0.004

2020-10-01 17:54:47,536 8664 INFO tlowe123 werkzeug: 127.0.0.1 - - [01/Oct/2020 17:54:47] "POST /web/dataset/call_kw/ir.ui.view/check_access_rights HTTP/1.1" 200 - 1 0.001 0.004

2020-10-01 17:54:48,734 8664 INFO tlowe123 werkzeug: 127.0.0.1 - - [01/Oct/2020 17:54:48] "POST /web/dataset/call_kw/base.module.update/create HTTP/1.1" 200 - 3 0.007 0.016

2020-10-01 17:54:49,101 8664 INFO tlowe123 werkzeug: 127.0.0.1 - - [01/Oct/2020 17:54:49] "POST /web/dataset/call_kw/base.module.update/read HTTP/1.1" 200 - 2 0.002 0.003

2020-10-01 17:54:49,435 8664 INFO tlowe123 odoo.addons.base.models.ir_module: ALLOW access to module.update_list on [] to user tlowe@clearwatersytems.com #2 via 127.0.0.1 

2020-10-01 17:54:50,934 8664 INFO tlowe123 werkzeug: 127.0.0.1 - - [01/Oct/2020 17:54:50] "POST /web/dataset/call_button HTTP/1.1" 200 - 866 0.220 1.285

2020-10-01 17:54:51,250 8664 INFO tlowe123 werkzeug: 127.0.0.1 - - [01/Oct/2020 17:54:51] "POST /longpolling/poll HTTP/1.1" 200 - 8 0.007 50.032

2020-10-01 17:54:53,578 8664 INFO tlowe123 werkzeug: 127.0.0.1 - - [01/Oct/2020 17:54:53] "POST /web/dataset/search_read HTTP/1.1" 200 - 4 0.004 0.007






0
Avatar
Annuleer
Jainesh Shah(Aktiv Software)

Have you tried removing the app filter from the Apps ? or try adding "application ": True in the manifest file.

Sehrish

update your app list and than refresh the web page.

Avatar
Thomas Lowe
Auteur Beste antwoord

Not necessarily an answer, but I managed to move past this by copying all of the files into a new module.  I don't understand why the same files worked in one directory but not another, but as soon as I tried it the module appeared in the apps list.  I feel it may be related to running on Windows, I had nothing but issues.  I'm now running it on an Ubuntu VM and it works flawlessly.  Thanks for the suggestions.  

0
Avatar
Annuleer
Avatar
Manish Bohra
Beste antwoord

Hello,


Try to update your app list. after you can check.


Thanks


 

0
Avatar
Annuleer
Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!

Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!

Aanmelden
Gerelateerde posts Antwoorden Weergaven Activiteit
For Odoo hosted version, how would I upload a custom module? Opgelost
module upload custom
Avatar
Avatar
Avatar
Avatar
3
feb. 24
11561
importing custom module
module custom importing
Avatar
Avatar
1
nov. 23
3872
error while parsing inherit view
module xml custom
Avatar
Avatar
1
jun. 23
4368
Odoo14 Installing new custom module error
installation module custom
Avatar
0
feb. 23
3372
What is the best way to add Comments (to a webpage) and a Discussion Board (Forum?) to an Odoo website?
module custom discuss
Avatar
0
jan. 24
4437
Community
  • Tutorials
  • Documentatie
  • Forum
Open Source
  • Downloaden
  • Github
  • Runbot
  • Vertalingen
Diensten
  • Odoo.sh Hosting
  • Ondersteuning
  • Upgrade
  • Gepersonaliseerde ontwikkelingen
  • Onderwijs
  • Vind een boekhouder
  • Vind een partner
  • Word een Partner
Over ons
  • Ons bedrijf
  • Merkelementen
  • Neem contact met ons op
  • Vacatures
  • Evenementen
  • Podcast
  • Blog
  • Klanten
  • Juridisch • Privacy
  • Beveiliging
الْعَرَبيّة 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 is een suite van open source zakelijke apps die aan al je bedrijfsbehoeften voldoet: CRM, E-commerce, boekhouding, inventaris, kassasysteem, projectbeheer, enz.

Odoo's unieke waardepropositie is om tegelijkertijd zeer gebruiksvriendelijk en volledig geïntegreerd te zijn.

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