2
0
mirror of https://github.com/inventree/inventree-docs.git synced 2025-04-28 05:36:46 +00:00

Merge remote-tracking branch 'inventree/master'

This commit is contained in:
Oliver Walters 2021-02-14 22:04:14 +11:00
commit bebf945130
2 changed files with 7 additions and 3 deletions

View File

@ -94,7 +94,7 @@ from inventree.stock import StockItem
furniture = PartCategory.create(api, {
'name': 'Furniture',
'description': 'Chairs, tables, etc',
parent, 7
'parent': 7,
})
## Create a new Part
@ -113,7 +113,7 @@ item = StockItem.create(api, {
'part': couch.pk,
'quantity': 5,
'notes': 'A stack of couches',
location: 10, ## PK of a StockLocation already in the database...
'location': 10, ## PK of a StockLocation already in the database...
})
```
```

View File

@ -29,3 +29,7 @@ Refer to the [report documentation](../../report/report) for further information
| --- | --- |
| [#1258](https://github.com/inventree/InvenTree/pull/1258) | Fixes bug causing part images to sometimes be deleted |
| [#1267](https://github.com/inventree/InvenTree/pull/1267) | Fixes issue with legacy migration file when upgrading from very old installation |
| [#1288](https://github.com/inventree/InvenTree/pull/1288) | Fixes bug which caused errors with table search |
| [#1289](https://github.com/inventree/InvenTree/pull/1289) | Fixes display bug when a part "units" field is empty |
| [#1290](https://github.com/inventree/InvenTree/pull/1290) | Fixes CSS issues with long error messages in modal forms |
| [#1294](https://github.com/inventree/InvenTree/pull/1294) | Allows access to static files without being logged in |