Exemplo n.º 1
0
def get_someday_values(uname, day, type_id):
	if not str_deal.is_day_str(day) or not type_id.isdigit():
		return error.raise_param_illegal()
	type_id = int(type_id)
	#检查权限
	if not authority.can_access_physical(type_id, uname):
		return error.raise_no_auth()
	datas = physical.get_someday_values(type_id, day)
	if datas:
		return generate_today_json(datas)
	return error.raise_error_with_info('没有对应的数据')
Exemplo n.º 2
0
def get_today_values(uname, type_id):
	#参数合法性检查
	if not type_id.isdigit():
		return error.raise_param_illegal()
	type_id = int(type_id)
	#检查权限
	if not authority.can_access_physical(type_id, uname):
		return error.raise_no_auth()
	today = libtime.strftime('%Y-%m-%d')
	datas = physical.get_someday_values(type_id, today)
	if datas:
		return generate_today_json(datas)
	return error.raise_error_with_info('没有对应的数据')