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
0
votes
0 answers

Promise return Promise status pending and promise value undefined in Odoo js

Hello I am trying to convert string html to image using html2canvas library in my Odoo POS Module v8. But, when I try to use this function var receipt_data = html2canvas($(receipt)).then(function(canvas) { $('body').appendChild(canvas); …
Shikhar S
  • 319
  • 1
  • 8
0
votes
1 answer

Not load res.partner in POS Odoo 8

How to not load data res.partner in POS Odoo? Because row on the res.partner table is a lot and makes load POS so long. Thanks
0
votes
1 answer

Connecting POS to E-Commerce RESTFUL API

I will have an e-commerce website connecting to my own REST API that will connect to a MySql Database. I want to be able to connect a POS(Point of Sale) in a physical store to this same REST API and allow for real time syncing e.g. when an product…
John Biggs
  • 53
  • 1
  • 8
0
votes
1 answer

Get entered value from input textbox to button template via popup in POS payment screen in odoo 11

I am using odoo v11. I am working in POS module. In that I created button name "Check Number" in payment screen which is only visible if once selected any payment method which's journal type is "bank". On clicking of that button one popup is getting…
Keval Mehta
  • 689
  • 3
  • 28
0
votes
1 answer

c# printing POS receipt without Bitmap

I am developing a Point of Sale application in C# Windows Form. Now i am on a stage where i have to print Receipt for the customer. for that purpose i am using Thermal printer. I draw the receipt on a panel image is attached. First i try to print…
Umer Farooq
  • 84
  • 2
  • 9
0
votes
1 answer

Odoo POS create invoice after POS session is closed

Anybody knows why it's not possible to generate an invoice after that the POS session is closed an the POS orders are booked? And how to fix this
Jesse
  • 727
  • 13
  • 44
0
votes
1 answer

How do I invoke my app using Square Point of Sale app's Other Payments feature?

I have built an Alternate payment app that expects to work off "Other Payments" - takes the merchant to my app that lets them complete the transaction. On the Square POS app, the "Other Payments" button seems to function like a "mark as paid". Is…
Akilan Arasu
  • 350
  • 1
  • 5
  • 17
0
votes
0 answers

When i try to sell the item from warehouse 1 where i have 43 quantity in stock it shows out of stock

public function add($quote_id = null) { $this->sma->checkPermissions(); $sale_id = $this->input->get('sale_id') ? $this->input->get('sale_id') : NULL; $this->form_validation->set_message('is_natural_no_zero',…
0
votes
1 answer

Able to switch printers via HTML, Flash, or anything else?

I'm working on converting an inventory management app from desktop to a web-app. The desktop app generates multiple formats of printouts: mailing labels to a Dymo printer general 8.5 x 11 printouts and thermal receipt printouts to a Star printer…
Denis
  • 1
0
votes
1 answer

I can't get the order list from square up platform server

var request = require("request"); var options = { method: 'GET', url: 'https://connect.squareup.com/v2/locations/{location_id}/transactions', headers: { 'postman-token': 'token', 'cache-control': 'no-cache', authorization: 'Bearer…
jwsoftwaregroup
  • 129
  • 1
  • 16
0
votes
1 answer

Can I develop the regular chrome-optimized websites in Windows 10 Embedded OS?

I'm currently developing a web-based POS, and I'm looking to purchase a touchscreen POS machine which comes with Windows 10 Embedded. I have read somewhere that it cannot just download any software, Chrome included, so I fear that even if I optimize…
Adrian Borja
  • 144
  • 2
  • 13
0
votes
1 answer

POS Printer not detected by POS.NET

Recently bought a POS Printer (off-brand from China) and I'm want to write a little WPF application that will let me print some text and cut the thermal paper. I installed POS.NET hoping that it would work out the box but it doesn't seem that way…
Matthew C
  • 1
  • 3
0
votes
1 answer

CAS policy on .NET 4.5 with Microsoft.PointOfService

I am working on a Point Of Sale (POS) app on Visual Studio 2017 enterprise edition. The target framework is .NET framework 4.5, I have installed Microsoft POS for .NET 1.12 (OPOS) and I was able to get the MSR card reader with: PosExplorer…
Fernando Santiago
  • 2,128
  • 10
  • 44
  • 75
0
votes
1 answer

Default user in session Point of Sale ODOO 10

I have a problem in version 10 of odoo In the cofiguration > user page "point of sale" the field 'Default Point of Sale' field is gone while in version 8 and 9 we can create several sessions with different users what is the solution As the picture…
Boubaker
  • 427
  • 1
  • 7
  • 24
0
votes
2 answers

Getting position of mouse click in a QLabel

What is the best (as in simplest) way to obtain the pos of a mousePressedEvent in a QLabel? (Or basically just obtain the location of a mouse click relative to a QLabel widget) EDIT I tried what Frank suggested in this way: bool…
wrongusername
  • 18,564
  • 40
  • 130
  • 214