# dispatch-tracker Requirements going forward: * Be able to set default invoice number * Settings: * `default_bill_to` must be set * Identity Edit page needs a little bit of work for regular users * Delete Views are completely fucked--this needs to be fixed * Upload Invoice logos on Identity Objects for use in Invoices * Change "user" to Vendor on the "Add Load Page" * 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 ```