Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

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

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

Sending kitchen orders

Subscribe

Get notified when there's activity on this post

This question has been flagged
posodoo
1 Reply
10484 Views
Avatar
Marco Antonio Gomez

Hi, I have been analyzing the PoS interface and menus for Odoo and found it to be rather intuitive and simple and had issue only at the moment of printing a kitcher order, when I select products the only option I see is "payment" and the receipt if you order no invoice states what products were sold, but I see no way of printing this before payment so that the person in the kitchen will know what to prepare for my customers.

0
Avatar
Discard
Ermin Trevisan

You should be more specific. What do you have installed, is it configured properly? Did you for example install the regular pos only or did you install pos_restaurant?

Marco Antonio Gomez
Author

I installed both the base PoS as well as pos_restaurant

Marco Antonio Gomez
Author

Also I looked in settings but I found no submenu to configure, unlike sales or accounting, or other such modules. I was wo9ndering if I failed to activate some settings but I have no idea where that could be.

FEDERICO LEONI

Did you add a printer at the end of point of sale configuration (point of sale --> configuration --> point of sale --> main (or your POS name)? Without a printer the "order" button will not appear.

Marco Antonio Gomez
Author

I am aware of that, however once I add a printer to the PoS and the button appears, when you select items the "order" button turns green right? I clicked that button and it turned gray, but nothing happened, I figured that by not giving the printer an IP adress it would print the order in my broswer as a proof of concept, it did not. After doing this, I gave it the IP adress of pone of my printers and clicking the order did not print either.

FEDERICO LEONI

Marco Antonio, on multiprint.js there is a call to hw_proxy module: self.connection.rpc('/hw_proxy/print_xml_receipt' if you have installed it check on logs if you have any errors like this one: 2015-03-27 21:13:59,580 26002 WARNING ? openerp.addons.hw_escpos.controllers.main: ESC/POS Device Disconnected: Printer Not Found If yes then your printer is not correctly configured. Did you add the id vendor e model code on supported_devices.py under /hw_escpos/escpos/? something like { 'vendor' : 0x04b8, 'product' : 0x0202, 'name' : 'Epson TM-T70' } The pos module needs some adjustment to have it working properly. I did myself some mods to have it partially working with my cheap Epson compatible printer and still I have many issues. Have a look here: https://github.com/odoo/odoo/issues/6026 and here: https://www.odoo.com/forum/help-1/question/print-order-instead-of-coupon-on-pos-what-qweb-view-82635 Good luck!

Avatar
FEDERICO LEONI
Best Answer

Marco Antonio,

on multiprint.js there is a call to hw_proxy module:

self.connection.rpc('/hw_proxy/print_xml_receipt'

If you have installed it check on logs if you have any errors like this one:

2015-03-27 21:13:59,580 26002 WARNING ? openerp.addons.hw_escpos.controllers.main: ESC/POS Device Disconnected: Printer Not Found

If yes then your printer is not correctly configured. Did you add the id vendor e model code on supported_devices.py under /hw_escpos/escpos/? something like

{ 'vendor' : 0x04b8, 'product' : 0x0202, 'name' : 'Epson TM-T70' }

The pos module needs some adjustment to have it working properly. I did myself some mods to have it partially working with my cheap Epson compatible printer and still I have many issues. Have a look here:

https://github.com/odoo/odoo/issues/6026

and here:

https://www.odoo.com/forum/help-1/question/print-order-instead-of-coupon-on-pos-what-qweb-view-82635

Good luck and let us know!

0
Avatar
Discard
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Sign up
Related Posts Replies Views Activity
How can i see pos OrderChangeReceipt report without printer odoo15
pos odoo
Avatar
0
Sep 24
2195
Why I can't see my Take Away , Delivery and Dine-in in my POS?
pos odoo
Avatar
0
Sep 23
2066
certification NF525
pos odoo
Avatar
0
Mar 23
8758
POS blank black screen where UI does not load Solved
pos odoo
Avatar
Avatar
2
Aug 22
9467
Odoo Pos: Uncaught TypeError: Cannot read property 'add_product' of null
pos odoo
Avatar
Avatar
1
Feb 21
7742
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة 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 is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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