Overview
With Cloud Retailer you can create a POS button that a cashier can click to bring up a product/ customer search OR you can create a filtered list. This can be valuable in all sorts of scenarios like:
Procedure
Other filter values are:eq for equals (exactly)ct for containsgt for greater thanlt for less thannct not contains
More examples are:
Example 1 - products with '750' in size text :{Filters: [ {PropertyName: 'Size', Operator: 'ct', Value: '750'}]}
Example 2 - products more expensive than 75:{Filters: [ {PropertyName: 'RegularPrice', Operator: 'gt', Value: '75'}]}
Example 3 - products with size not containing '750' text and Category containing 'Cabernet':{Filters: [ {PropertyName: 'Size', Operator: 'nct', Value: '750'}, {PropertyName: 'Category', Operator: 'ct', Value: 'Cabernet'}]}
How to see if a product contains a specific tag
There are times when you may need to verify if a specific product contains a tag at the POS. You can achieve this by using the same "Common: Lookup Products" command from above.
1) Go into your Task Pad and create a button with the command "Common: Lookup Products"
2) Inside the Command Parameters insert the following command and replace only YOURTAG with the name of your tag. Note: You MUST retain the double quotations around YOURTAG in the example below.
{ "TagName": "YOURTAG", "SearchText": ActiveTransaction.SelectedItem.Description }
Here is a Video covering task pad buttons in Cloud Retailer:
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article