Heyo,
I’m trying to remove Tasks from showing up in the tree view of the tk-multi-workfiles app. At our studio Schedule tasks are not important to the artist and they only really care about the Step, so we want them to be able to select the step and it show all the workfiles related to that step (obviously the files are still linked to tasks but we just want to hide that from the tree)
When selecting the Step in the UI it currently shows everything we want it to in the actual file browser, I just want the arrow to expand to the tasks to not be there, so the artist cannot select the task, and instead only select the Steps.
In picture terms we want to remove the ‘Comp’ task
And simply have this (but without the ability to expand it)
Our current settings are:
entities:
- caption: Shots
entity_type: Shot
filters:
hierarchy: [sg_sequence, code]
sub_hierarchy:
entity_type: Task
filters:
- [milestone, is_not, True]
- [sg_show_in_pipeline, is, False]
link_field: entity
hierarchy: [step]
Is there any way to do this via the settings or am I going to have to fork the code and change this somehow?
I’ve messed around with a few things and the only thing that came close was I managed to remove the tasks but then instead the Steps just duplicated themselves as it would then just show multiple steps (one for each task) but we’d want them grouped by name, I got there with these settings
- caption: Shots
entity_type: Task
step_filter_on: Shot
filters:
- [entity, type_is, Shot]
hierarchy: [entity.Shot.sg_sequence, entity, step]
But that ended up looking like this
Any help would be greatly appreciated!
Thanks,
L