Commit 1a7872ba by dong

fix20230226

parent 5ea94232
......@@ -156,7 +156,7 @@ def show_area():
build_current_empty_area = round(
sum([float(area_obj.empty_area if area_obj.empty_area else 0) for area_obj in current_empty_area_obj_list]), 2)
build_current_total_area = round(
sum([float(area_obj.total_area if area_obj.total_area else 0) for area_obj in current_empty_area_obj_list]), 2)
sum([float(area_obj.build_area if area_obj.build_area else 0) for area_obj in current_empty_area_obj_list]), 2)
# print(build_current_empty_area)
# 获取去年当期总闲置厂房面积
last_empty_area_obj_list = com.get_empty_build_area(last_year, last_year_day, '', district_name)
......
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