
I want to display item cost information in the status.html window on my pos screen. Using the lineitem.htm template that ships with RMS, I'm able to call and display any of the Entry.X variables (i.e. Description, price, extended price, quantity). The cost variable is item specific, so I imagine I need to define it as Entry.Item.Cost, but I'm missing something.
Thanks for the help.
Paul Arenson
Anderson Plywood Sales
paul@andersonplywood.com
*This post is locked for comments
I have the same question (0)Hi Paul - goofing around with the lineitem.htm file I was able to display the item cost, replacing "price" with "cost" references - make a backup first then set these values where you fin them:
Dim txtCost
txtCost = " "
txtCost = FormatCurrency(Entry.Item.Cost)
If Cost.innerText <> txtCost Then
Cost.innerText = txtCost
End If
<td width="20%" align="right">
Cost
</td>
<td width="20%" align="right" id="Cost">
</td>
Assign the file in store ops administrator - open up POS and it should show the item cost instead of the item price - tweak as needed - Hope this helps.....