Commit d8036fd0 by dong

fix20221202

parent 33b0d3c3
......@@ -44,10 +44,18 @@ def upload_xiansuo_project(row_content, time_strf, upload_time, upload_unity, up
investor_name = row_content[2] # 投资方名称
investor_district1 = row_content[3] # 投资方所在地,sheng
investor_district2 = row_content[4] # 投资方所在地,市
investor_district = investor_district1 + '/' + investor_district2
if investor_district2:
investor_district = investor_district1 + '/' + investor_district2
else:
investor_district = investor_district1
project_type1 = row_content[5] # 项目单位(投资方项目类型
project_type2 = row_content[6] # 项目单位(投资方项目类型
project_type = project_type1 + '/' + project_type2
if project_type2:
project_type = project_type1 + '/' + project_type2
else:
project_type = project_type1
investment_volume = row_content[7] # 总投资额(万元)
if investment_volume:
investment_volume = float(investment_volume)
......
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