本文整理汇总了Python中pyasm.biz.Pipeline.get_by_name方法的典型用法代码示例。如果您正苦于以下问题:Python Pipeline.get_by_name方法的具体用法?Python Pipeline.get_by_name怎么用?Python Pipeline.get_by_name使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pyasm.biz.Pipeline
的用法示例。
在下文中一共展示了Pipeline.get_by_name方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get_display
# 需要导入模块: from pyasm.biz import Pipeline [as 别名]
# 或者: from pyasm.biz.Pipeline import get_by_name [as 别名]
def get_display(my):
current = my.get_current_sobject()
search_type = get_search_type()
parent_key = WebContainer.get_web().get_form_value("edit|asset")
if parent_key != "":
parent = Search.get_by_search_key(parent_key)
# get all of the options for this search type
status_attr_name = "status"
status_attr = parent.get_attr(status_attr_name)
pipeline = status_attr.get_pipeline()
else:
# FIXME: make this general by looking at the current asset
pipeline = Pipeline.get_by_name("flash_shot")
processes = pipeline.get_process_names()
my.set_option("values", "|".join(processes) )
return super(TaskProcessSelectWdg,my).get_display()