123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316 |
- using JCSoft.WX.Framework.Api;
- using Microsoft.AspNetCore.Mvc;
- using Microsoft.AspNetCore.Http;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
- using Common.Wechat;
- using Common;
- using System.Data;
- using Common.Model;
- using ZcPeng.PublicLibrary;
- using CoreEntity.Entity;
- using CoreEntity.DAL;
- using System.Collections.Concurrent;
- using Newtonsoft.Json.Converters;
- using Newtonsoft.Json;
- using System.Data.SqlClient;
- using Microsoft.Extensions.Primitives;
- using Microsoft.Extensions.Caching.Memory;
- using Jwt;
- using PublicLibrary.Model;
- using Newtonsoft.Json.Linq;
- using SupplierWeb.Codes.mvc;
- using SupplierWeb.Codes.Auth;
- using Common.Config;
- namespace SupplierWeb.Controllers
- {
- [Route("web/Mem_DataDictory")]
- public class mem_DataDictoryController : BaseController
- {
- public mem_DataDictoryController(IMemoryCache cache, IApiClient client) : base(cache, client)
- {
- }
- private ConcurrentDictionary<int, Mem_DataDictory> Mem_DataDictoryMap = new ConcurrentDictionary<int, Mem_DataDictory>();
- /// <summary>
- /// 获取组织机构列表
- /// </summary>
- /// <param name="filters"></param>
- /// <param name="pageIndex"></param>
- /// <param name="pageSize"></param>
- /// <param name="sortField"></param>
- /// <param name="sortDirection"></param>
- /// <param name="sumFields"></param>
- /// <param name="data"></param>
- /// <returns></returns>
- [AuthPermission]
- [HttpPost, Route("index")]
- public JsonResult Indexp(QueryFilter[] filters, Int32 pageIndex, Int32 pageSize,
- string sortField, Int32 sortDirection, string[] sumFields, [FromBody]dynamic data)
- {
- if (data != null)
- {
- filters = data.filters.ToObject<QueryFilter[]>();
- pageIndex = data.pageIndex;
- pageSize = data.pageSize;
- sortField = data.sortField;
- sortDirection = data.sortDirection;
- sumFields = data.sumFields.ToObject<string[]>();
- }
- #region 获取机构列表
- DataTable dt = new DataTable();
- string result;
- IList<Mem_DataDictory> permss = new List<Mem_DataDictory>(0);
- List<SqlParameter> parameters = new List<SqlParameter>();
- string filterstr = QueryFilter.getFilterSqlParam(filters, out parameters, new Mem_DataDictory(), "A.");
- string direct = " desc ";
- if (sortDirection != 1)
- {
- direct = " asc";
- }
- int start = (pageIndex - 1) * pageSize;
- int end = (start + 1 + pageSize);
- string commandText0 = "select * from ";
- string commandText1 = "(" +
- "select A.*,row_number() over" +
- "( order by A.Id " + direct + " ) as rownum from " +
- "Mem_DataDictory as A " +
- " where 1=1 " +
- filterstr +
- ")AAA ";
- string commandText2 = " where AAA.rownum>" + start + " and AAA.rownum<" + end
- + " ORDER BY AAA.Id desc";
- string commandText3 = commandText0 + commandText1 + commandText2;
- bool success = DataAccess.GetValues(commandText3, ref dt, parameters.ToArray(), out result);
- #endregion
- if (dt != null && dt.Rows.Count > 0)
- {
- // 把DataTable转换为IList<T>
- permss = ModelConvertHelper<Mem_DataDictory>.ConvertToModel(dt);
- }
- string result1;
- long totalcount = DataAccess.GetRowCountDefine("select count(Id) from " + commandText1, parameters.ToArray(), out result1);
- IsoDateTimeConverter timejson = new IsoDateTimeConverter
- {
- DateTimeFormat = "yyyy'-'MM'-'dd' 'HH':'mm':'ss"
- };
- //IList<Menu> menus = Permission.Convert(permss);
- var jsonData = JsonConvert.SerializeObject(permss, timejson);
- return Json(new
- {
- items = JsonConvert.DeserializeObject(jsonData),
- sum = new { },
- totalCount = totalcount
- });
- }
- /// <summary>
- /// 新增
- /// </summary>
- /// <param name="Id"></param>
- /// <param name="Key"></param>
- /// <param name="Text"></param>
- /// <param name="Value"></param>
- /// <param name="Remark"></param>
- /// <param name="ParentId"></param>
- /// <param name="SortKey"></param>
- /// <param name="IsHide"></param>
- /// <param name="SyncStatus"></param>
- /// <param name="data"></param>
- /// <returns></returns>
- [AuthPermission]
- [HttpPost, Route("add")]
- public JsonResult Addp(
- Int32 Id, String Key, String Text,
- string Value, string Remark,Int32 ParentId, Int32 SortKey,
- Int32 IsHide, string SyncStatus, [FromBody]dynamic data
- )
- {
- if (data != null)
- {
- if (data.Key != null) { Key = data.Key; } else { Key = ""; }
- if (data.Text != null) { Text = data.Text; } else { Text = ""; }
- if (data.Value != null) { Value = data.Value; } else { Value = ""; }
- if (data.Remark != null) { Remark = data.Remark; } else { Remark = ""; }
- if (data.ParentId != null) { ParentId = data.ParentId; } else { ParentId = 0; }
- if (data.SortKey != null) { SortKey = data.SortKey; } else { SortKey = 0; }
- if (data.IsHide != null) { IsHide = data.IsHide; } else { IsHide = 0; }
- if (data.SyncStatus != null) { SyncStatus = data.SyncStatus; } else { SyncStatus = ""; }
- }
- #region 添加
- //String uuid = System.Guid.NewGuid().ToString("N");
- //int newid = Convert.ToInt32(ReturnMaxID("Id", "Mem_DataDictory")) + 1;
- string commandText = "INSERT INTO Mem_DataDictory (" +
- "[Key],Text,[Value],Remark,ParentId,SortKey,IsHide,SyncStatus)" +
- " VALUES (@Key,@Text,@Value,@Remark,@ParentId,@SortKey,@IsHide,@SyncStatus )";
- string result;
- //准备参数
- List<List<Object>> parameters = new List<List<Object>>();
- parameters.Add(new List<Object>() { "Key", Key });
- parameters.Add(new List<Object>() { "Text", Text });
- parameters.Add(new List<Object>() { "Value", Value });
- parameters.Add(new List<Object>() { "Remark", Remark });
- parameters.Add(new List<Object>() { "ParentId", ParentId });
- parameters.Add(new List<Object>() { "SortKey", SortKey });
- parameters.Add(new List<Object>() { "IsHide", IsHide });
- parameters.Add(new List<Object>() { "SyncStatus", SyncStatus });
- List<SqlParameter> parameters1 = DataAccess.ToParameters(parameters);
- int success = DataAccess.ExecuteCommand(commandText, parameters1, out result);
-
- #endregion
- return Json(new
- {
- success = success
- });
- }
- /// <summary>
- /// 修改
- /// </summary>
- /// <param name="Id"></param>
- /// <param name="Key"></param>
- /// <param name="Text"></param>
- /// <param name="Value"></param>
- /// <param name="Remark"></param>
- /// <param name="ParentId"></param>
- /// <param name="SortKey"></param>
- /// <param name="IsHide"></param>
- /// <param name="SyncStatus"></param>
- /// <param name="data"></param>
- /// <returns></returns>
- [AuthPermission]
- [HttpPost, Route("edit")]
- public JsonResult editp(
- Int32 Id, String Key, String Text,
- string Value, string Remark, Int32 ParentId, Int32 SortKey,
- Int32 IsHide, string SyncStatus, [FromBody]dynamic data
- )
- {
- if (data != null)
- {
- if (data.Key != null) { Key = data.Key; } else { Key = ""; }
- if (data.Text != null) { Text = data.Text; } else { Text = ""; }
- if (data.Value != null) { Value = data.Value; } else { Value = ""; }
- if (data.Remark != null) { Remark = data.Remark; } else { Remark = ""; }
- if (data.ParentId != null) { ParentId = data.ParentId; } else { ParentId = 0; }
- if (data.SortKey != null) { SortKey = data.SortKey; } else { SortKey = 0; }
- if (data.IsHide != null) { IsHide = data.IsHide; } else { IsHide = 0; }
- if (data.SyncStatus != null) { SyncStatus = data.SyncStatus; } else { SyncStatus = ""; }
- }
- #region 编辑用户
- string commandText = "UPDATE Mem_DataDictory " +
- " SET Id=@Id, [Key] = @Key,";
- commandText += " Text = @Text" +
- ",[Value] = @Value" +
- " ,Remark = @Remark" +
- ",ParentId = @ParentId" +
- ",SortKey = @SortKey" +
- ",IsHide = @IsHide" +
- ",SyncStatus = @SyncStatus" +
- " WHERE Id= @Id";
- string result;
- //准备参数
- List<List<Object>> parameters = new List<List<Object>>();
- parameters.Add(new List<Object>() { "Key", Key });
- parameters.Add(new List<Object>() { "Text", Text });
- parameters.Add(new List<Object>() { "Value", Value });
- parameters.Add(new List<Object>() { "Remark", Remark });
- parameters.Add(new List<Object>() { "ParentId", ParentId });
- parameters.Add(new List<Object>() { "SortKey", SortKey });
- parameters.Add(new List<Object>() { "IsHide", IsHide });
- parameters.Add(new List<Object>() { "SyncStatus", SyncStatus });
- List<SqlParameter> parameters1 = DataAccess.ToParameters(parameters);
- int success = DataAccess.ExecuteCommand(commandText, parameters1, out result);
- #endregion
-
- return Json(new
- {
- success = success,
- result = result,
- });
- }
- /// <summary>
- /// 组织机构删除
- /// </summary>
- /// <param name="id"></param>
- /// <returns></returns>
- [AuthPermission]
- [HttpPost, Route("delete")]
- public ActionResult Delete(string id)
- {
- //SQL语句
- string commandText = "DELETE FROM Mem_DataDictory WHERE Id = @id";
- string commandText1 = "DELETE FROM Mem_DataDictoryRole WHERE Id = @id";
- //准备参数
- List<List<Object>> parameters = new List<List<Object>>();
- parameters.Add(new List<Object>() { "id", id });
- string result = "";
- string result1 = "";
- //参数转换
- List<SqlParameter> parameters1 = DataAccess.ToParameters(parameters);
- //执行并返回结果
- int success = DataAccess.ExecuteCommand(commandText, parameters1, out result);
- int success1 = DataAccess.ExecuteCommand(commandText1, parameters1, out result1);
- //如果Mem_DataDictory和Mem_DataDictoryRole表记录都删除成功
- int success2 = 0;
- if (success > 0 && success1 > 0)
- {
- success2 = success;//此处应该是success2 = success+success1,由于不清楚前端是怎么接收处理的,暂且这么处理。
- }
- else
- {
- success2 = -1;
- }
- return Content("{success:" + success2 + "}");
- }
-
- /// <summary>
- /// 获取最大的id
- /// </summary>
- /// <param name="field"></param>
- /// <param name="tablename"></param>
- /// <returns></returns>
- public object ReturnMaxID(string field, string tablename)
- {
- string result;
- List<SqlParameter> parameters = new List<SqlParameter>();
- bool boolen = DataAccess.GetOneValue("select max(" + field + ") from " + tablename, parameters.ToArray(), out object objValue, out result);
- if (boolen == true)
- {
- return objValue;
- }
- else
- {
- return result;
- }
- }
- }
- }
|