At the POS, we are looking for a way for the cashier to see how many items he scanned prior to hitting the tender button. Total number of quantity items somewhere on the POS screen at which he can then make sure the same number of items are placed into the bag. Anyone know of a such a feature?
*This post is locked for comments
Absolutely perfect sir. Thank you for providing this information, you are gentleman and a scholar.
Use Status HTML to show Quantity of items and more. here an example
<!-- © 2002 Microsoft Corporation. All Rights Reserved. -->
<html>
<head>
<meta http-equiv="Content-Language" content="en-us">
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" language="javascript" src="global.js"></script>
<title>Taskpad</title>
<OBJECT classid="clsid:44C4C3AC-D0F1-11D2-919D-006008C88FC3" height="0" id="qsBridge" style="LEFT: 0px; TOP: 0px" width="0">
<PARAM NAME="_ExtentX" VALUE="26">
<PARAM NAME="_ExtentY" VALUE="26">
</OBJECT>
<script language="VBScript">
<!--
Dim TimerID
' ------------------------------------
' displayVariables
' ------------------------------------
Function displayVariables
On Error Resume Next
Dim QSRules
Dim Entry
Dim Custom1
Set QSRules = qsBridge.RequestQSRules()
Custom1 = ""
Set Entry = Nothing
If Not QSRules Is Nothing Then
' This line is valid after version 1.07
Set Entry = QSRules.Transaction.Entries(QSRules.Transaction.CurrentEntryKey)
Custom1 = "Quantity " & QSRules.Transaction.TotalQuantity
End If
txtCustom1.innerText = Custom1
End Function
Function doStartup
' use a timer to run displayVariables() periodically every second
displayVariables
TimerID = window.setInterval("displayVariables()", 100)
End Function
//-->
</script>
</head>
<body onload="doStartup()" scroll="no" STYLE="position:absolute; top:0px; left:0px; width:100%; height:100%; padding:10px; font:bold 20pt verdana; color:white;
filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=1, StartColorStr='#ff6600', EndColorStr='#0099ff')" bgcolor="#FF9428" link="#FF9428" vlink="#FF9428" alink="#FF9428">
<table border="0" align="right" width="100%" STYLE="border-width:0px; top:0px; left:0px;" valign="top">
<tr>
<td rowspan="2" valign="top">
<img valign="top" border="0" src="LOGO1.gif" height="160px">
</td>
<td align="right" colspan="2" valign="top" STYLE="font-family:Verdana; font-size:25px; left:2px; top:2px; font-weight:bold;" height="26">
<span id="txtCustom1"></span><BR>
</td>
</tr>
</table>
</body>
</html>
Hi,
You need an add-on for that this link might help
That number you have circled is not necessarily the number of items, it represents what line number your cursor (the blue box) is on. In your example you are on line number 14, that is why it shows a 14 there. If you change the quantity of items sold in the line (Item #1 you sell 2 of; Item #2 you sell 9 of, etc.) then the number you have circled never changes. So no, this isn't correct but thank you.
Hope this is what you mean the Red circle shows the number of scanned quantity
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,253 Super User 2024 Season 2
Martin Dráb 230,188 Most Valuable Professional
nmaenpaa 101,156