Report listing installed stock items #8822
-
Hi! I am looking for a method to generate a report listing all installed stock items for a specific item. Maybe someone ran into the same problem before ad has some ideas as to how to list this? In appearance I intend to list it similar to a BOM list, but this should be an "as-built" BOM list, with all the installed items listed, including serial number where applicable. Does anybody have any ideas how to tackle this? Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@Adamantan according to the report documentation you should be able to use the e.g. `html
|
Beta Was this translation helpful? Give feedback.
@Adamantan according to the report documentation you should be able to use the
installed_items
attribute on a stock item.e.g.
`html
{% for it in item.installed_items %}
{{ it.quantity }} x {{ it.part.name }} - {{ it.location.name }}
{% endfor %}