Skip to Content
Odoo Menu
  • Zaloguj się
  • Wypróbuj za darmo
  • Aplikacje
    Finanse
    • Księgowość
    • Fakturowanie
    • Wydatki
    • Arkusz kalkulacyjny (BI)
    • Dokumenty
    • Podpisy
    Sprzedaż
    • CRM
    • Sprzedaż
    • PoS Sklep
    • PoS Restauracja
    • Subskrypcje
    • Wypożyczalnia
    Strony Internetowe
    • Kreator Stron Internetowych
    • eCommerce
    • Blog
    • Forum
    • Czat na Żywo
    • eLearning
    Łańcuch dostaw
    • Magazyn
    • Produkcja
    • PLM
    • Zakupy
    • Konserwacja
    • Jakość
    Zasoby Ludzkie
    • Pracownicy
    • Rekrutacja
    • Urlopy
    • Ocena pracy
    • Polecenia Pracownicze
    • Flota
    Marketing
    • Marketing Społecznościowy
    • E-mail Marketing
    • SMS Marketing
    • Wydarzenia
    • Automatyzacja Marketingu
    • Ankiety
    Usługi
    • Projekt
    • Ewidencja czasu pracy
    • Usługi Terenowe
    • Helpdesk
    • Planowanie
    • Spotkania
    Produktywność
    • Dyskusje
    • Zatwierdzenia
    • IoT
    • VoIP
    • Baza wiedzy
    • WhatsApp
    Aplikacje trzecich stron Studio Odoo Odoo Cloud Platform
  • Branże
    Sprzedaż detaliczna
    • Księgarnia
    • Sklep odzieżowy
    • Sklep meblowy
    • Sklep spożywczy
    • Sklep z narzędziami
    • Sklep z zabawkami
    Żywienie i hotelarstwo
    • Bar i Pub
    • Restauracja
    • Fast Food
    • Pensjonat
    • Dystrybutor napojów
    • Hotel
    Agencja nieruchomości
    • Agencja nieruchomości
    • Biuro architektoniczne
    • Budowa
    • Zarządzanie nieruchomościami
    • Ogrodnictwo
    • Stowarzyszenie właścicieli nieruchomości
    Doradztwo
    • Biuro księgowe
    • Partner Odoo
    • Agencja marketingowa
    • Kancelaria prawna
    • Agencja rekrutacyjna
    • Audyt i certyfikacja
    Produkcja
    • Tekstylia
    • Metal
    • Meble
    • Jedzenie
    • Browar
    • Prezenty firmowe
    Zdrowie & Fitness
    • Klub sportowy
    • Salon optyczny
    • Centrum fitness
    • Praktycy Wellness
    • Apteka
    • Salon fryzjerski
    Transakcje
    • Złota rączka
    • Wsparcie Sprzętu IT
    • Systemy energii słonecznej
    • Szewc
    • Firma sprzątająca
    • Usługi HVAC
    Inne
    • Organizacja non-profit
    • Agencja Środowiskowa
    • Wynajem billboardów
    • Fotografia
    • Leasing rowerów
    • Sprzedawca oprogramowania
    Przeglądaj wszystkie branże
  • Community
    Ucz się
    • Samouczki
    • Dokumentacja
    • Certyfikacje
    • Szkolenie
    • Blog
    • Podcast
    Pomóż w nauce innym
    • Program Edukacyjny
    • Scale Up! Gra biznesowa
    • Odwiedź Odoo
    Skorzystaj z oprogramowania
    • Pobierz
    • Porównaj edycje
    • Wydania
    Współpracuj
    • Github
    • Forum
    • Wydarzenia
    • Tłumaczenia
    • Zostań partnerem
    • Usługi dla partnerów
    • Zarejestruj swoją firmę rachunkową
    Skorzystaj z usług
    • Znajdź partnera
    • Znajdź księgowego
    • Spotkaj się z doradcą
    • Usługi wdrożenia
    • Opinie klientów
    • Wsparcie
    • Aktualizacje
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Zaplanuj demo
  • Cennik
  • Pomoc

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

  • CRM
  • e-Commerce
  • Księgowość
  • Zapasy
  • PoS
  • Projekt
  • MRP
All apps
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Pomoc

How to show the floor name on the POS receipt odoo 16?

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
posposreceiptodoo16
1 Odpowiedz
2983 Widoki
Awatar
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
Awatar
Odrzuć
Awatar
Cybrosys Techno Solutions Pvt.Ltd
Najlepsza odpowiedź

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
Awatar
Odrzuć
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>

Podoba Ci się ta dyskusja? Dołącz do niej!

Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!

Zarejestruj się
Powiązane posty Odpowiedzi Widoki Czynność
How to Add "Company ID" in "POS Payment Receipt" Header Using QWeb/Developer Mode
pos qweb posreceipt
Awatar
Awatar
1
paź 24
2571
POS UOM different issue Rozwiązane
pos enterprise odoo16
Awatar
1
sie 24
1778
Custom Po-pup template in odoo16/17 on clicking a given POS Payment Method.
pos odoo17 odoo16
Awatar
0
sie 24
2701
how to print Multiple PoS receipt categorywise in odoo8 ?
pos posticket posreceipt
Awatar
Awatar
1
kwi 23
4501
Add table no to POS receipt
pos posticket posreceipt
Awatar
0
sty 16
5027
Społeczność
  • Samouczki
  • Dokumentacja
  • Forum
Open Source
  • Pobierz
  • Github
  • Runbot
  • Tłumaczenia
Usługi
  • Hosting Odoo.sh
  • Wsparcie
  • Aktualizacja
  • Indywidualne rozwiązania
  • Edukacja
  • Znajdź księgowego
  • Znajdź partnera
  • Zostań partnerem
O nas
  • Nasza firma
  • Zasoby marki
  • Skontaktuj się z nami
  • Oferty pracy
  • Wydarzenia
  • Podcast
  • Blog
  • Klienci
  • Informacje prawne • Prywatność
  • Bezpieczeństwo Odoo
الْعَرَبيّة 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 to pakiet aplikacji biznesowych typu open source, które zaspokoją wszystkie potrzeby Twojej firmy: CRM, eCommerce, księgowość, inwentaryzacja, punkt sprzedaży, zarządzanie projektami itp.

Unikalną wartością Odoo jest to, że jest jednocześnie bardzo łatwe w użyciu i w pełni zintegrowane.

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