Exemple #1
0
def person_search():
    """Поиск человека"""

    arg = get_post_arg(request, True)
    answer = dict(error='yes', content='')
    if 'person_name' not in arg:
        abort(400)

    answer['content'] = 'no'
    answer['content'] = Person.get_by_firm_id_search(
        g.firm_info['id'], arg['person_name'])
    return jsonify(answer)