本文整理汇总了Python中Activity.getChildCosts方法的典型用法代码示例。如果您正苦于以下问题:Python Activity.getChildCosts方法的具体用法?Python Activity.getChildCosts怎么用?Python Activity.getChildCosts使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Activity
的用法示例。
在下文中一共展示了Activity.getChildCosts方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: getCostBreakdownJson
# 需要导入模块: import Activity [as 别名]
# 或者: from Activity import getChildCosts [as 别名]
def getCostBreakdownJson(parent_id):
session = Activity.createSession('try')
costs = Activity.getChildCosts(session, parent_id)
result = '{"costs": [\n'
for i in range(len(costs)-1):
result += '{"name": "' + str(costs[i][0]) + '", "cost": ' + str(costs[i][1]) +', "objectId": '+str(costs[i][2])+ '},\n'
if len(costs)>0:
result += '{"name": "' + str(costs[-1][0]) + '", "cost": ' + str(costs[-1][1]) +', "objectId": '+str(costs[-1][2])+ '}'
result +=']}'
return result