This commit is contained in:
SpudGunMan
2025-10-28 14:02:18 -07:00
parent 82f55c6a32
commit 8bc81cee00
+7 -2
View File
@@ -153,6 +153,8 @@ The checklist module provides asset tracking and accountability features with sa
- `checklistapprove <id>` - Approve a pending check-in (admin)
- `checklistdeny <id>` - Deny/remove a check-in (admin)
more at [modules/checklist.md](modules/checklist.md)
#### Examples
```
@@ -192,10 +194,11 @@ The inventory module provides a full point-of-sale (POS) system with inventory t
| Command | Description |
|--------------|-----------------------------------------------|
| `itemadd <name> <price> <qty> [location]` | Add new item to inventory |
| `itemadd <name> <qty> [price] [loc]` | Add new item to inventory |
| `itemremove <name>` | Remove item from inventory |
| `itemreset <name> [price=X] [qty=Y]` | Update item price or quantity |
| `itemadd <name> <qty> [price] [loc]` | Update item price or quantity |
| `itemsell <name> <qty> [notes]` | Quick sale (bypasses cart) |
| `itemloan <name> <note>` - Loan/checkout an item |
| `itemreturn <transaction_id>` | Reverse a transaction |
| `itemlist` | View all inventory items |
| `itemstats` | View today's sales statistics |
@@ -210,6 +213,8 @@ The inventory module provides a full point-of-sale (POS) system with inventory t
| `cartbuy` or `cartsell` | Complete transaction |
| `cartclear` | Empty your cart |
more at [modules/inventory.py](modules/inventory.py)
#### Features
- **Transaction Tracking**: All sales are logged with timestamps and user information