Questions tagged [point-of-sale]

Point of sale is the place where a retail transaction is completed. It is the point at which a customer makes a payment to the merchant in exchange for goods or services.

Point of sale is the place where a retail transaction is completed. It is the point at which a customer makes a payment to the merchant in exchange for goods or services.

461 questions
1
vote
1 answer

Odoo Point Of Sale How to acess a Model and call methods using JS

I want to call a custom model(kitchen.order) to create data in that model from POS using js. but it throws an error TypeError: create() got an unexpected keyword argument 'user_id' Here is my js code…
Senthilnathan
  • 790
  • 9
  • 27
1
vote
0 answers

How to create OPOS Service Objects for Serial Port - Weighing Scale

I'm having a weighing scale. The vendor does not have OPOS service object implementation for the device. somehow, I'm able to implement read weight from serial port but I want to implement OPOS service object for reading weight and publish it for…
Hiren Desai
  • 941
  • 1
  • 9
  • 33
1
vote
1 answer

TypeError: module.PosModel is undefined

I inherited on the point_of_sale models.js file in order to add a model. This by following code: openerp.dewieuw = function(instance, local) { //module is instance.point_of_sale var module = instance.point_of_sale; var QWeb = instance.web.qweb; var…
Jesse
  • 727
  • 13
  • 44
1
vote
1 answer

Favour foreground app not working for HCE payments Android

I'm facing a strange issue in my HCE payments. I have two payments application in my mobile. One was developed by me and other is Android pay. In Tap&Pay the default one is "Android Pay" and my app is non-default and enabled "Favour foreground app".…
Santhi Bharath
  • 2,818
  • 3
  • 28
  • 42
1
vote
1 answer

jQuery Append Clone Table

I want to make simple POS like this: How to make clone element using jQuery append (and make new div/id) This is mine:
user5208674
1
vote
2 answers

How to apply domain filter on Many2One field Using Odoo JS?

Currently, I am Working on POS Customization. I've done almost but stuck in this issue. Py File: class prescription(osv.osv): _name = 'res.prescriptions' _columns={ …
1
vote
1 answer

Cutting paper ("feed and cut") with GDI?

Many printers have a "feed and cut" or "cut paper" command (I'm talking about POS - printers here). Since using POS.NET is not always possible (horrific driver incompatibilities) and GDI can do so much more, we would like to utilize the paper cutter…
Turing Complete
  • 929
  • 2
  • 12
  • 19
1
vote
0 answers

Odoo 8 link 1 User to 1 Point of Sale

I need to link 1 User to 1 POS (Point Of Sale) in Odoo v8.0. That is, 1 user will be able to use only the assigned POS. How can I do that? Is there any module which does this? I searched here and in Odoo Help forum and even posted there, but i'm…
Khalav
  • 77
  • 7
1
vote
1 answer

The [object object] can't be determined and shown in console

I have a function that return something like [object object] no my value that I wanted , I do almost every thing to get the value but no hope. When I try to show that object using toSource() I got something like that. ({state:(function (){return…
Mostafa Mohamed
  • 816
  • 15
  • 39
1
vote
1 answer

Microsoft Dynamics AX MPos -Screen Layout

On Screen Layout Designer. When i Right Click on Main Screen design(Receipt panel) , it is showing customize option, there are some columns i can select for my MPos screen. Is it possible to add my own columns or more specifically where it is…
1
vote
1 answer

Can Odoo Website Framework be great alternative for Odoo POS?

Odoo released it's website framework which is very easy and powerful. ( Great thanks to Odoo Team !! ) Now we all Odoo experts need to think on whether a Website framework can be good alternative for POS ? Website benefits are listed as below, It's…
1
vote
1 answer

how to read and write from .dat file in verifone

I want to read and write a text or .dat file in verifone to store data on it. How can I make it ? here is my code int main() { char buf [255]; FILE *tst; int dsply = open(DEV_CONSOLE , 0); tst = fopen("test.txt","r+"); fputs("this text…
farshid
  • 161
  • 5
  • 13
1
vote
2 answers

Disable credit card autofill on Mac Safari

I'm developing a simple point-of-sale web app, and part of that is there is a credit card field. This field is for entering a customer's credit card, and therefore the number should neither a) be saved by the browser, or b) or be loaded from the…
metahamza
  • 1,405
  • 10
  • 26
1
vote
1 answer

Payment with the MSR (Magnetic Stripe Reader)

I am new in POS(Point of Sale). I have an Motorola Enterprise device with MSR reader hardware. I want to integrate the payment module. When i scan any payment card MSR will fetch the data from card and displayed in the mobile device. I need to…
Amit Thaper
  • 2,117
  • 4
  • 26
  • 49
1
vote
0 answers

Integrating credit card processor with web based Point of Sale on Android Tablet

I'm planning on developing a Web Based Point of Sale that I want to run on Android Tablets, however I'm not sure on how to deal with payment processing. Are there card readers that integrate with Android tablets and the web based POS software…