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 show the floor name on the POS receipt odoo 16?

Odoberať

Get notified when there's activity on this post

This question has been flagged
posposreceiptodoo16
1 Odpoveď
2982 Zobrazenia
Avatar
Zahra Naveed

I wanted to show a floor name on the POS receipt odoo 16 through custom module under the Served by. what will be the code.

i added this in py file


class PosOrder(models.Model):
"""To write the product addons to backend """
_inherit = 'pos.order'

floor_name = fields.Many2one('restaurant.floor', string='Floor')

@api.model
def _order_fields(self, ui_order):
res = super(PosOrder, self)._order_fields(ui_order)
res['floor_name'] = ui_order.get('floor_name', False)
return res

this in js file

	​/** @odoo-module */
import Registries from 'point_of_sale.Registries';
import {Order, Orderline, PosGlobalState } from 'point_of_sale.models';
import utils from 'web.utils';
var round_pr = utils.round_precision;

const PosAddonsOrderline = (Orderline) =>
class PosSaleOrderline extends Orderline {
​get_floor_name() {
const selectedTable = this.pos.tables_by_id[this.table_id];
const selectedFloor = selectedTable ? this.pos.floors_by_id[selectedTable.floor_name[0]] : null;
return selectedFloor ? { id: selectedFloor.id, name: selectedFloor.name } : null;
}
export_for_printing() {
var a = {
​ ​floor_name: this.get_floor_name(),
​ ​};
​ ​return a
}
Registries.Model.extend(Orderline, PosAddonsOrderline);

this is my xml




floor :




and getting this error.
column pos_order.floor_name does not exist LINE 1: ...ges", "pos_order"."crm_team_id" AS "crm_team_id", "pos_order...

0
Avatar
Zrušiť
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Best Answer

Hi,

To display the floor name on the POS receipt, extend the Orderline from point_of_sale and include the floor name in the export_for_printing method. Check if the order has a table assigned, and if so, include the floor name in the exported data.

JS:
/** @odoo-module */
import { Orderline } from 'point_of_sale.models';
import Registries from 'point_of_sale.Registries';

const CustomOrderlines = (Orderline) => class CustomOrderlines extends Orderline {
    export_for_printing() {
var result = super.export_for_printing(...arguments);
result.floor_name = this.pos.config.iface_floorplan ? this.order.getTable().floor.name : false;
return result;
    }
}
Registries.Model.extend(Orderline, CustomOrderlines)

Inherit the OrderLinesReceipts template, then find the appropriate place to insert floor_name. Add a condition to check if the floor_name exists and display it on the receipt if it does.

XML:
<t t-name="OrderLinesReceipts" t-inherit="point_of_sale.OrderLinesReceipt"
   t-inherit-mode="extension" owl="1">
    <xpath expr="//t[@t-foreach='receipt.orderlines']" position="inside">
            <div class="responsive-price">
                    <t t-if="line.floor_name">
                        <span><t t-esc="line.floor_name"/></span>
                    </t>
            </div>
        <br/>
    </xpath>
</t>


Hope it helps

0
Avatar
Zrušiť
Zahra Naveed
Autor

i tried this but it didnt let the pos open.
and can you please tell me how to hide the company name at the top under the logo.

<xpath expr="//t[@t-esc='receipt.company.name']" position="replace">
</xpath>

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
How to Add "Company ID" in "POS Payment Receipt" Header Using QWeb/Developer Mode
pos qweb posreceipt
Avatar
Avatar
1
okt 24
2567
POS UOM different issue Solved
pos enterprise odoo16
Avatar
1
aug 24
1778
Custom Po-pup template in odoo16/17 on clicking a given POS Payment Method.
pos odoo17 odoo16
Avatar
0
aug 24
2700
how to print Multiple PoS receipt categorywise in odoo8 ?
pos posticket posreceipt
Avatar
Avatar
1
apr 23
4499
Add table no to POS receipt
pos posticket posreceipt
Avatar
0
jan 16
5027
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