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

Update release notes

This commit is contained in:
Oliver Walters 2021-01-14 23:51:08 +11:00
parent c7e217636c
commit 31b01bdd1f
2 changed files with 7 additions and 2 deletions

View File

@ -37,6 +37,10 @@ Refer to the [build documentation](../../build/build/#overdue-builds) for more i
- Purchase Orders
- Sales Orders
### Improved Label Printing
[#1212](https://github.com/inventree/InvenTree/pull/1212) significantly improves the existing label printing functionality. Documentation for the new label printing system [can be found here](../../report/labels).
### Improved Permission System
[#1221](https://github.com/inventree/InvenTree/pull/1221) adds new permission roles as follows:
@ -44,6 +48,7 @@ Refer to the [build documentation](../../build/build/#overdue-builds) for more i
- **Part** role split into *Part* and *Part Category* roles
- **Stock** role spit into *Stock Item* and *Stock Location* roles
## Major Bug Fixes
| PR | Description |

View File

@ -4,7 +4,7 @@ title: Custom Labels
## Custom Labels
InvenTree supports printing of custom template-based labels, using the [blabel](https://github.com/Edinburgh-Genome-Foundry/blabel) plugin for Python.
InvenTree supports printing of custom template-based labels, using the [blabel](https://github.com/Edinburgh-Genome-Foundry/blabel) Python library.
Custom labels can be generated using simple HTML templates, with support for QR-codes, and conditional formatting using the Jinja template engine.
@ -15,7 +15,7 @@ Simple (generic) label templates are supplied 'out of the box' with InvenTree -
## Label Templates
Label templates are written using a mixture of [HTML](https://www.w3schools.com/html/) and [CSS](https://www.w3schools.com/css). The blabel plugin is based on [weasyprint](https://weasyprint.org/), which supports a *subset* of HTML and CSS features. In addition to supporting HTML and CSS formatting, the label templates support the Jinja templating engine, allowing conditional formatting of the label data.
Label templates are written using a mixture of [HTML](https://www.w3schools.com/html/) and [CSS](https://www.w3schools.com/css). The blabel library is based on [weasyprint](https://weasyprint.org/), which supports a *subset* of HTML and CSS features. In addition to supporting HTML and CSS formatting, the label templates support the Jinja templating engine, allowing conditional formatting of the label data.
A label template is a single `.html` file which is uploaded to the InvenTree server by the user.