Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Magazin de îmbrăcăminte
    • Magazin de Mobilă
    • Magazin alimentar
    • Magazin de materiale de construcții
    • Magazin de jucării
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Distribuitor de băuturi
    • Hotel
    Proprietate imobiliara
    • Real Estate Agency
    • Firmă de Arhitectură
    • Construcție
    • Estate Managament
    • Grădinărit
    • Asociația Proprietarilor de Proprietăți
    Consultanta
    • Firma de Contabilitate
    • Partener Odoo
    • Agenție de marketing
    • Law firm
    • Atragere de talente
    • Audit & Certification
    Producție
    • Textil
    • Metal
    • Mobilier
    • Mâncare
    • Brewery
    • Cadouri corporate
    Health & Fitness
    • Club Sportiv
    • Magazin de ochelari
    • Centru de Fitness
    • Wellness Practitioners
    • Farmacie
    • Salon de coafură
    Trades
    • Handyman
    • IT Hardware and Support
    • Asigurare socială de stat
    • Cizmar
    • Servicii de curățenie
    • HVAC Services
    Altele
    • Organizație nonprofit
    • Agenție de Mediu
    • Închiriere panouri publicitare
    • Fotografie
    • Închiriere biciclete
    • Asigurare socială
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

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

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

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

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
posposreceiptodoo16
1 Răspunde
2955 Vizualizări
Imagine profil
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
Imagine profil
Abandonează
Imagine profil
Cybrosys Techno Solutions Pvt.Ltd
Cel mai bun răspuns

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
Imagine profil
Abandonează
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!

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
How to Add "Company ID" in "POS Payment Receipt" Header Using QWeb/Developer Mode
pos qweb posreceipt
Imagine profil
Imagine profil
1
oct. 24
2552
POS UOM different issue Rezolvat
pos enterprise odoo16
Imagine profil
1
aug. 24
1772
Custom Po-pup template in odoo16/17 on clicking a given POS Payment Method.
pos odoo17 odoo16
Imagine profil
0
aug. 24
2684
how to print Multiple PoS receipt categorywise in odoo8 ?
pos posticket posreceipt
Imagine profil
Imagine profil
1
apr. 23
4497
Add table no to POS receipt
pos posticket posreceipt
Imagine profil
0
ian. 16
5016
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة 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 este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

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