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

Where can I find list of available icons

Odebírat

Get notified when there's activity on this post

This question has been flagged
7 Odpovědi
41220 Zobrazení
Avatar
Clément THOMAS

Hello,

I'm looking for list of available icons particulary for buttons in GTK for 6.0 version.

I've find the list of them with this command (linux only) :

cd path_of_openerp_addons

find -name *.xml | xargs grep "icon=\"" | awk -F "icon=\"" '{print $2}' | cut -d"\"" -f1 | awk '{if(x[$0] != "") next ; print $0 ; x[$0]=$0}' | sort

but I'm looking for official list,

thanks.

1
Avatar
Zrušit
Avatar
Hannes Smit
Nejlepší odpověď

Example to look at:

You can check http://neynt.readthedocs.org/en/latest/stock.html

Open folder with thumbnails

web/7.0/addons/web/static/src/img/icons

Render a html view:

Locally you can build up a HTML view with a script like this (or use a remote website..):

# this is just an ugly start...
location = "http://localhost:8069/web/static/src/img/icons/%s.png"
icon_list = ['STOCK_ABOUT', 'STOCK_ADD', 'STOCK_APPLY', ] # etc etc
for icon in icon_list:
    print "<img src='%s'/>" % (location % icon)

The list: (for the googlers..)

In openerp 7 this seems to be currently:

'STOCK_ABOUT',
'STOCK_ADD',
'STOCK_APPLY',
'STOCK_BOLD',
'STOCK_CANCEL',
'STOCK_CDROM',
'STOCK_CLEAR',
'STOCK_CLOSE',
'STOCK_COLOR_PICKER',
'STOCK_CONNECT',
'STOCK_CONVERT',
'STOCK_COPY',
'STOCK_CUT',
'STOCK_DELETE',
'STOCK_DIALOG_AUTHENTICATION',
'STOCK_DIALOG_ERROR',
'STOCK_DIALOG_INFO',
'STOCK_DIALOG_QUESTION',
'STOCK_DIALOG_WARNING',
'STOCK_DIRECTORY',
'STOCK_DISCONNECT',
'STOCK_DND',
'STOCK_DND_MULTIPLE',
'STOCK_EDIT',
'STOCK_EXECUTE',
'STOCK_FILE',
'STOCK_FIND',
'STOCK_FIND_AND_REPLACE',
'STOCK_FLOPPY',
'STOCK_GOTO_BOTTOM',
'STOCK_GOTO_FIRST',
'STOCK_GOTO_LAST',
'STOCK_GOTO_TOP',
'STOCK_GO_BACK',
'STOCK_GO_DOWN',
'STOCK_GO_FORWARD',
'STOCK_GO_UP',
'STOCK_HARDDISK',
'STOCK_HELP',
'STOCK_HOME',
'STOCK_INDENT',
'STOCK_INDEX',
'STOCK_ITALIC',
'STOCK_JUMP_TO',
'STOCK_JUSTIFY_CENTER',
'STOCK_JUSTIFY_FILL',
'STOCK_JUSTIFY_LEFT',
'STOCK_JUSTIFY_RIGHT',
'STOCK_MEDIA_FORWARD',
'STOCK_MEDIA_NEXT',
'STOCK_MEDIA_PAUSE',
'STOCK_MEDIA_PLAY',
'STOCK_MEDIA_PREVIOUS',
'STOCK_MEDIA_RECORD',
'STOCK_MEDIA_REWIND',
'STOCK_MEDIA_STOP',
'STOCK_MISSING_IMAGE',
'STOCK_NETWORK',
'STOCK_NEW',
'STOCK_NO',
'STOCK_OK',
'STOCK_OPEN',
'STOCK_PASTE',
'STOCK_PREFERENCES',
'STOCK_PRINT',
'STOCK_PRINT_PREVIEW',
'STOCK_PROPERTIES',
'STOCK_QUIT',
'STOCK_REDO',
'STOCK_REFRESH',
'STOCK_REMOVE',
'STOCK_REVERT_TO_SAVED',
'STOCK_SAVE',
'STOCK_SAVE_AS',
'STOCK_SELECT_COLOR',
'STOCK_SELECT_FONT',
'STOCK_SORT_ASCENDING',
'STOCK_SORT_DESCENDING',
'STOCK_SPELL_CHECK',
'STOCK_STOP',
'STOCK_STRIKETHROUGH',
'STOCK_UNDELETE',
'STOCK_UNDERLINE',
'STOCK_UNDO',
'STOCK_UNINDENT',
'STOCK_YES',
'STOCK_ZOOM_100',
'STOCK_ZOOM_FIT',
'STOCK_ZOOM_IN',
'STOCK_ZOOM_OUT',
'terp-account',
'terp-crm',
'terp-mrp',
'terp-product',
'terp-purchase',
'terp-sale',
'terp-tools',
'terp-administration',
'terp-hr',
'terp-partner',
'terp-project',
'terp-report',
'terp-stock',
'terp-calendar',
'terp-graph',
'terp-check',
'terp-go-month',
'terp-go-year',
'terp-go-today',
'terp-document-new',
'terp-camera_test',
'terp-emblem-important',
'terp-gtk-media-pause',
'terp-gtk-stop',
'terp-gnome-cpu-frequency-applet+',
'terp-dialog-close',
'terp-gtk-jump-to-rtl',
'terp-gtk-jump-to-ltr',
'terp-accessories-archiver',
'terp-stock_align_left_24',
'terp-stock_effects-object-colorize',
'terp-go-home',
'terp-gtk-go-back-rtl',
'terp-gtk-go-back-ltr',
'terp-personal',
'terp-personal-',
'terp-personal+',
'terp-accessories-archiver-minus',
'terp-accessories-archiver+',
'terp-stock_symbol-selection',
'terp-call-start',
'terp-dolar',
'terp-face-plain',
'terp-folder-blue',
'terp-folder-green',
'terp-folder-orange',
'terp-folder-yellow',
'terp-gdu-smart-failing',
'terp-go-week',
'terp-gtk-select-all',
'terp-locked',
'terp-mail-forward',
'terp-mail-message-new',
'terp-mail-replied',
'terp-rating-rated',
'terp-stage',
'terp-stock_format-scientific',
'terp-dolar_ok!',
'terp-idea',
'terp-stock_format-default',
'terp-mail-',
'terp-mail_delete'
5
Avatar
Zrušit
Hannes Smit

http://bazaar.launchpad.net/~openerp/openerp-web/7.0/files/head:/addons/web/static/src/img/icons/

Avatar
Francesco OpenCode
Nejlepší odpověď

Go to the file openerp/server/bin/tools/misc.py and search the line number 1158. You can find all the icon supported by openERP.

3
Avatar
Zrušit
Clément THOMAS
Autor

Thanks, I also like to see icons with their codes. Where are they ?!

Avatar
jamesbale
Nejlepší odpověď

In version 7

server/openerp/tools/misc.py

line no 605

2
Avatar
Zrušit
Francesco OpenCode

He seeks version 6.0 information....;) Thanks for your answer. I think help other people...:)

Avatar
Osmani
Nejlepší odpověď

In version 8 : \openerp\tools\misc.py line: 653

0
Avatar
Zrušit
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