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í
    Food & Hospitality
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Guest House
    • Distributor nápojů
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Trades
    • Údržbář
    • IT hardware a podpora
    • Solar Energy Systems
    • Výrobce obuvi
    • Úklidové služby
    • HVAC Services
    Others
    • Nonprofit Organization
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Browse all Industries
  • 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
    • Services for Partners
    • 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

[Odoo v9] is there a way to have different logo on Web and POS receipt ticket ?

Odebírat

Get notified when there's activity on this post

This question has been flagged
posprintinglogoreceipts
4 Odpovědi
5683 Zobrazení
Avatar
Ev'Art Creativ

Hi :)

I would like to know if it's possible to have (with Odoo V9 community edition niglthly builds on Debian Jessy) different logo.

I would like to have a different logo printed on my pos ticket than the logo displayed on the web portal.

If someone have an idea it'll be nice, i'll read it carefully.

cheers.

Ev'Art

0
Avatar
Zrušit
Axel Mendoza

With web portal do you means on the website?

Avatar
Axel Mendoza
Nejlepší odpověď

For that you can do it with this changes installed in a module:

In a .py

from openerp import models, field

class ext_website(models.Model):
_inherit = "website"

website_image = fields.Binary("Logo Image")

class website_config_settings(models.TransientModel):
_inherit = 'website.config.settings'

website_image = fields.Binary(related='website_id.website_image')

In an .xml

<record id="solt_view_website_config_settings" model="ir.ui.view">
<field name="name">Website Soltein settings</field>
<field name="model">website.config.settings</field>
<field name="inherit_id" ref="website.view_website_config_settings"/> 
<field name="arch" type="xml">
<xpath expr="//div[@name='social_media']" position="before">
<div>
<group>
<field name="website_image"/>
</group>
</div>
</xpath>
</field>
</record>

<template id="layout_menu_header" inherit_id="website.layout_logo_show" name="Soltein Menu Header">
<xpath expr="//img[@src='/logo.png']" position="replace">
<img t-att-src="website.image_url(website, 'website_image', None)" t-att-alt="'Logo of %s' % res_company.name" t-att-title="res_company.name"/>
</xpath>
</template>

Put all of this in a module and install it. This will create a binary field to store the logo image for the website, in the menu "/Settings/Configuration/Website Settings" you could add the image in the field with label "Logo Image". After that just reload the page to see the logo changed

Hope this helps


1
Avatar
Zrušit
Avatar
Ev'Art Creativ
Autor Nejlepší odpověď

Yes i mean website, the logo you have a the top of the left colomn in odoo web portal, admin, and so on. I have difined the company logo, this one is displayed everywhere. I'm not in multi company config. I would have a different logo on my receipt ticket of my POS than the one defined as company logo.

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
Related Posts Odpovědi Zobrazení Aktivita
POS split Items printing
pos printing
Avatar
Avatar
Avatar
6
kvě 17
5544
Print Floor Plan Name on Kitchen Tickets (IoT Box, Epson TM-88)
pos printing Odoo 18 Certification
Avatar
Avatar
1
čvc 25
1267
Odoo 17. Custom Logo settings.
pos logo qrcode
Avatar
0
kvě 24
2366
How to resolve HTTP/HTTPS error with ePOS printing in Odoo POS
pos printing Epson
Avatar
Avatar
1
čvn 23
6609
Odoo Receipt Logo Resolution
pos logo receipt print
Avatar
0
srp 22
2723
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