Skip to Content
Odoo Menú
  • Registra entrada
  • Prova-ho gratis
  • Aplicacions
    Finances
    • Comptabilitat
    • Facturació
    • Despeses
    • Full de càlcul (IA)
    • Documents
    • Signatura
    Vendes
    • CRM
    • Vendes
    • Punt de venda per a botigues
    • Punt de venda per a restaurants
    • Subscripcions
    • Lloguer
    Imatges de llocs web
    • Creació de llocs web
    • Comerç electrònic
    • Blog
    • Fòrum
    • Xat en directe
    • Aprenentatge en línia
    Cadena de subministrament
    • Inventari
    • Fabricació
    • PLM
    • Compres
    • Manteniment
    • Qualitat
    Recursos humans
    • Empleats
    • Reclutament
    • Absències
    • Avaluacions
    • Recomanacions
    • Flota
    Màrqueting
    • Màrqueting Social
    • Màrqueting per correu electrònic
    • Màrqueting per SMS
    • Esdeveniments
    • Automatització del màrqueting
    • Enquestes
    Serveis
    • Projectes
    • Fulls d'hores
    • Servei de camp
    • Suport
    • Planificació
    • Cites
    Productivitat
    • Converses
    • Validacions
    • IoT
    • VoIP
    • Coneixements
    • WhatsApp
    Aplicacions de tercers Odoo Studio Plataforma d'Odoo al núvol
  • Sectors
    Comerç al detall
    • Llibreria
    • Botiga de roba
    • Botiga de mobles
    • Botiga d'ultramarins
    • Ferreteria
    • Botiga de joguines
    Food & Hospitality
    • Bar i pub
    • Restaurant
    • Menjar ràpid
    • Guest House
    • Distribuïdor de begudes
    • Hotel
    Real Estate
    • Real Estate Agency
    • Estudi d'arquitectura
    • Construcció
    • Gestió immobiliària
    • Jardineria
    • Associació de propietaris de béns immobles
    Consulting
    • Accounting Firm
    • Partner d'Odoo
    • Agència de màrqueting
    • Bufet d'advocats
    • Captació de talent
    • Auditoria i certificació
    Fabricació
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Regals corporatius
    Salut i fitness
    • Club d'esport
    • Òptica
    • Centre de fitness
    • Especialistes en benestar
    • Farmàcia
    • Perruqueria
    Trades
    • Servei de manteniment
    • Hardware i suport informàtic
    • Solar Energy Systems
    • Shoe Maker
    • Serveis de neteja
    • HVAC Services
    Others
    • Nonprofit Organization
    • Agència del medi ambient
    • Lloguer de panells publicitaris
    • Fotografia
    • Lloguer de bicicletes
    • Distribuïdors de programari
    Browse all Industries
  • Comunitat
    Aprèn
    • Tutorials
    • Documentació
    • Certificacions
    • Formació
    • Blog
    • Pòdcast
    Potenciar l'educació
    • Programa educatiu
    • Scale-Up! El joc empresarial
    • Visita Odoo
    Obtindre el programari
    • Descarregar
    • Comparar edicions
    • Novetats de les versions
    Col·laborar
    • GitHub
    • Fòrum
    • Esdeveniments
    • Traduccions
    • Converteix-te en partner
    • Services for Partners
    • Registra la teva empresa comptable
    Obtindre els serveis
    • Troba un partner
    • Troba un comptable
    • Contacta amb un expert
    • Serveis d'implementació
    • Referències del client
    • Suport
    • Actualitzacions
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Programar una demo
  • Preus
  • Ajuda

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

  • CRM
  • e-Commerce
  • Comptabilitat
  • Inventari
  • PoS
  • Projectes
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiquetes (View all)
odoo accounting v14 pos v15
About this forum
Ajuda

How to add serial no or product total in POS Sales Slip

Subscriure's

Get notified when there's activity on this post

This question has been flagged
posreciept
2 Respostes
9201 Vistes
Avatar
Faheem Khan

How to add serial no with each order line or total order lines in Point of sale receipt? Is it possible to add grand total for product quantity in POS sales receipt? examples are sr. description qty. price total 1: cock 5 5 25 2: Sprite 3 5 25 or Descri qty. price total cock 5 5 25 Sprite 3 5 25 Total Items=8 or total order lines=2

3
Avatar
Descartar
gpkarthick

how to add a discount field many2one tax field in pos openerp7 already working discount and tax but i dont want that i need to add manually and calculate the total

Sean Samborski

More and more I'm having to throw money at OpenERP for every little thing. You're out of luck with the out-of-the-box. My advice, if you need to sell serial numbers and not products, then you need to use a different ERP. OpenERP is not built to support companies who sell serial numbers and not just products. Shame because it's a basic building block of any company who sells electronic equipment and it is a true crime to ignore these types of companies since there are so many. This feature should have been fleshed out when they tried adding serial numbers in the first place.

Fabrice Henrion (fhe)

Sean: Serial number management at the item level is available. You need to activate the 2 first checkboxes in Settings > Warehouse; then create a new incoming shipment, receive the products, split in several serial numbers and that's where your traceability by serial starts. Using incoming shipments as the start is just an example; splitting a stock move in serial numbers is available in several places in the system.

Avatar
William Crandell
Best Answer

As I have been considering the value of adding the serial number to an item on the receipt, I have looked into this... It does not seem that the POS software currently allows choosing a serial number natively, one would need to either add a field and manually insert the value or it could also be a done with a custom db lookup, though anyway it cuts you will have to make some changes to the current setup by working with the source code.

You can do this in code by inheritance and adding what you need (normally there would be an 'or using the developer mode') unfortunately the developer mode options are a bit different in the POS setup so your best option would be creating a custom module to do this.

For anyone wanting a pointer in the right direction have a look at

addons/point_of_sale/report/pos_receipt.py

addons/point_of_sale/report/pos_receipt.rml

addons/point_of_sale/report/pos_receipt.sxw

Hope this helps.

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

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

Registrar-se
Related Posts Respostes Vistes Activitat
How to Center-align the POS Order Receipt in Odoo POS Module?
pos reciept
Avatar
Avatar
1
d’ag. 23
3554
Delete Fields From POS receipt
development pos reciept
Avatar
Avatar
Avatar
2
d’oct. 22
3685
How to add new field to pos receipt Solved
pos reciept v14
Avatar
Avatar
Avatar
2
d’abr. 22
8291
POS Table Synchronization Issue Between Devices in Odoo v17 CE
pos
Avatar
Avatar
Avatar
2
de nov. 25
2397
Refund and Discount access to admin user only for Pos selling
pos
Avatar
Avatar
1
de nov. 25
326
Community
  • Tutorials
  • Documentació
  • Fòrum
Codi obert
  • Descarregar
  • GitHub
  • Runbot
  • Traduccions
Serveis
  • Allotjament a Odoo.sh
  • Suport
  • Actualització
  • Desenvolupaments personalitzats
  • Educació
  • Troba un comptable
  • Troba un partner
  • Converteix-te en partner
Sobre nosaltres
  • La nostra empresa
  • Actius de marca
  • Contacta amb nosaltres
  • Llocs de treball
  • Esdeveniments
  • Pòdcast
  • Blog
  • Clients
  • Informació legal • Privacitat
  • Seguretat
الْعَرَبيّة 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 és un conjunt d'aplicacions empresarials de codi obert que cobreix totes les necessitats de la teva empresa: CRM, comerç electrònic, comptabilitat, inventari, punt de venda, gestió de projectes, etc.

La proposta única de valor d'Odoo és ser molt fàcil d'utilitzar i estar totalment integrat, ambdues alhora.

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