Beispiel #1
0
def match_target_type_resolution(typa='2_3_'):
    """针对配套指标类型作解析"""

    result = ""
    if typa:
        typa_list = typa.split('_')
        for t in typa_list:
            if t:
                result += (TARGET_TYPE_CHOICES.__getitem__(int(t)-1)[1]).encode('utf-8')+","
    return result.decode('utf-8')
Beispiel #2
0
 def num2target_type(n):
     return TARGET_TYPE_CHOICES.__getitem__(n-1)[1]