mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-09-22 20:13:32 +08:00
fix issue #I42IFB 获取Oracle结构异常
fix issue #I462OD JSON解析异常 增加主表ParentId,可以同时添加主、从表结构 可以动态控制复杂界面显示编辑权限,采用代码生成的表定义来控制
This commit is contained in:
@@ -17,7 +17,15 @@ namespace OpenAuth.App.Response
|
||||
/// </summary>
|
||||
public string FrmHtml
|
||||
{
|
||||
get { return FormUtil.GetHtml(this.FrmContentData, this.FrmContentParse, this.FrmData, "",this.CanWriteFormItemIds); }
|
||||
get
|
||||
{
|
||||
if (this.FrmType != 0) //只有开原版动态表单才需要转换
|
||||
{
|
||||
return string.Empty;
|
||||
}
|
||||
|
||||
return FormUtil.GetHtml(this.FrmContentData, this.FrmContentParse, this.FrmData, "",this.CanWriteFormItemIds);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
Reference in New Issue
Block a user