2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-11 01:25:40 +00:00
Commit Graph

4041 Commits

Author SHA1 Message Date
256f8eb924 Add 'batch' field to BuildOutput object
This 'batch' output will be copied to any parts produced as part of this build
2018-04-17 19:10:38 +10:00
982803a0a7 Updated Part model
- Added 'default_location'
- Added 'default_supplier'
2018-04-17 18:23:39 +10:00
45c5edee4d Added 'salable' field to Part model 2018-04-17 18:11:34 +10:00
960f697d02 Merge branch 'master' of https://github.com/inventree/InvenTree 2018-04-17 18:03:44 +10:00
9dc41ba122 Fix requirements
>= rather than ==
2018-04-17 16:58:37 +10:00
fa23767150 Added skeleton for 'build' app 2018-04-17 00:32:02 +10:00
0a2c48eda6 Merge branch 'master' of https://github.com/inventree/InvenTree 2018-04-17 00:03:09 +10:00
86b3092b5e Change action on deleting top-level stock location 2018-04-16 23:29:11 +10:00
937470750b Added helper functions, improved UI 2018-04-16 23:26:02 +10:00
a67d5b58db UI improvements 2018-04-16 23:09:45 +10:00
b6b4189c49 UI tweaks 2018-04-16 22:23:29 +10:00
118d045e50 Improved part logic
- Added field 'buildable' - can this part be made from other parts?
- Added @propery 'supplier_count'
- Improved part detail page with new features
2018-04-16 22:13:31 +10:00
e43439ef5b Function to calculate how many parts can be made with current stock 2018-04-16 21:49:38 +10:00
202a8e65b9 Added URL field to stock item 2018-04-16 21:07:57 +10:00
835144c87f Merge pull request #53 from inventree/stock-track
Stock track
2018-04-16 20:46:52 +10:00
9191d1ae21 PEP fixes 2018-04-16 20:46:21 +10:00
09b357976d Admin for part tracking
- Added 'has_tracking_info' function for StockItem
2018-04-16 20:17:58 +10:00
76ee150ca4 Moved tracking information to StockItem 2018-04-16 20:08:04 +10:00
f7eff8ae98 Added URL field to UniquePart
- e.g. link to external part tracking info page
2018-04-16 01:25:13 +10:00
eb5413b4fa Added requirement for pillow module 2018-04-16 01:17:14 +10:00
a80cf0aace Added some missing data on supplier pages 2018-04-16 01:14:19 +10:00
a91ff58d84 Flakey
Fixing python style errors
2018-04-16 01:02:17 +10:00
1027e812bc Use django_import_export
- Allows import / export to multiple file formats
- Provides admin interface
- Work to be done to perform data tweaking
- It would be really cool if the data fields could be associated 'intelligently'
 (i.e. not just based on PK, but name-lookup too).
2018-04-16 00:44:32 +10:00
8e6de1b832 Add pages for part tracking
- Edit / Delete / Create tracking info
- Improvements to many pages
2018-04-16 00:30:57 +10:00
55b533d3ef Added edit views for stock
- StockItem
- StockLocation
2018-04-15 23:27:56 +10:00
3c844fc77f Redirect some links 2018-04-15 21:47:20 +10:00
5861296974 Add view for BomItem model
- Create BOM item (auto-add to a parent part)
- Edit / delete
- View details
2018-04-15 21:29:24 +10:00
24f3e8579c Merge branch 'master' of https://github.com/inventree/InvenTree 2018-04-15 20:24:55 +10:00
eaf1076009 Ignore PyCharm project files 2018-04-15 20:24:18 +10:00
0632609a80 Remove weird line in Inventree/urls.py 2018-04-15 20:14:53 +10:00
99bb51c76d Migrations 2018-04-15 20:11:27 +10:00
9d89db34b2 Improvements to stock page
- Fixed URL / view (use class views)
- Better slug lookup
- Better table rendering using ol' mate bootstrap
2018-04-15 20:10:49 +10:00
ab4b91cd46 Added pages for /supplier/
- Supplier list view
- Supplier detail view /supplier/<pk>/
- Added create / edit / delete views for supplier
- Supplier part detail at /supplier/part/<pk>
- Added create / edit / delete views for supplier part
- Added some templates to make things easier
2018-04-15 15:35:01 +10:00
8232baeed7 Improved list and detail views for supplier
Huzzah for bootstrap
2018-04-15 13:49:47 +10:00
9e6c7350f9 Skeleton for part tracking
- Added  list and detail view
- Fixed some links
2018-04-15 12:35:56 +10:00
9f42085731 Add list page for tracking info
- Needs filtering (currently displays ALL unique parts)
2018-04-15 12:07:14 +10:00
cb5e2f1a8c Danger button fix 2018-04-15 11:41:27 +10:00
17b9f4ec8c Added pages for editing categories
- category-detail
- category-delete
- category-edit
- category-new
2018-04-15 11:40:03 +10:00
5b5b8f4d12 Fix parent error when deleting category
- Any child categories have their parent set to the parent of the deleted category
2018-04-15 11:25:57 +10:00
2c2db4fffb Added "new part" feature
- Create a new part
- Button provided on the "category" list page
2018-04-15 10:08:44 +10:00
ff2082b156 Fixes for bootstrap
- Now using bootstrap3 which seems to work better
- Had to make changes to navbar and part image preview
2018-04-15 09:38:59 +10:00
54e78bf468 Ability to delete part
- Provides confirmation form
- Shows the flow-on effects (model.CASCADE) from deleting this part
- Bootstrap makes it prettyful
2018-04-15 09:08:35 +10:00
21e3f415c6 Added ability to edit parts
- installed django_crispy_forms
- added EditPartForm in part/forms.py
- Vastly simplified parts views by using class views 
  (need to do this for the other apps too!)
2018-04-15 01:18:12 +10:00
8578c8a1a7 Updated breadcrumbs to use bootstrap 2018-04-14 23:42:24 +10:00
204874dcb4 Changed some category views to use boostrap list-group
- Looks much fancier!
2018-04-14 23:05:36 +10:00
0e2c5e6af5 Add tabs to part detail view
- Currently each "tab" reloads the entire page but with the new tab selected
- We could use bootstrap js to do this without reloading (load ALL part data)
2018-04-14 22:10:19 +10:00
830d33763e Fix deletion of part category and stock location
- Category up part updated to parent
- Location of item updated to parent
2018-04-14 20:33:53 +10:00
0550dad2d4 Added ability to attach file(s) to a part object
- Not yet fully working!
2018-04-14 18:44:56 +10:00
226828791f Added migration files to git index 2018-04-14 18:36:06 +10:00
a31ec388f4 Added static files directory
- Improved display of part image
2018-04-14 18:22:31 +10:00