inventree-part-templates


Nameinventree-part-templates JSON
Version 0.3.1 PyPI version JSON
download
home_pagehttps://github.com/cmidgley/inventree-part-templates
SummaryInvenTree plugin that extends reporting with customizable part category templates
upload_time2024-04-19 00:05:56
maintainerNone
docs_urlNone
authorChris Midgley
requires_python>=3.9
licenseMIT
keywords inventree inventreeplugins plugins label report part category print template
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            Have you carefully crafted your [InvenTree](https://inventree.org) deployment only to get labels and
reports that appear meaningless:

<img alt="C25076 | 0402WGF1000TCE"
src="https://github.com/cmidgley/inventree-part-templates/raw/main/README-images/default-label-example.png"
style="border: black 1px solid" width="200px">

Or have wordy and inconsistent descriptions:

<img alt="0402WGF1000TCE Passives / Resistors 62.5mW 100Ω 50V Thick Film Resistors ±200ppm/℃ ±1% 0402 Chip Resistor - Surface Mount ROHS"
src="https://github.com/cmidgley/inventree-part-templates/raw/main/README-images/detailed-label-example.png"
style="border: black 1px solid" width="200px">

Wouldn't you rather have concise, detailed information from your part's parameters?

<img alt="100ohm 62.5mw 1% SMD 0402" src="https://github.com/cmidgley/inventree-part-templates/raw/main/README-images/29mm-label-example.png" style="border: black 1px
solid" width="200px">

# InvenTree Part Templates

**InvenTree-Part-Templates** is a plugin for InvenTree that enhances InvenTree's label and reporting
templates. You can create new custom context properties, adjust template values for those properties
based on the parts' category, and utilize the `part_templates` context variable in your report and
label templates for easy, consistent reporting. Additionally, this plugin allows you to clean up
inconsistencies in parameter values, significantly improving the quality of your labels and reports.

## Introducing Context Properties

Context Properties are a feature of InvenTree Part Templates that provide a straightforward way to
include contextual information about a part in a report. A single Context Property can have
different values depending on the context of the part, such as the category. This is achieved by
defining the context property template on catalog items (or directly on a part). For example, a part
that is a resistor might include information about resistance, wattage, and tolerance, whereas a
connector might display pin count, pitch, and current ratings. You can define custom templates for
on any catalog item, and even directly on a part, for any of the defined context properties.

In short, it's a way to define a name to use in your reporting templates, which then uses the part
to find the best template, which in turn defines the information to include
in the report.  It may be a bit confusing at first, with templates referring to other templates, but
it's surprisingly easy to use and highly capable.

Pulling this all together in a simple example, let's say you have already created a context property
called `part_details`.  You can reference this property in your labels and reports just like any
other template property (as a property of `part_parameters`):

```html
<div class='category'>
  {{ part_templates.part_details }}
</div>
```

When you created the `part_details` context property, you defined a default
template value (optional, but highly recommended).  This is used when no contextual template can be
found for the part, ensuring the report still has usable content.  A default template might be:

```
{{ part.name }} ({{ part.ipn }}): {{ category.name }}
```

When you run your report, `{{ part_templates.part_details }}` will resolve to `{{ part.name }} ({{
part.ipn }}): {{ category.name }}` which in turn will process that template and result in something like this:

```
MFK3293C99-3Q (C19239): Resistor
```

Where this gets much more interesting is when you define templates for these context properties on
different catalog items in your InvenTree database.  You can add template values on catalog entries,
and even directly on parts, to supply detailed contextual templates for those parts.  You have full
access to all the properties of `part`, `category`, `parameter` and `stock` (if applicable to a stock
report/label; otherwise, it is empty) in the context property template.   When a context property is
used, the "closest" template is used, starting with the part and moving up the catalog hierarchy,
and if none is found, the default template is used.


For example, let's say your catalog has an entry called "Integrated Circuits" and a subcategory
called "Buffers." You can add a `part_details` template on "Integrated Circuits" to include the
"Number of Gates" property (`{{ parameter|item:"Number of Gates" }}`), but have none on the
"Integrated Circuits / Buffers." When the report is run, it checks first on the part (which has no
`part_details` template), then it checks "Buffers" (also none), and then it finds it on "Integrated
Circuits" and returns the "Number of Gates" property on the part. 

Similarly, any value that isn't found (such as a property not on a part) will be ignored (resulting
in a blank output). This is beneficial for defining templates higher up in the catalog hierarchy
that might reference properties that do not exist on all children.

