浏览代码

Merge branch '长阳分支中职' of http://123.57.209.16:3000/bjquanjiang/DigitalScholl into 长阳分支中职

长阳分支推送专用
dyy 2 年前
父节点
当前提交
2fc2969366
共有 1 个文件被更改,包括 8 次插入1 次删除
  1. +8
    -1
      Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Form/Scheme/FormSchemeBLL.cs

+ 8
- 1
Learun.Framework.Ultimate V7/Learun.Framework.Module/Learun.Application.Module/Learun.Application.Form/Scheme/FormSchemeBLL.cs 查看文件

@@ -577,6 +577,7 @@ namespace Learun.Application.Form
TableTree.Add(treeone);
}
TableTree = TableTree.ToTree();
bool hasupload = false;

// 确定表与组件之间的关系
Dictionary<string, List<FormCompontModel>> tableComponts = new Dictionary<string, List<FormCompontModel>>();
@@ -592,6 +593,7 @@ namespace Learun.Application.Form
}
if (compont.type == "upload")
{
hasupload = true;
tableComponts[compont.table].Add(compont);
}
if (compont.type == "guid")
@@ -602,8 +604,13 @@ namespace Learun.Application.Form
}
}
}
Dictionary<string, string> uploadfieldkeyvalue = new Dictionary<string, string>();

if (!hasupload)
{
return uploadfieldkeyvalue;
}
GetInstanceTableData(TableTree, tableComponts, formSchemeModel.dbId, keyValue, processIdName, null, res);
Dictionary < string,string> uploadfieldkeyvalue=new Dictionary<string, string>();
foreach (var itemCompont in tableComponts)
{
foreach (FormCompontModel formitem in itemCompont.Value)


正在加载...
取消
保存