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 add the fiscal position note field in the pos receipt

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
posrecieptFiscalPositionfiscalpositonv15
2 Odpowiedzi
2894 Widoki
Awatar
fojja bilel

hi all,

i want to know how to add the fiscal position note field in the pos receipt

thanks

0
Awatar
Odrzuć
Awatar
fojja bilel
Autor Najlepsza odpowiedź

thanks  MUHAMMAD Imran

0
Awatar
Odrzuć
Awatar
MUHAMMAD Imran
Najlepsza odpowiedź

Here is an example of how you can add the fiscal position note field to the POS receipt in Odoo using code:


First, you will need to create a new field for the fiscal position note on the pos.order model. You can do this by adding the following code to your module's models.py fil

Copy cod

from odoo import fields, model


class PosOrder(models.Model

    _inherit = 'pos.order

    fiscal_position_note = fields.Char('Fiscal Position Note'

Next, you will need to add the field to the POS receipt template. You can do this by modifying the pos_ticket.xml file in your module's views folder. For example, you can add the following code to the template to display the fiscal position note

Copy cod

 

Finally, you will need to add the field in the POS order creation process. You can do this by overriding the create_from_ui method on the pos.order model in your module's models.py file

Copy cod

class PosOrder(models.Model)

    _inherit = 'pos.order


    def create_from_ui(self, orders

        for order in orders

            # Add the fiscal position note to the order dat

            order['fiscal_position_note'] = 'example note

        return super(PosOrder, self).create_from_ui(orders

Note that this is just an example and you'll need to adjust it to your specific use case, for example by taking the note from the fiscal position itself or from a specific field that you've created for this purpose

0
Awatar
Odrzuć
fojja bilel
Autor

thanks MUHAMMAD
by default there is a field named note in account.fiscal.position
and a field named fiscal_position_id in pos.order
how can add this field in the receipt ?
my pos.xml file :
<templates id="template" xml:space="preserve">
<t t-name="OrderReceipt" t-inherit="point_of_sale.OrderReceipt" t-inherit-mode="extension" owl="1">
<xpath expr="//div[@class='pos-receipt-contact']" position="inside">

</xpath>
</t>
</templates>
thanks for helping me

MUHAMMAD Imran

To add the "note" field from the "account.fiscal.position" model and the "fiscal_position_id" field from the "pos.order" model to the receipt, you can use the xpath element to specify where in the template you want to add the fields and then use the field element to define the fields themselves. Here is an example of what that might look like:

Copy code
<templates id="template" xml:space="preserve">
<t t-name="OrderReceipt" t-inherit="point_of_sale.OrderReceipt" t-inherit-mode="extension" owl="1">
<xpath expr="//div[@class='pos-receipt-contact']" position="inside">
<div class="pos-receipt-note">
<span class="pos-receipt-label">Note:</span>
<field name="note" widget="text" options='{"readonly": true}'/>
</div>
<div class="pos-receipt-fiscal-position-id">
<span class="pos-receipt-label">Fiscal Position ID:</span>
<field name="fiscal_position_id" widget="text" options='{"readonly": true}'/>
</div>
</xpath>
</t>
</templates>
You should also check if the fields you want to add are related to the receipt model in odoo.

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 show the fiscal tax on the pos odoo16 slip?
pos reciept FiscalPosition odoo16features
Awatar
0
cze 24
397
How do I format the date on the POS receipt? (without time and timezone)
community pos reciept v15
Awatar
Awatar
1
sty 24
3425
how can i change product line size font in the receipt pos
pos reciept point_of_sale v15
Awatar
Awatar
1
sty 23
5310
Error in replace div in custom receipt
pos v15
Awatar
Awatar
1
lip 24
3755
Fiscal position not working as expected Rozwiązane
FiscalPosition fiscalpositon
Awatar
Awatar
Awatar
2
lis 23
3896
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