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

How to put a menu Icon in odoo 9?

Odoberať

Get notified when there's activity on this post

This question has been flagged
hrattendancemenuiconodoo9
3 Replies
12486 Zobrazenia
Avatar
Baintex Technologies S.L.

I want to put a menu icon for the hr_attendance addon.

I will explain the steps that i have done:

1. Create hr_attendance_extend an put it in addon_extra

2. Import the original addon. This is "__init__.py:

import hr_attendance


3. Create the css and put the icon. This is a piece of the file "static/src/css/slider.css":

...

.oe_systray .oe_attendance_signout {

float:right;

height: 32px;

width: 32px;

background: url(/hr_attendance_extend/static/src/img/emp-in32.png);

cursor: pointer;

}

...


4. Link the file with the addon. This is the file ''views/hr_attendance.xml":

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

<openerp>

<data>

<template id="assets_backend" name="hr_attendance assets" inherit_id="web.assets_backend">

<xpath expr="." position="inside">

  <link rel="stylesheet" href="/hr_attendance_extend/static/src/css/slider.css"/>

</xpath>

</template>

</data>

</openerp>


5. Put the new files in the new addon. This is part of the file "__openerp__.py":

{

...

'depends': ['hr_attendance'],

'data': [

'hr_attendance.xml',

'views/hr_attendance.xml',

],

'demo': [],

'test': [],

'installable': True,

'auto_install': False,

#web 

'qweb' : ["static/src/xml/attendance.xml"],

}


6. Put the container for the menu. This is the file ''static/src/xml/attendance.xml":

<template>

<t t-name="AttendanceSlider">

<li class="oe_attendance_status oe_attendance_nosigned" data-toggle="tooltip">

  <div class="oe_attendance_signout"></div>

</li>

</t>

</template>


In the original addon (hr_attendance) there is a function that it pushes the icon to the menu (I think). 

There is in the file static/src/js/attendance.js and that is the line in question:

SystrayMenu.Items.push(AttendanceSlider);

That's all.

I don't know if I am missing something.  The code of the icon appears in the html, but there is with 'style="display: none"'

1
Avatar
Zrušiť
Avatar
Baintex Technologies S.L.
Autor Best Answer

Giezel Esteves, thanks for the interest, but that doesn't fix anything.

I have an icon.png in the folder.


Nevertheless, I realized what was wrong.

The problem is that my current user is not an employee, and that's the reason of the "style=display: none;"
I assigned an employee to the user and now the icon appears.

1
Avatar
Zrušiť
Avatar
Jérôme Thériault
Best Answer

Since this shows up first in Google, I thought I'd add this answer.

Let's say you want to use your module icon as your main menu icon.

  1. Make sure this file exists: module_name/static/description/icon.png

  2. In the XML where you define your main menu, add the web_icon attribute:

    <menuitem name="My App" id="module_name.menu_root" web_icon="module_name,static/description/icon.png"/>
  3. Upgrade your module

0
Avatar
Zrušiť
Avatar
Giezel Esteves
Best Answer

just add your icon.png inside your description folder

module_name/static/description/icon.png

restart odoo-server

0
Avatar
Zrušiť
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
Biometric Integration on HR Attendance.
hr attendance biometric odoo9
Avatar
Avatar
Avatar
Avatar
7
mar 20
12571
Connect fingerprint devices to Odoo Solved
hr attendance
Avatar
Avatar
1
máj 25
2101
Allow employees to see their own attendances Solved
hr attendance
Avatar
Avatar
Avatar
Avatar
Avatar
6
jan 23
18390
odoo13: Button with function of capture image Solved
hr attendance
Avatar
Avatar
2
dec 22
5776
attendance link not coming on the above header
hr attendance
Avatar
0
dec 17
4417
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