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
    • Artificial Intelligence
    • 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
    • Property 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
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

Odoo 19 POS Receipt Customization – Remove Default Unit Price and Show Custom MRP Line

Subscribe

Get notified when there's activity on this post

This question has been flagged
javascriptpos
1 Reply
821 Views
Avatar
Ashilkrishna

Hello Everyone,

I am trying to customize the POS receipt in Odoo 19.

Current default receipt output:

Pizza Vegetarian

$57.50 / Units

My requirement is:

Pizza Vegetarian

MRP ₹60 @ ₹50/unit

Explanation:

  • mrp is a custom field added in product.template

  • list_price (Sales Price) is ₹50

  • I want to:

    1. Remove the default “price per unit” line from the POS receipt

    2. Show custom text below the product name using MRP and Sales Price

I tried overriding the POS receipt template using this XML:

<?xml version="1.0" encoding="UTF-8"?>
<templates id="template" xml:space="preserve">

<!-- POS Receipt Order Line -->
<t t-name="custom_pos_receipt.Orderline"
t-inherit="point_of_sale.Orderline"
t-inherit-mode="extension">

<!-- REMOVE DEFAULT UNIT PRICE LINE -->
<xpath expr="//div[contains(@class,'price-per-unit')]" position="replace">
</xpath>

<!-- ADD CUSTOM MRP LINE -->
<xpath expr="//div[contains(@class,'product-name')]" position="after">

<div style="
font-size:12px;
color:#555;
margin-top:2px;
font-weight:500;
">

MRP
<t t-esc="props.line.product.mrp"/>

@
<t t-esc="props.line.product.lst_price"/>

/unit

</div>

</xpath>

</t>

</templates>

Manifest:

'assets': {
    'point_of_sale._assets_pos': [
        'pos_receipt_custom/static/src/xml/pos_receipt.xml',
    ],
},

But POS crashes with errors like:

Thanks in advance.


0
Avatar
Discard
Codesphere Tech

Hello
1. Check "pos_receipt_custom" is your module name or not.
Let me know here.
Thanks

Ashilkrishna
Author

actually i defined mrp in odoometer_price_extn(product.product),i have not added custom field in pos loader,i just want to replace cureent price unit with mrp-value at salesprice after product name,can you share complete code,it would really help full

Ashilkrishna
Author

screen shot image is updated

Ashilkrishna
Author

i want like this-mrp:60 @ 50/unit(after product name by repacing current unitprice/unit)

Codesphere Tech

So you wnat to replace this line by your Custom field(mrp) price right?

Ashilkrishna
Author

yes i want to replace line with this sentence like-mrp:60 @ 50/unit(60 is mrp and 50 is selling price)

Avatar
Ashilkrishna
Author Best Answer
yes but its not working,xpath replaces the current unitprice/unit,but my custom mrp line not coming after product name
<?xml version="1.0" encoding="UTF-8"?>
<templates xml:space="preserve">

<t t-name="odoometer_price_extn.Orderline"
t-inherit="point_of_sale.Orderline"
t-inherit-mode="extension">

<!-- Remove default /Units line -->
<xpath expr="//li[hasclass('price-per-unit')]"
position="replace"/>

<!-- Dynamic MRP line -->
<xpath expr="//div[hasclass('product-name')]"
position="after">

<div t-if="props.line.mrp"
style="
font-size:10px;
color:#666;
margin-left:12px;
margin-top:1px;
">

<span style="text-decoration:line-through;">
<t t-esc="props.line.mrp"/>
</span>

<span style="margin:0 4px;">→</span>

<span style="font-weight:bold;">
<t t-esc="props.line.unit_price"/>
</span>

</div>

</xpath>

</t>

</templates>
{
'name': 'Odoo Meter Price Customizations',
'version': '1.0',
'depends': ['base', 'product', 'account', 'stock_account', 'tradelite_common', 'zl_thermal_invoice_print','point_of_sale'],
'data': [
'views/account_move_view.xml',
'views/product_template_view.xml',
'views/product_product_view.xml',
'report/thermal_invoice_template.xml',
],
'assets': {
'point_of_sale._assets_pos': [
'odoometer_price_extn/static/src/js/pos_receipt.xml',
# 'odoometer_price_extn/static/src/js/pos_orderline.js',
],
},
'installable': True,
'application': False,
'auto_install': False,
}
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
Odoo 19 POS Pay Later – Need Review of Custom Implementation
javascript pos
Avatar
0
May 26
715
I am customizing the POS receipt in Odoo 19.
javascript pos
Avatar
0
May 26
722
Can anyone correct my code-iam coustmizing odoo 19 defualt pos reciept Solved
javascript pos
Avatar
Avatar
1
May 26
1148
does odoo 17 allow to add button to Navbar header in point of sale session inside it to get dynamic data
javascript pos
Avatar
Avatar
1
Nov 24
3572
How to add product in POS programmatically Solved
javascript pos
Avatar
Avatar
Avatar
Avatar
4
Oct 24
7056
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 Svenska ภาษาไทย 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