-
Hey, what would be the best way to get more data about a part/location/stock item via a custom |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 20 replies
-
@luwol03 I am not sure why you would need extra information in a plugin exposing LabelPrintingMixin APIs. This is generally meant to only take the pdf / picture and send it to some kind of printer. Kind of like a printer driver in an OS. |
Beta Was this translation helpful? Give feedback.
@luwol03 I am not sure why you would need extra information in a plugin exposing LabelPrintingMixin APIs. This is generally meant to only take the pdf / picture and send it to some kind of printer. Kind of like a printer driver in an OS.
Maybe it will help my understanding if you give a small example what you want to achive. If you want to add information to a label my suggestion would be to change the label itself, you have access to nearly everything in the templating engine.
Plugins are generally meant to be distributed as a python packages (either via PyPi, a VCS or a private index like githubs) , you just need to add the required libraries as a requirement in the setup (see the deplo…