
I have a requirement to customize the EPOS "add-item" functionality.
Usually adding a item to a sales transaction result in price and discount is added, which is fine. However when returning a item without receipt we want to avoid searching for custom prices and discounts and just use the default item price.
Question is how would you go about doing this. I have investigated quite a bit and it might be the easiest to just let the standard functionality find the custom price/discount and then revert the price to the original price, but I would rather skip the search for custom price and discount. Any thoughts on how to proceed?
*This post is locked for comments
I have the same question (0)there is a standard procedure to invoke the price and discounts. as long as you don't have any data in those tables (price and discount) there won't be any performance impact.
else another option is you need to write a wrapper library for CRT and avoid those database invoke that are not required. (this will consume sometime to develop)