SimpleInventory
SimpleInventory copied to clipboard
A small inventory/store software application (C# WPF) that lets you run a small store; created for a small school in Cambodia
Software updates would be much easier this way! https://github.com/NetSparkleUpdater/NetSparkle
We should use an actual installer for things. This would allow us to have the client download the necessary .NET Framework, if any. Doing this should require the database to...
Discounts should be available to users and should include a raw amount off (e.g. $2.50 off your purchase) and a % off your purchase or % off of a specific...
* [ ] Allow downloading purchase report as PDF * [ ] View total sales ($$) for the report * [ ] View total profit for the report * [...
We should be able to somehow add customers to the database and scan their items in such a way that we can look up a customer's order/purchase history.
Right now, the old `ItemSoldInfo` model (1 item was bought at the store) is used along with the new `Purchase/PurchasedItem` models (one purchase can have one or more items), and...
In order to fully support currency exchange rates to USD, we need to store the history of changes to this number and use the correct exchange rate when loading reports/historical...
Already added an app settings screen, so fairly trivial to add more settings now.
## Bug Description When you add a new inventory item, the list is not sorted properly in the UI. ## Bug Solution The list should be sorted according to how...