Commit e825808a authored by xianyang's avatar xianyang

优化2

parent be7c9152
...@@ -114,8 +114,7 @@ def finance_fourth_info(page: int, ...@@ -114,8 +114,7 @@ def finance_fourth_info(page: int,
"""账户财务明细 第四层""" """账户财务明细 第四层"""
if not all([uuid, time, unique_tag]): if not all([uuid, time, unique_tag]):
return HttpResultResponse(code=500, msg="缺少必传参数") return HttpResultResponse(code=500, msg="缺少必传参数")
res, total, count = SpecificAccountQuery(page, size, uuid, time, type, res, total, count = SpecificAccountQuery(page, size, uuid, time, type, reference_type, unique_tag).business_logic()
reference_type, unique_tag).business_logic()
return HttpResultResponse(total=total, data=res, count=count) return HttpResultResponse(total=total, data=res, count=count)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment