Auditing tools for Cova POS files
Project description
Cova Dispensary POS Audit Tools
An inventory audit tool for speeding up inventory and avoiding errors that occur during processing. This tool will allow users to complete inventory counts with a simple workflow that remedies user error.
Installation and Usage
$ pypi install audit-tools
from audit_tools.sessionmanager import SessionManager
with SessionManager() as session: # invokes the session manager
session.import_data("/path/to/file.xlsx") # imports data from an excel, json or csv file
session.count_product('F7X6A7', 20) # Counts 20 F7X6A7's to the inventory
session.increase_product('F7X6A7', 10) # Increases F7X6A7 to 30 in the inventory
session.reduce_product('F7X6A7', 3) # Reduces F7X6A7 to 27 in the inventory
print(session.get_product('F7X6A7')) # Returns the row of product with SKU 'F7X6A7'
session.parse_session_data() # Updates session dataframes with accurate content
Session Manager
The session manager is the main class that manages the session. It is responsible for importing data,
counting products, and updating the session dataframes. It will take products when SessionManager()
is
called or when the import_data()
method is called.
Testing - will make sure that there is no output file
from audit_tools.sessionmanager import SessionManager
with SessionManager('/path/to/file.xlsx', testing=True) as session:
session.import_data('/path/to/file.xlsx')
Scanner
Not working on it, do not use just there for testing and proof of concept
from audit_tools.sessionmanager import SessionManager
from audit_tools.core.functions.scanner import Scanner
with SessionManager('/path/to/file.xlsx') as session:
# Usage of the scanner is discouraged as it is not thread safe or efficient
# Scanner is mostly for testing purposes
# I do not update the code often in the scanner
scanner = Scanner(session) # Creates a scanner object
scanner.start_count() # Starts the count process
scanner.shutdown() # processes and saves session data to disk
Problems
All the problems that we encounter while processing inventory data during an audit.
- Extremely slow
- Miscounts often occur
- Redundant item checks
- Manual data entry
- User error
Solutions
Our ideas for solution implementations for fixing these problems so that an Audit can be completed successfully with accuracy and speed.
-
Session Manager
- Allows users to start a new session with a products csv or xlsx file. The session manager will process all incoming products and append them to the sessions DataFrame, when you shut down the session manager will parse all the data in the session, complete variance calculations, raise any alerts, and save the session to the updated csv or xlsx file.
-
Scan & Count
- Allows users to scan a SKU and count the number of products to update the session file.
-
Scan & Edit
- Allows user to scan a SKU adn manage the data entry for a specified product in the session.
-
Receipt Parser
- Allows user to upload scan a receipt and the system will parse the receipt and update the session file.
Feature List
This list will include all the features, current and future.
Features | Working Status |
---|---|
Session Manager | In Development |
Scan & Count | Planned |
Scan & Edit | Planned |
Receipt Parser | Planned |
Dev notes: If you come across this project, I am a newish developer, and I am not familiar with the python ecosystem especially poetry. If you are confused on the namings in this project, keep in mind this package was created for a sole reason to help the creator at work, and will be used in tandem with a handheld scanner.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file audit-tools-0.1.8.tar.gz
.
File metadata
- Download URL: audit-tools-0.1.8.tar.gz
- Upload date:
- Size: 8.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.10.2 Linux/5.13.0-1021-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ec0223410d2dc1ec25d9803b85133878bb0919f0ad72342de289410844ee3494 |
|
MD5 | ed13014bb824592710323ce8a1495c2d |
|
BLAKE2b-256 | 600384abab5ad353643743c4849cd7502ec47075e3cd0716abd8f63f6a0baa91 |
File details
Details for the file audit_tools-0.1.8-py3-none-any.whl
.
File metadata
- Download URL: audit_tools-0.1.8-py3-none-any.whl
- Upload date:
- Size: 8.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.10.2 Linux/5.13.0-1021-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bfbbe646eb5c56340e36d571d50b0de32f48d4e9d645c8a69ff99c032e0e6438 |
|
MD5 | 6fd561b094a333ce9af14e4a7386052f |
|
BLAKE2b-256 | cf8b16273f8ac464641cd20a22eeca1e1d9a628ab558e964344d4498dde32d13 |