A simple mechanism to record store transaction
A newly established store has no database regarding its item, type, amount or price. Therefore, this project is intended to help it set up a simple mechanism to record transaction.
- Transaction ID
- Item name
- Item amount
- Item price
- This project uses to four kinds of input (transaction ID, item name, amount and price) to record transaction
- This project allows users to input multiple transaction IDs and items
- User input will be processed to generate output in form of
dictionarywithtransaction IDas key anditem name, amount and priceas values - Input from user will be stored in variabel
dictwhich then could be manipulated, mainly throughupdatemodule (explained below)
This project made up of four different modules, namely:
- transaction_input, used to start the project by inputing transaction ID, item name, amount and price
- update, used to update item details (name, amount and/or price)
- delete, used to delete transaction and/or item
- finishing, used to show purchase summary and price to pay
This project could handle simple transaction such as regular data input and purchase summary. It is also accompanied with error catch to avoid any program error. Nevertheless, it is still a simple project and the output is not that eye-catching.






