This plugin helps you bulk create storage locations and part categories in InvenTree by using customized naming strategies. That means you not only have the option to generate multidimensional* names for stock locations or part categories, but also have the option to save the templates for later usage if your storage room uses e.g. drawer towers, saved templates help to ensure naming consistency for all later added towers.
[!NOTE] multidimensional means that you are not limited to namings like
D1
,D2
, .. but also something likeD1.A
,D1.B
,D2.A
,D2.B
, ...
Install this plugin as follows:
Goto the Admin Center > Plugins > Plugin Settings and make sure to enable the "Enable URL Integration" and "Enable App Integration" switches. (see Why does this plugin needs the app mixin?)
Click on "Install Plugin" at the top of the Plugins table on that page and enter inventree-bulk-plugin
as package name. Enable the "Confirm plugin installation" switch and click "Install".
Search for the plugin in the table and activate it
Stop your server and run invoke update
(for docker installs it is docker-compose inventree-server invoke update
). This ensures that all migrations run and the static files get collected. You can now start your server again and start using the plugin by navigating to any stock location or part category (the root level location/category is not available for bulk creation)
[!IMPORTANT] At least InvenTree v0.15.8 is required to use this plugin.
You can bulk create sub-stocklocations, sub-partcategories and parts (See generate types). Go to one and use the bulk creation panel on the side for the type you want to generate. Edit a saved template with the bulk creation editor or create a new untitled to setup a generation quickly. Use "Preview/Bulk create" to bulkcreate using a saved template in combination with inputs. Templates can als be imported and exported from clipboard or a file which is useful if you want to follow along with the documentation. On most places this documentation shows the template in a codeblock with a copy button.
You can save bulk creation templates to ensure consistency along your storage trees. Let's say you have a bunch of drawer towers. With saved templates you can now easily store your templates to re-use it when you want to add a new tower to the system.
[!NOTE] You can use inputs to make your bulk creation schema dynamic in amount of drawers or their names and then use the preview/bulk create dialog to quickly generate objects at different locations.
Templates can be imported and exported into the clipboard or can be downloaded as a file. Use the dropdown menu at the right of the "New untitled template" button for importing. Exporting can be done from the editor view with the clipboard/download icon button.
The preview bulk create dialog can be used to quickly generate objects at different locations by using inputs to make them dynamic. One use case would be the Resistor part generation template shown at the screenshot section.
The bulk creation editor helps you to define the generation schema.
You can use Jinja2 templating in every field (except in the input
section). You can also use filters to manipulate the dimension output.
inp.<key>
- Access input variables, e.g. ({{inp.drawer_count|int / 2}}
)to_json(value: Any, **kwargs)
- Convert any value into a json string. Uses the json.dumps
method from python under the hood, therefore these kwargs
are available.from_json(value: str, **kwargs)
- Convert a string value into a python variable. Uses the json.loads
method from python under the hood, therefore these kwargs
are available.to_csv(value: list[dict[str, str]], **kwargs)
- Convert a csv like python list of dicts to a csv string. Uses the csv.DictWriter
method from python under the hood, therefore these kwargs
are available.from_csv(value: str, **kwargs)
- Convert a string value in csv structure into a python list of dicts. Uses the csv.DictReader
method from python under the hood, therefore these kwargs
are available.debug
- the debug command from jinja2 is available too and can be used as {% debug %}
, see jinja2 docsYou can define key/value pairs of inputs which you can later reference in your schema via {{inp.<key>}}
. This is useful for saved templates to dynamically generate the amount of locations as you want, but still keep the structure.
You can define templates from which you can later extend in your output. Template values can also be overwritten.
Template name
- Template name, is later used to select for extendingFor the rest of the fields see output.
First child that matches the parent name matcher will be chosen for generating the child's for a specific parent. This must evaluate to something that can be casted to a boolean. You can use Jinja2 for dynamically decide based on the parent. E.g. {{par.gen.name == "D1"}}
. The global jinja2 and par
context is available here.
Select a template to extend from
Global context can be used to set up some more complex variables and reuse them between fields. Under the hood this template gets imported as global
by prepending {% import global_context_template as global with context %}
to every generate field. Therefore you can also use the dimensions and every available context variable there too. But note that the defined variables are only valid in that parent they are defined in, not in their childs. This is a limitation of the import function of jinja2 templates.
Dimensions are a way to add various counting strategies to your naming. You can add a dimension by clicking on "Add dimension" and remove it via the red "X" on the right of the dimension field.
A dimension
can contain comma separated generators which generate the values for you. There are three types of generators. You can use the count
field to limit a dimension to a specific amount of generating items. These generators can have arguments parsed via the following syntax: GENERATOR(key1=value,key2=value)
, where GENERATOR
is the name/range.
Generator types:
Word: any arbitrary word, not starting with *
. E.g. hello world
Ranges: ranges are defined with a -
in the middle E.g. a-bx
Infinity: infinity generators start with a *
E.g. *NUMERIC
Available Generators:
Numeric generator: *NUMERIC(start=0,end=10,step=2,count=5)
or 0-10(step=2)
Alpha generator: *ALPHA(casing=upper|lower,start=A,end=F,step=2,count=3)
or a-z(step=2)
Example: 1-3,hello,*NUMERIC(start=1,step=2,end=10),*ALPHA(casing=upper,end=B),A-D(step=2)
, this will generate the following dimension: 1,2,3,hello,1,3,5,7,9,A,B,A,C
.
[!IMPORTANT] Infinity generators need a
count
argument or a global count limitation, otherwise generation will fail.
These fields my differ between the different available generate objects. They correspond to the generated items property. For example "Name" will be the name of the created location. For more info and also about the available jinja2 context, see generation types.
Generate fields can be added with just one click from a list of available fields. If you're missing an field, please open an issue. There are several different types of inputs for native values like numbers, booleans, model references, ... . You can either use the native fields or switch to template mode by clicking on the blue template icon on the right.
true
or false
.Child's are a way to add some nesting to your bulk creation tree. You can use them for e.g. generating sections in every of your drawer. You can use the Parent name match option to add for your drawers named from Drawer 1
- Drawer 10
two sections while your other drawers have different sections.
You can bulk create sub-stocklocations, sub-partcategories and parts with there different options. All of those are tree objects, that means objects that can have childs and extend from templates that can be defined.
For all of those, the following context is available.
Key | Description |
---|---|
len |
count of elements this child will generate |
idx |
current global index of the generated item |
dim.<x> |
x-th dimension, one-based (e.g. {{dim.1}} to access the first dimension) |
dim.<x>.idx |
current index in the x-th dimension |
dim.<x>.len |
count of items the x-th dimension has |
par.<...> |
parent's context |
par.dim.<x> |
parents's dimensions |
par.gen.<name> |
parent's generated fields (e.g. to reuse the parents name {{par.gen.name}} ) |
par.par.<...> |
parent's parent context, can be nested deeply |
global.<...> |
Access any variable defined in global context |
Parts use the tree generation feature for part variant. You can either generate variants for an already created template part by using the "variants of" attribute (note that for the root generate element, templating is not supported in this field), or create a template part with variants by using the childs feature. The "variant of" field then gets automatically assigned the parent part if its not set for the child. The only thing you need to make sure is that the parent part has set the is_template: true
option, otherwise creation will fail. The plugin then tries to copy unset fields from the template part if they are not set for the child. Parameters get copied too, even there are parameters defined for the child.
Example:
{"name":"","template_type":"PART","template":{"version":"1.0.0","input":{},"templates":[],"output":{"parent_name_match":"true","dimensions":[],"count":[],"generate":{"name":"Wall paint","description":"This is awesome paint","is_template":true},"childs":[{"parent_name_match":"true","dimensions":["red,blue,green"],"count":[""],"generate":{"name":"{{par.gen.name}} - {{dim.1}}"}}]}}}
Parts have an additional context:
Key | Description |
---|---|
par.category.<...> |
category fields this part is in |
pip install -e /path/to/inventree-bulk-plugin
invoke migrate
to run the migrationcd inventree_bulk_plugin/frontend && npm ci
npm run dev
) in the InvenTree config.yml
as e.g. customize.inventree_bulk_plugin_dev_url: http://localhost:5210
npm run dev
This plugin uses the App Mixin to add a custom model to the database to manage stored templates which ensure consistency along your creation of storage trees. (See Saved templates). Additionally the App Mixin is used to provide the static files that are required for the reactive interface powered by preact.
This plugin uses the Url Mixin to expose custom API endpoints for previewing and bulk create locations.