blob: 6c001fdc9a25216ab9d4c8f16c72ab2c85486612 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# dispatch-tracker
Requirements going forward:
* Settings:
* `default_bill_to` must be set
* Each user needs settings:
* `user_{pk}_identity` to refer to the default identity for the user
* `user_{pk}_invoice_number` as the counter for their invoice numbers
* Delete Views are completely fucked--this needs to be fixed
* Drivers will be able to generate a weekly PDF invoice
* Summary page with Invoice-like layout
* Upload Invoice logos on Identity Objects for use in Invoices
* Invoice page that lists invoices
* Somehow check for duplicate invoices generated?
* Change "user" to Vendor on the "Add Load Page"
* Users must be able to initially create new load objects
* Change Name To "Load Pay System" -- we're going to think about it
* Freight Invoicing System
* Weekly Total Invoices from the Company(Driver) to software owner
* /loads
* Give a warning when any loads don't have paperwork attached to them
* Make loads without paperwork blue
* Make loads with paperwork green
* A way for users to be invited via email
* Figure out if auditlog timestamps are fucked or not with timezones
To get a development system setup:
``` bash
cd app
virtualenv env
. env/bin/activate
pip install -r requirements.txt
./manage.py migrate
./manage.py createsuperuser
# This will create some fake records if you wish
./manage.py insert_fake_data --companies 10 --users 10 \
--loads 400 --start-date='-16w' --end-date='+16w'
# Default is 2 weeks for start/end date, no
# defaults for any other options
# Run a local development server, listens to the world
./manage.py runserver 0.0.0.0:8080
```
|