https://github.com/horgix/ordersctl
OrdersCTL - Manager orders tracking
https://github.com/horgix/ordersctl
cli orders ordersctl rust tracking
Last synced: over 1 year ago
JSON representation
OrdersCTL - Manager orders tracking
- Host: GitHub
- URL: https://github.com/horgix/ordersctl
- Owner: Horgix
- Created: 2021-02-17T18:03:46.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-02-18T07:13:15.000Z (over 5 years ago)
- Last Synced: 2025-03-05T17:46:09.072Z (over 1 year ago)
- Topics: cli, orders, ordersctl, rust, tracking
- Language: Rust
- Homepage:
- Size: 15.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OrdersCtl
OrdersCtl is a (for now) dumb CLI to help me track my orders.
It read everything from a file with items such as:
```
- description: "Awesome coffee grinder"
provider: "Amazon"
id: "12345ABCDEFG"
date: "2021-01-31"
content:
- "1x Super Mega Coffee Grinder"
- "1x Coffee Beans 500g"
cost: 42 # USD
status:
confirmed: true
paid: true
shipped: false
received: false
```
... and then prints it as a table:
```
+--------------------------------------+---------------+---------------------+------------+----------+-----------+------+---------+----------+
| Description | Provider | Order ID | Date | Cost | Confirmed | Paid | Shipped | Received |
+--------------------------------------+---------------+---------------------+------------+----------+-----------+------+---------+----------+
| Awesome coffee grinder | Amazon | 12345ABCDEFG | 2021-01-31 | €42 | ✅ | ✅ | ❌ | ❌ |
+--------------------------------------+---------------+---------------------+------------+----------+-----------+------+---------+----------+
```