Commit 87798a6e by dong

fix20221130

parent 7de7c5c4
...@@ -139,7 +139,8 @@ def check_project_detail1(): ...@@ -139,7 +139,8 @@ def check_project_detail1():
"attract_name": project_obj.attract_name, # 引资方名称 "attract_name": project_obj.attract_name, # 引资方名称
"investor_name": project_obj.investor_name, # 投资方名称(万元) "investor_name": project_obj.investor_name, # 投资方名称(万元)
"investor_district": project_obj.investor_district, # 投资方所在地(亩) "investor_district": project_obj.investor_district, # 投资方所在地(亩)
"industry": project_obj.industry + project_obj.industry2, # 所属行业 "industry": project_obj.industry + '-' if project_obj.industry else '' + project_obj.industry2 if project_obj.industry2 else '',
"investment_volume": project_obj.investment_volume, # 总投资额(万元) "investment_volume": project_obj.investment_volume, # 总投资额(万元)
"construction_content": project_obj.construction_content, # 建设内容 "construction_content": project_obj.construction_content, # 建设内容
"project_address": project_obj.project_address, # 项目选址 "project_address": project_obj.project_address, # 项目选址
......
...@@ -1015,7 +1015,7 @@ def areal_project(): ...@@ -1015,7 +1015,7 @@ def areal_project():
"id": project_obj.id, "id": project_obj.id,
"project_name": project_obj.project_name, "project_name": project_obj.project_name,
"investor_district": project_obj.investor_district, "investor_district": project_obj.investor_district,
"industry": project_obj.industry + '-' if project_obj.industry else '' + project_obj.industry2 if project_obj.industry else '', "industry": project_obj.industry + '-' if project_obj.industry else '' + project_obj.industry2 if project_obj.industry2 else '',
"project_type": "", "project_type": "",
"investment_volume": project_obj.investment_volume "investment_volume": project_obj.investment_volume
} for project_obj in project_obj_list] } for project_obj in project_obj_list]
......
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