|
@@ -8,6 +8,7 @@ using System.Web.Services.Protocols;
|
|
|
using DBUtility;
|
|
|
using System.Collections.Generic;
|
|
|
using System.Text;
|
|
|
+using System.Linq;
|
|
|
namespace tfWebMis
|
|
|
{
|
|
|
|
|
@@ -161,7 +162,7 @@ namespace tfWebMis
|
|
|
rlt.msg = "修改保存失败:" + DbError.getErrorMsg();
|
|
|
}
|
|
|
};
|
|
|
- FormatTree();
|
|
|
+
|
|
|
}
|
|
|
catch (Exception exception)
|
|
|
{
|
|
@@ -186,14 +187,25 @@ namespace tfWebMis
|
|
|
|
|
|
string strSql = $@"select count(category) from ad_catalog where category='{pk}' ";
|
|
|
int num = Convert.ToInt32(DbHelper.GetValue(strSql));
|
|
|
+ var flag = true;
|
|
|
+
|
|
|
if (num > 0)
|
|
|
{
|
|
|
+ flag = false;
|
|
|
rlt.success = false;
|
|
|
rlt.msg = "该目录下已存在相应档案,无法删除";
|
|
|
}
|
|
|
- else
|
|
|
- {
|
|
|
- if (bll_ad_catalog_info.Delete(pk))
|
|
|
+ if (flag) {
|
|
|
+ var list = bll_ad_catalog_info.GetModelList($"tid={pk}");
|
|
|
+ if (list != null && list.Count() > 0)
|
|
|
+ {
|
|
|
+ flag = false;
|
|
|
+ rlt.success = false;
|
|
|
+ rlt.msg = "该目录下已存在子节点,请先删除子节点";
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (flag) {
|
|
|
+ if (bll_ad_catalog_info.Delete(pk))
|
|
|
{
|
|
|
rlt.success = true;
|
|
|
rlt.msg = "当前目录删除成功";
|
|
@@ -204,8 +216,8 @@ namespace tfWebMis
|
|
|
rlt.msg = "删除失败:" + DbError.getErrorMsg();
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
}
|
|
|
+
|
|
|
else
|
|
|
{
|
|
|
rlt.success = false;
|
|
@@ -469,7 +481,7 @@ namespace tfWebMis
|
|
|
rlt.success = false;
|
|
|
rlt.msg = "目录转移失败:" + DbError.getErrorMsg();
|
|
|
}
|
|
|
- FormatTree();
|
|
|
+
|
|
|
}
|
|
|
catch (Exception exception)
|
|
|
{
|
|
@@ -497,12 +509,13 @@ namespace tfWebMis
|
|
|
private void NewTreeData(HttpContext context)
|
|
|
{
|
|
|
|
|
|
- BLL.ad_catalog_info_BLL bll_catalog_info = new BLL.ad_catalog_info_BLL();
|
|
|
+
|
|
|
List<Model.ad_catalog_info> ad_catalog_info_list = new List<Model.ad_catalog_info>(bll_catalog_info.GetModelList("", "cnum asc"));
|
|
|
if (ad_catalog_info_list.Count == 0)
|
|
|
{
|
|
|
return;
|
|
|
}
|
|
|
+
|
|
|
|
|
|
Model.ad_catalog_info parent = ad_catalog_info_list.Find(v => v._tid == "0");
|
|
|
if (parent == null)
|
|
@@ -520,9 +533,44 @@ namespace tfWebMis
|
|
|
children = new List<TreeModel>()
|
|
|
};
|
|
|
BuildTree(p, ad_catalog_info_list);
|
|
|
- string strJson = JSONHelper.SerializeObject(p.children[0].children);
|
|
|
+ string strJson = JSONHelper.SerializeObject(p.children[0].children);*/
|
|
|
+
|
|
|
+ var sql = @"select id,t.cname text,id as dbid,nvl(tid,0) as dbpid,cnum,'' iconCls from ad_catalog_info t order by nvl(tid,0),t.cnum";
|
|
|
+ var list = DbHelper.GetList<TreeModel>(sql);
|
|
|
+ if (list == null) {
|
|
|
+ list=new List<TreeModel>();
|
|
|
+ }
|
|
|
+ var list_result = list.Where(a => a.dbpid.Equals("0")).ToList();
|
|
|
+ foreach (var item in list_result)
|
|
|
+ {
|
|
|
+
|
|
|
+ item.children = GetChildrens(item, list);
|
|
|
+ }
|
|
|
+ string strJson = JSONHelper.SerializeObject(list_result);
|
|
|
context.Response.Write(strJson);
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public List<TreeModel> GetChildrens(TreeModel node, List<TreeModel> list)
|
|
|
+ {
|
|
|
+ List<TreeModel> childrens = list.Where(c => c.dbpid.Equals(node.dbid)).ToList();
|
|
|
+ foreach (var item in childrens)
|
|
|
+ {
|
|
|
+ var Chlidrens = GetChildrens(item, list);
|
|
|
+ item.children = Chlidrens;
|
|
|
+
|
|
|
+ }
|
|
|
+ return childrens;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
private void BuildTree(TreeModel tree, List<Model.ad_catalog_info> ad_catalog_info_list)
|
|
|
{
|
|
|
foreach (var m in ad_catalog_info_list)
|