Alright, before we get started here, I know what some of you are thinking… “POS, who are you calling a POS!?”
If you aren’t in the acronym business, and aren’t familiar with the retail world, a POS system in retail is a Point Of Sale system. (Not the more common use of the acronym: Piece Of S#!+)
In retail, the POS system is used for all purchases, returns, price checks, etc. Now on to my point.
When I was looking for my N10, I ran into the issue that, even within the same retailer, there often wasn’t an accurate depiction of stock on the item. I went to one Walmart, and they told me another store had 1 on stock. Luckily, I got there and there was actually 2 there. (I ended up with both eventually… see the story about the N10 replacement for details.)
This got me thinking… I worked in retail for a couple years, and we often had similar issues. Usually it was the other way around though. An item would show available, and it wasn’t there. 90% of the time this meant that there had been a return and the item was “in stock” because it had been returned, but it wasn’t able to be put back on the shelf (Much like my N10) or it just hadn’t been restocked yet, and an employee would have to retrieve it from the Customer Service desk (which is a lot less of an issue, at least it’s available for purchase.)
So, here’s a simple solution: (POS programmers, I hope you’re listening!)
When returning an item, make an option for “restock”. I was thinking on my way in to work… what’s the best way to do this? You could make it a checkbox, but the Customer Service representative (CS rep) will likely ignore that box 90% of the time. As a former CS rep, I know that a lot of what you do is habit, so you will eventually get in the habit of seeing the box, knowing that 90% of items will be restocked, and clicking it. So how do you FORCE the CS rep to interact with it properly? I came up with a few ways:
- Make that box default to on
- Unfortunately, that makes it still optional. The user is NOT FORCED to interact with it at all. Although 90% of the time it will be correct even if ignored, habit still kicks in.
- Make it 2 radio buttons, one for “yes”, one for “no”
- If no choice is made, cannot move forward, FORCING a click
- again, habit kicks in. 90% of returns will be restocked, so the clerks will most likely click the “yes” box by habit.
- Make it a Y/N input
- This will FORCE the user to put something in the box. If the box is empty, you cannot continue.
//the actual code will likely be something like this:
//getItem(SKU).addInventory(1);
//where SKU is obtained by scanning the UPC code or manually entering the SKU number
//something like:
//getItem(SKU).addRMAFlag(1);
//or
//getItem(SKU).setRMAFlag(true);
//in the back end, this will set a boolean flag for RMA, or add a count of RMAs to that item