## Installation

InvenTree Part Templates is [installed](https://docs.inventree.org/en/stable/extend/plugins/install/) like most plugins. First, verify that plugins are enabled by visiting the `Settings / Plugin Settings / Plugins` page, and ensure the `Enable URL integration`, `Enable app integration`, and `Check plugins on startup` settings (if using Docker containers) are all enabled.

Then, install the plugin using your preferred method. The easiest methods are:

- The best approach, especially when using Docker, is to edit your `inventree_data/plugins.txt` file
  to add the package name (`inventree-part-templates`). Restart InvenTree for the package to be downloaded and installed.
- Visit the `Settings / Plugin Settings / Plugins` page in the management console and install it
  from there.

Once installed, verify the installation by checking the `Settings / Plugin Settings / Plugins` page. There should be no errors from plugins at the bottom of the page, and the `PartTemplatesPlugin` should be listed.

# Plugin settings

The first step is to determine which context properties you want to start with. You can have up to five context properties (if you need more, please open a GitHub issue). Commonly, a part description and a category property are used, both of which are set as defaults. You can remove or edit these as needed.

> The reason a category context property is commonly used is that sometimes the category name needs
> to show the parent category to make sense, such as "Capacitor / Aluminum." However, other times it
> is unnecessary, such as "Passive / Resistor." A default context property template of
> `{{ category.parent.name }} / {{ category.name }}` works well for "Capacitor / Aluminum", with
> `{{ category.name }}` (or just `Resistor`) used as the template on the "Registor" category.

Visit the `Settings / Plugin Settings / Plugins` page to set up the context properties as well as the settings for rights to manage templates:

![InvenTree Part Templates Settings page](https://github.com/cmidgley/inventree-part-templates/raw/main/README-images/settings.png)

The first two fields control access rights for viewing and editing the templates on Category and Part pages. If both rights are disabled (edit and view), then the Part Templates panel will not be included on the page.

The remaining ten fields are for defining the name and default template for up to five context properties.

## Use in Labels and Reports

With the plugin installed and some context properties defined, you can now update your reports and
labels to incorporate them. Initially, they will display values from the default template, but as
you add category- and part-specific templates, the content will automatically update to reflect
these changes. By integrating them into your labels and reports now, you can fine-tune and adjust
your context property templates to meet your usability and size requirements.

Adjusting a template to use context properties is straightforward. Simply open your template in any text editor and incorporate the syntax `{{ part_templates.<your_context_property_name> }}`. Afterward, upload it to your label or report system.

You can then print your report or label, for instance, using the InvenTree PDF Label Printer, to view how the default template for your context property functions on the screen.

## Context Templates

The next step is to adjust the template value so that it is contextually appropriate. This adjustment is typically made on catalog items but can also be applied to individual parts. For instance, if you have the catalog structure `Electronics / Passives / Capacitors / Aluminum`, you might want a context template on `Capacitors` that is specific to all capacitor types (Aluminum, Tantalum, MLCC, etc.), allowing shared values across these different types.

On the Part and Category pages, provided you have the rights to view and edit the Part Templates (refer to [Plugin Settings](#plugin-settings)), you will see a new "Part Templates" panel. For Part templates, the panel will display as follows:

![InvenTree Part Templates Panel](https://github.com/cmidgley/inventree-part-templates/raw/main/README-images/part-templates-panel.png)

This panel shows the context properties, the values each property will resolve to when the template is applied to a specific part, and the template currently in use (including any inherited templates).

When you view a Catalog item, the template values column is not included:

![InvenTree Catalog Templates Panel](https://github.com/cmidgley/inventree-part-templates/raw/main/README-images/catalog-templates-panel.png)

Use the edit buttons on the right (edit, delete) to modify the templates for this specific catalog
or part template.

## Template Context Variables and Filters

The context templates are standard InvenTree/Django templates and support several context variables along with a few new filters. The context variables include:

- `part`: The current report/label [part](https://docs.inventree.org/en/stable/report/context_variables/#part)
- `category`: The current [part category](https://docs.inventree.org/en/stable/report/context_variables/#part-category)
- `parameters`: A shorthand for `part.parameters`
- `stock`: The current [stock item](https://docs.inventree.org/en/stable/report/context_variables/#stock), if being reported on. If there is no specific stock item, such as in a part-only report, this variable will be empty. Use `{% if stock %}` to check for stock availability.

These variables facilitate dynamic content generation in templates, enhancing the adaptability and relevance of your reports and labels.

### Context Property Template Filters

The following filters are available on context property templates and can be accessed by loading with `{% load part_templates %}` in your labels/reports:

- `item:"<name>"`: Retrieves a property name from a dictionary and [scrubs](#parameter-scrubbing) it if filters exist. Example: `{{ parameters|item:"Rated Voltage" }}`
- `value:"<name>"`: Retrieves a property name from a dictionary without any scrubbing.
- `scrub:"<name>"`: [Scrubs](#parameter-scrubbing) the associated string using a filter. Example: `{{ part.name|scrub:"MPN" }}`

The following are some examples of using context parameter templates with filters:

- **Resistor description**: `{{ parameters|item:"Resistance" }} {{ parameters|item:"Rated Power" }} {{ parameters|item:"Tolerance" }} {{ parameters|item:"Mounting Type" }} {{ parameters|item:"Package Type" }}`
- **Resistor short category**: `RES`
- **Capacitor description**: `{{ parameters|item:"Capacitance" }} {{ parameters|item:"Tolerance" }} {{ parameters|item:"Rated Voltage" }} {{ parameters|item:"Mounting Type" }} {{ parameters|item:"Package Type" }}`
- **Capacitor short category**: `CAP`
- **Capacitor/Tantalum short category**: `CAP TANT`
- **Conditional example**: `{{ parameters|item:"Supply Voltage" }} {% if not parameters|item:"Supply Voltage" %}{{ parameters|item:"Input Voltage" }} {% endif %} {{ parameters|item:"Type" }}`

# Parameter Scrubbing

Parameters on parts are convienent, but often not very consistent.  This is especially true when
automatically importing parts and parameters from supplies such as DigiKey, Mouser and LCSC.  For
example, a parameter of "Mounting Type" might be "SMT", "SMD", "Surface Mount" or even "[Brick
Nogging](https://www.eevblog.com/forum/chat/where-does-all-the-weird-chinese-component-terminology-come-from/msg4313581/#msg4313581)"!

Parameter scrubbing is a way to cleanse properties, using [Regular
Expressions](https://en.wikipedia.org/wiki/Regular_expression).  The cleansing does not change the
property value in the database, so there is no risk of accidential loss of information by scrubbing.
It is used only to resolve templates for labels/reports, and only when you use the `item` or `scrub`
[filters](#context-property-template-filters).

The file
[part_templates.yaml](https://github.com/cmidgley/inventree-part-templates/blob/main/inventree_part_templates/part_templates.yaml)
defines a collection of filters organized by names (which are usually the same as a part's property
name), followed by a list of regular expression filters and replacement strings.  The default
`part_templates.yaml` file
provided with the plugin is based on property names used by [InvenTree Part
Import](https://github.com/30350n/inventree_part_import) using a configuration similar to [this
one](https://github.com/30350n/inventree_part_import_config).  You can specify your own template
file using the environment variable `PART_TEMPLATES_CONFIG_FILE`, such as in your `.env` file:

```
PART_TEMPLATES_CONFIG_FILE=./inventree-data/part_templates.yaml
```

Here is a simple example of filtering `Brick Nogging` and `Surface Mount` to be `SMD`:

```yaml
filters:
  "Mounting Type":
    - pattern: "^Brick .*"
      replacement: "SMD"
    - pattern: "^Surface Mount.*"
      replacement: "SMD"
```

While the `item:"<Property Name>"` filter automatically applies the name of the property to find the
filter, you can also use `scrub:"<Any Name>"` to scrub a string.  For example, you might define a
filter called `MPN` like this:

```yaml
filters:
  "MPN":
    # remove everything after a comma
    - pattern: "^\\s*([^,\\s]*).*"
      replacement: "\\1"
```

And then in your template use `{{ part.name|scrub:"MPN" }}` to apply the filter to the string
resulting from `part.name`.  In this case, if the MPN has a comma in it, everything following the
comma is removed.

There is also a `_GLOBAL` filter category, which is applied automatically on any scrubbed value.
For example:

```yaml
  "_GLOBAL":
    # currently, InvenTree does not handle reporting with chinese characters (they
    # become spaces).  Until that is fixed, this rule removes them
    - pattern: "[\u4e00-\u9fff\u3400-\u4dbf\uff00-\uffef]"
      replacement: ""
```

# Example Labels

See the [example
labels](https://github.com/cmidgley/inventree-part-templates/tree/main/inventree_part_templates/example_labels) folder for
various labels designed for the Brother QL-810W label printer. These labels utilize 29mm endless tape and are available in three sizes:

- `inventree-label-part-29mm`: This is a full-width label that includes long descriptions and detailed category names. Set the label width to 52 and height to 27 in the part label settings.
- `inventree-label-part-16mm`: This narrow and long label is ideal for placing on the edge of a container. It features a horizontal cut line for manual cutting (easily adaptable for 12mm endless tape). Set the label width to 60 and height to 28.
- `inventree-label-part-smdbox`: A very small label, perfectly sized for small, spring-hinged,
  modular ["WENTAI"](https://www.adafruit.com/product/427) boxes. This label is an excellent example of the need for short category names. Set the label width to 15 and height to 26.

 > The label width determines the cutting point of the label, and the height influences the scaling.
 > A smaller height results in a larger label appearance, and these dimensions have been selected to
 > ensure a clean fit.

  These labels utilize the following context properties:

  - `description`: A long contextual part description.
  - `short-desc`: A shorter version of the part description, suitable for the smaller labels.
  - `category`: A descriptive category name.
  - `short-cat`: A very short category, limited to a maximum of 6 characters per word and up to two words.

Also, note the use of another property, `part_templates.error`.  This is set whenever the templates
fail to render, facilitating easier debugging of template issues. It is a best practice to check for
both `part_templates` and `part_templates.error` as shown below:

```html
{% if not part_templates %}
    <div class="error">Plugin inventree-part-templates required</div>
{% elif part_templates.error %}
    <div class="error">{{ part_templates.error }}</div>
{% else %}
    ... your label here ...
{% endif %}

```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/cmidgley/inventree-part-templates",
    "name": "inventree-part-templates",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "inventree inventreeplugins plugins label report part category print template",
    "author": "Chris Midgley",
    "author_email": "chris@koose.com",
    "download_url": null,
    "platform": null,
    "description": "Have you carefully crafted your [InvenTree](https://inventree.org) deployment only to get labels and\nreports that appear meaningless:\n\n<img alt=\"C25076 | 0402WGF1000TCE\"\nsrc=\"https://github.com/cmidgley/inventree-part-templates/raw/main/README-images/default-label-example.png\"\nstyle=\"border: black 1px solid\" width=\"200px\">\n\nOr have wordy and inconsistent descriptions:\n\n<img alt=\"0402WGF1000TCE Passives / Resistors 62.5mW 100\u03a9 50V Thick Film Resistors \u00b1200ppm/\u2103 \u00b11% 0402 Chip Resistor - Surface Mount ROHS\"\nsrc=\"https://github.com/cmidgley/inventree-part-templates/raw/main/README-images/detailed-label-example.png\"\nstyle=\"border: black 1px solid\" width=\"200px\">\n\nWouldn't you rather have concise, detailed information from your part's parameters?\n\n<img alt=\"100ohm 62.5mw 1% SMD 0402\" src=\"https://github.com/cmidgley/inventree-part-templates/raw/main/README-images/29mm-label-example.png\" style=\"border: black 1px\nsolid\" width=\"200px\">\n\n# InvenTree Part Templates\n\n**InvenTree-Part-Templates** is a plugin for InvenTree that enhances InvenTree's label and reporting\ntemplates. You can create new custom context properties, adjust template values for those properties\nbased on the parts' category, and utilize the `part_templates` context variable in your report and\nlabel templates for easy, consistent reporting. Additionally, this plugin allows you to clean up\ninconsistencies in parameter values, significantly improving the quality of your labels and reports.\n\n## Introducing Context Properties\n\nContext Properties are a feature of InvenTree Part Templates that provide a straightforward way to\ninclude contextual information about a part in a report. A single Context Property can have\ndifferent values depending on the context of the part, such as the category. This is achieved by\ndefining the context property template on catalog items (or directly on a part). For example, a part\nthat is a resistor might include information about resistance, wattage, and tolerance, whereas a\nconnector might display pin count, pitch, and current ratings. You can define custom templates for\non any catalog item, and even directly on a part, for any of the defined context properties.\n\nIn short, it's a way to define a name to use in your reporting templates, which then uses the part\nto find the best template, which in turn defines the information to include\nin the report.  It may be a bit confusing at first, with templates referring to other templates, but\nit's surprisingly easy to use and highly capable.\n\nPulling this all together in a simple example, let's say you have already created a context property\ncalled `part_details`.  You can reference this property in your labels and reports just like any\nother template property (as a property of `part_parameters`):\n\n```html\n<div class='category'>\n  {{ part_templates.part_details }}\n</div>\n```\n\nWhen you created the `part_details` context property, you defined a default\ntemplate value (optional, but highly recommended).  This is used when no contextual template can be\nfound for the part, ensuring the report still has usable content.  A default template might be:\n\n```\n{{ part.name }} ({{ part.ipn }}): {{ category.name }}\n```\n\nWhen you run your report, `{{ part_templates.part_details }}` will resolve to `{{ part.name }} ({{\npart.ipn }}): {{ category.name }}` which in turn will process that template and result in something like this:\n\n```\nMFK3293C99-3Q (C19239): Resistor\n```\n\nWhere this gets much more interesting is when you define templates for these context properties on\ndifferent catalog items in your InvenTree database.  You can add template values on catalog entries,\nand even directly on parts, to supply detailed contextual templates for those parts.  You have full\naccess to all the properties of `part`, `category`, `parameter` and `stock` (if applicable to a stock\nreport/label; otherwise, it is empty) in the context property template.   When a context property is\nused, the \"closest\" template is used, starting with the part and moving up the catalog hierarchy,\nand if none is found, the default template is used.\n\n\nFor example, let's say your catalog has an entry called \"Integrated Circuits\" and a subcategory\ncalled \"Buffers.\" You can add a `part_details` template on \"Integrated Circuits\" to include the\n\"Number of Gates\" property (`{{ parameter|item:\"Number of Gates\" }}`), but have none on the\n\"Integrated Circuits / Buffers.\" When the report is run, it checks first on the part (which has no\n`part_details` template), then it checks \"Buffers\" (also none), and then it finds it on \"Integrated\nCircuits\" and returns the \"Number of Gates\" property on the part. \n\nSimilarly, any value that isn't found (such as a property not on a part) will be ignored (resulting\nin a blank output). This is beneficial for defining templates higher up in the catalog hierarchy\nthat might reference properties that do not exist on all children.\n\n## Installation\n\nInvenTree Part Templates is [installed](https://docs.inventree.org/en/stable/extend/plugins/install/) like most plugins. First, verify that plugins are enabled by visiting the `Settings / Plugin Settings / Plugins` page, and ensure the `Enable URL integration`, `Enable app integration`, and `Check plugins on startup` settings (if using Docker containers) are all enabled.\n\nThen, install the plugin using your preferred method. The easiest methods are:\n\n- The best approach, especially when using Docker, is to edit your `inventree_data/plugins.txt` file\n  to add the package name (`inventree-part-templates`). Restart InvenTree for the package to be downloaded and installed.\n- Visit the `Settings / Plugin Settings / Plugins` page in the management console and install it\n  from there.\n\nOnce installed, verify the installation by checking the `Settings / Plugin Settings / Plugins` page. There should be no errors from plugins at the bottom of the page, and the `PartTemplatesPlugin` should be listed.\n\n# Plugin settings\n\nThe first step is to determine which context properties you want to start with. You can have up to five context properties (if you need more, please open a GitHub issue). Commonly, a part description and a category property are used, both of which are set as defaults. You can remove or edit these as needed.\n\n> The reason a category context property is commonly used is that sometimes the category name needs\n> to show the parent category to make sense, such as \"Capacitor / Aluminum.\" However, other times it\n> is unnecessary, such as \"Passive / Resistor.\" A default context property template of\n> `{{ category.parent.name }} / {{ category.name }}` works well for \"Capacitor / Aluminum\", with\n> `{{ category.name }}` (or just `Resistor`) used as the template on the \"Registor\" category.\n\nVisit the `Settings / Plugin Settings / Plugins` page to set up the context properties as well as the settings for rights to manage templates:\n\n![InvenTree Part Templates Settings page](https://github.com/cmidgley/inventree-part-templates/raw/main/README-images/settings.png)\n\nThe first two fields control access rights for viewing and editing the templates on Category and Part pages. If both rights are disabled (edit and view), then the Part Templates panel will not be included on the page.\n\nThe remaining ten fields are for defining the name and default template for up to five context properties.\n\n## Use in Labels and Reports\n\nWith the plugin installed and some context properties defined, you can now update your reports and\nlabels to incorporate them. Initially, they will display values from the default template, but as\nyou add category- and part-specific templates, the content will automatically update to reflect\nthese changes. By integrating them into your labels and reports now, you can fine-tune and adjust\nyour context property templates to meet your usability and size requirements.\n\nAdjusting a template to use context properties is straightforward. Simply open your template in any text editor and incorporate the syntax `{{ part_templates.<your_context_property_name> }}`. Afterward, upload it to your label or report system.\n\nYou can then print your report or label, for instance, using the InvenTree PDF Label Printer, to view how the default template for your context property functions on the screen.\n\n## Context Templates\n\nThe next step is to adjust the template value so that it is contextually appropriate. This adjustment is typically made on catalog items but can also be applied to individual parts. For instance, if you have the catalog structure `Electronics / Passives / Capacitors / Aluminum`, you might want a context template on `Capacitors` that is specific to all capacitor types (Aluminum, Tantalum, MLCC, etc.), allowing shared values across these different types.\n\nOn the Part and Category pages, provided you have the rights to view and edit the Part Templates (refer to [Plugin Settings](#plugin-settings)), you will see a new \"Part Templates\" panel. For Part templates, the panel will display as follows:\n\n![InvenTree Part Templates Panel](https://github.com/cmidgley/inventree-part-templates/raw/main/README-images/part-templates-panel.png)\n\nThis panel shows the context properties, the values each property will resolve to when the template is applied to a specific part, and the template currently in use (including any inherited templates).\n\nWhen you view a Catalog item, the template values column is not included:\n\n![InvenTree Catalog Templates Panel](https://github.com/cmidgley/inventree-part-templates/raw/main/README-images/catalog-templates-panel.png)\n\nUse the edit buttons on the right (edit, delete) to modify the templates for this specific catalog\nor part template.\n\n## Template Context Variables and Filters\n\nThe context templates are standard InvenTree/Django templates and support several context variables along with a few new filters. The context variables include:\n\n- `part`: The current report/label [part](https://docs.inventree.org/en/stable/report/context_variables/#part)\n- `category`: The current [part category](https://docs.inventree.org/en/stable/report/context_variables/#part-category)\n- `parameters`: A shorthand for `part.parameters`\n- `stock`: The current [stock item](https://docs.inventree.org/en/stable/report/context_variables/#stock), if being reported on. If there is no specific stock item, such as in a part-only report, this variable will be empty. Use `{% if stock %}` to check for stock availability.\n\nThese variables facilitate dynamic content generation in templates, enhancing the adaptability and relevance of your reports and labels.\n\n### Context Property Template Filters\n\nThe following filters are available on context property templates and can be accessed by loading with `{% load part_templates %}` in your labels/reports:\n\n- `item:\"<name>\"`: Retrieves a property name from a dictionary and [scrubs](#parameter-scrubbing) it if filters exist. Example: `{{ parameters|item:\"Rated Voltage\" }}`\n- `value:\"<name>\"`: Retrieves a property name from a dictionary without any scrubbing.\n- `scrub:\"<name>\"`: [Scrubs](#parameter-scrubbing) the associated string using a filter. Example: `{{ part.name|scrub:\"MPN\" }}`\n\nThe following are some examples of using context parameter templates with filters:\n\n- **Resistor description**: `{{ parameters|item:\"Resistance\" }} {{ parameters|item:\"Rated Power\" }} {{ parameters|item:\"Tolerance\" }} {{ parameters|item:\"Mounting Type\" }} {{ parameters|item:\"Package Type\" }}`\n- **Resistor short category**: `RES`\n- **Capacitor description**: `{{ parameters|item:\"Capacitance\" }} {{ parameters|item:\"Tolerance\" }} {{ parameters|item:\"Rated Voltage\" }} {{ parameters|item:\"Mounting Type\" }} {{ parameters|item:\"Package Type\" }}`\n- **Capacitor short category**: `CAP`\n- **Capacitor/Tantalum short category**: `CAP TANT`\n- **Conditional example**: `{{ parameters|item:\"Supply Voltage\" }} {% if not parameters|item:\"Supply Voltage\" %}{{ parameters|item:\"Input Voltage\" }} {% endif %} {{ parameters|item:\"Type\" }}`\n\n# Parameter Scrubbing\n\nParameters on parts are convienent, but often not very consistent.  This is especially true when\nautomatically importing parts and parameters from supplies such as DigiKey, Mouser and LCSC.  For\nexample, a parameter of \"Mounting Type\" might be \"SMT\", \"SMD\", \"Surface Mount\" or even \"[Brick\nNogging](https://www.eevblog.com/forum/chat/where-does-all-the-weird-chinese-component-terminology-come-from/msg4313581/#msg4313581)\"!\n\nParameter scrubbing is a way to cleanse properties, using [Regular\nExpressions](https://en.wikipedia.org/wiki/Regular_expression).  The cleansing does not change the\nproperty value in the database, so there is no risk of accidential loss of information by scrubbing.\nIt is used only to resolve templates for labels/reports, and only when you use the `item` or `scrub`\n[filters](#context-property-template-filters).\n\nThe file\n[part_templates.yaml](https://github.com/cmidgley/inventree-part-templates/blob/main/inventree_part_templates/part_templates.yaml)\ndefines a collection of filters organized by names (which are usually the same as a part's property\nname), followed by a list of regular expression filters and replacement strings.  The default\n`part_templates.yaml` file\nprovided with the plugin is based on property names used by [InvenTree Part\nImport](https://github.com/30350n/inventree_part_import) using a configuration similar to [this\none](https://github.com/30350n/inventree_part_import_config).  You can specify your own template\nfile using the environment variable `PART_TEMPLATES_CONFIG_FILE`, such as in your `.env` file:\n\n```\nPART_TEMPLATES_CONFIG_FILE=./inventree-data/part_templates.yaml\n```\n\nHere is a simple example of filtering `Brick Nogging` and `Surface Mount` to be `SMD`:\n\n```yaml\nfilters:\n  \"Mounting Type\":\n    - pattern: \"^Brick .*\"\n      replacement: \"SMD\"\n    - pattern: \"^Surface Mount.*\"\n      replacement: \"SMD\"\n```\n\nWhile the `item:\"<Property Name>\"` filter automatically applies the name of the property to find the\nfilter, you can also use `scrub:\"<Any Name>\"` to scrub a string.  For example, you might define a\nfilter called `MPN` like this:\n\n```yaml\nfilters:\n  \"MPN\":\n    # remove everything after a comma\n    - pattern: \"^\\\\s*([^,\\\\s]*).*\"\n      replacement: \"\\\\1\"\n```\n\nAnd then in your template use `{{ part.name|scrub:\"MPN\" }}` to apply the filter to the string\nresulting from `part.name`.  In this case, if the MPN has a comma in it, everything following the\ncomma is removed.\n\nThere is also a `_GLOBAL` filter category, which is applied automatically on any scrubbed value.\nFor example:\n\n```yaml\n  \"_GLOBAL\":\n    # currently, InvenTree does not handle reporting with chinese characters (they\n    # become spaces).  Until that is fixed, this rule removes them\n    - pattern: \"[\\u4e00-\\u9fff\\u3400-\\u4dbf\\uff00-\\uffef]\"\n      replacement: \"\"\n```\n\n# Example Labels\n\nSee the [example\nlabels](https://github.com/cmidgley/inventree-part-templates/tree/main/inventree_part_templates/example_labels) folder for\nvarious labels designed for the Brother QL-810W label printer. These labels utilize 29mm endless tape and are available in three sizes:\n\n- `inventree-label-part-29mm`: This is a full-width label that includes long descriptions and detailed category names. Set the label width to 52 and height to 27 in the part label settings.\n- `inventree-label-part-16mm`: This narrow and long label is ideal for placing on the edge of a container. It features a horizontal cut line for manual cutting (easily adaptable for 12mm endless tape). Set the label width to 60 and height to 28.\n- `inventree-label-part-smdbox`: A very small label, perfectly sized for small, spring-hinged,\n  modular [\"WENTAI\"](https://www.adafruit.com/product/427) boxes. This label is an excellent example of the need for short category names. Set the label width to 15 and height to 26.\n\n > The label width determines the cutting point of the label, and the height influences the scaling.\n > A smaller height results in a larger label appearance, and these dimensions have been selected to\n > ensure a clean fit.\n\n  These labels utilize the following context properties:\n\n  - `description`: A long contextual part description.\n  - `short-desc`: A shorter version of the part description, suitable for the smaller labels.\n  - `category`: A descriptive category name.\n  - `short-cat`: A very short category, limited to a maximum of 6 characters per word and up to two words.\n\nAlso, note the use of another property, `part_templates.error`.  This is set whenever the templates\nfail to render, facilitating easier debugging of template issues. It is a best practice to check for\nboth `part_templates` and `part_templates.error` as shown below:\n\n```html\n{% if not part_templates %}\n    <div class=\"error\">Plugin inventree-part-templates required</div>\n{% elif part_templates.error %}\n    <div class=\"error\">{{ part_templates.error }}</div>\n{% else %}\n    ... your label here ...\n{% endif %}\n\n```\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "InvenTree plugin that extends reporting with customizable part category templates",
    "version": "0.3.1",
    "project_urls": {
        "Homepage": "https://github.com/cmidgley/inventree-part-templates"
    },
    "split_keywords": [
        "inventree",
        "inventreeplugins",
        "plugins",
        "label",
        "report",
        "part",
        "category",
        "print",
        "template"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e3976a6943d20a68ccc637bb1965c96d270930bad012b006a90706c5a7f6042",
                "md5": "230db050cea79367701a9b09c4beff7c",
                "sha256": "ea48574e400af52890a968ec9d9ef3a80a800c9b8a32fb0e5b0787d5aa9489a7"
            },
            "downloads": -1,
            "filename": "inventree_part_templates-0.3.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "230db050cea79367701a9b09c4beff7c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 23898,
            "upload_time": "2024-04-19T00:05:56",
            "upload_time_iso_8601": "2024-04-19T00:05:56.040928Z",
            "url": "https://files.pythonhosted.org/packages/7e/39/76a6943d20a68ccc637bb1965c96d270930bad012b006a90706c5a7f6042/inventree_part_templates-0.3.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-19 00:05:56",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "cmidgley",
    "github_project": "inventree-part-templates",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "inventree-part-templates"
}
        
Elapsed time: 0.23308s