123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355 |
- 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_ProductCategory")]
- public class mem_ProductCategoryController : BaseController
- {
- public mem_ProductCategoryController(IMemoryCache cache, IApiClient client) : base(cache, client)
- {
- }
- private ConcurrentDictionary<int, Mem_ProductCategory> Mem_ProductCategoryMap = new ConcurrentDictionary<int, Mem_ProductCategory>();
- /// <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_ProductCategory> permss = new List<Mem_ProductCategory>(0);
- List<SqlParameter> parameters = new List<SqlParameter>();
- string filterstr = QueryFilter.getFilterSqlParam(filters, out parameters, new Mem_ProductCategory(), "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.CategoryCode " + direct + " ) as rownum from " +
- "Mem_ProductCategory as A " +
- " where 1=1 " +
- //" and A.CreationPerson = '" + userids + "'" +
- filterstr +
- ")AAA ";
- string commandText2 = " where AAA.rownum>" + start + " and AAA.rownum<" + end
- + " ORDER BY AAA.CategoryCode 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_ProductCategory>.ConvertToModel(dt);
-
- }
- string result1;
- long totalcount = DataAccess.GetRowCountDefine("select count(CategoryCode) 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="OrgId"></param>
- /// <param name="ParentOrgId"></param>
- /// <param name="UserId"></param>
- /// <param name="OrgCode"></param>
- /// <param name="OrgName"></param>
- /// <param name="FullCode"></param>
- /// <param name="FullName"></param>
- /// <param name="RoleId"></param>
- /// <param name="data"></param>
- /// <returns></returns>
- [AuthPermission]
- [HttpPost, Route("add")]
- public JsonResult Addp(
- string CategoryCode, string CategoryName, string SortKey,
- string SyncStatus, string CateGoryKey, string ParentCatgoryKey,
- string CateGoryType, string CateGoryTypeName, string ParentCatgoryCode, [FromBody]dynamic data
- )
- {
- if (data != null)
- {
- CategoryCode = data.CategoryCode;
- CategoryName = data.CategoryName;
- SortKey = data.SortKey;
- SyncStatus = data.SyncStatus;
- CateGoryKey = data.CateGoryKey;
- CateGoryType = data.CateGoryType;
- CateGoryTypeName = data.CateGoryTypeName;
- ParentCatgoryCode = data.ParentCatgoryCode;
- ParentCatgoryKey = data.ParentCatgoryKey;
- }
-
- String uuid = System.Guid.NewGuid().ToString("N");
- string commandText = "INSERT INTO Mem_ProductCategory (CategoryCode," +
- "CategoryName,SortKey,SyncStatus,CateGoryKey,CateGoryType,CateGoryTypeName,ParentCatgoryCode,ParentCatgoryKey)" +
- " VALUES ('"+ uuid + "',@CategoryName,@SortKey,@SyncStatus,@CateGoryKey,@CateGoryType,@CateGoryTypeName,@ParentCatgoryCode,@ParentCatgoryKey)";
- string result;
- //string result1;
- //准备参数
- List<List<Object>> parameters = new List<List<Object>>();
- parameters.Add(new List<Object>() { "CategoryCode", CategoryCode });
- parameters.Add(new List<Object>() { "CategoryName", CategoryName });
- parameters.Add(new List<Object>() { "SortKey", SortKey });
- parameters.Add(new List<Object>() { "SyncStatus", SyncStatus });
- parameters.Add(new List<Object>() { "CateGoryKey", CateGoryKey });
- parameters.Add(new List<Object>() { "CateGoryType", CateGoryType });
- parameters.Add(new List<Object>() { "CateGoryTypeName", CateGoryTypeName });
- parameters.Add(new List<Object>() { "ParentCatgoryCode", ParentCatgoryCode });
- parameters.Add(new List<Object>() { "ParentCatgoryKey", ParentCatgoryKey });
- List<SqlParameter> parameters1 = DataAccess.ToParameters(parameters);
- int success = DataAccess.ExecuteCommand(commandText, parameters1, out result);
- return Json(new
- {
- //success = success,success1
- success = success
- });
- }
- ///// <summary>
- ///// 获取角色
- ///// </summary>
- ///// <returns></returns>
- //[HttpGet, Route("roles")]
- //public ActionResult Roles()
- //{
- // var permss = GetTopRoles();
- // IList<Option> options = new List<Option>();
- // foreach (CM_Role perms in permss)
- // {
- // var option = new Option() { label = perms.RoleName, value = perms.RoleId.ToString() };
- // options.Add(option);
- // }
- // var jsonData = JsonConvert.SerializeObject(options);
- // return Content(jsonData);
- //}
- /// <summary>
- /// 组织机构修改
- /// </summary>
- /// <param name="OrgId">组织id</param>
- /// <param name="ParentOrgId">父组织id</param>
- /// <param name="OrgCode"></param>
- /// <param name="OrgName"></param>
- /// <param name="FullCode"></param>
- /// <param name="FullName"></param>
- /// <param name="UserId"></param>
- /// <param name="data"></param>
- /// <param name="IsDelete"></param>
- /// <returns></returns>
- [AuthPermission]
- [HttpPost, Route("edit")]
- public JsonResult editp(
- string CategoryCode, string CategoryName, string SortKey,
- string SyncStatus, string CateGoryKey, string ParentCatgoryKey,
- string CateGoryType, string CateGoryTypeName, string ParentCatgoryCode, [FromBody]dynamic data
- )
- {
- if (data != null)
- {
- CategoryCode = data.CategoryCode;
- CategoryName = data.CategoryName;
- SortKey = data.SortKey;
- SyncStatus = data.SyncStatus;
- CateGoryKey = data.CateGoryKey;
- CateGoryType = data.CateGoryType;
- CateGoryTypeName = data.CateGoryTypeName;
- ParentCatgoryCode = data.ParentCatgoryCode;
- ParentCatgoryKey = data.ParentCatgoryKey;
- }
- //string[] RoleIdss = RoleId.Split(",");
- //int[] RoleIdis = Array.ConvertAll(RoleIdss, s => Convert.ToInt32(s));
- #region 编辑用户
- string commandText = "UPDATE Mem_ProductCategory " +
- " SET CategoryCode=@CategoryCode, CategoryName = @CategoryName,";
- commandText += " SortKey = @SortKey" +
- ",SyncStatus = @SyncStatus" +
- " ,CateGoryKey = @CateGoryKey" +
- ",CateGoryType = @CateGoryType" +
- ",CateGoryTypeName = @CateGoryTypeName" +
- ",ParentCatgoryCode = @ParentCatgoryCode" +
- ",ParentCatgoryKey = @ParentCatgoryKey" +
- " WHERE CategoryCode= @CategoryCode";
- string result;
- //准备参数
- List<List<Object>> parameters = new List<List<Object>>();
- parameters.Add(new List<Object>() { "CategoryCode", CategoryCode });
- parameters.Add(new List<Object>() { "CategoryName", CategoryName });
- parameters.Add(new List<Object>() { "SortKey", SortKey });
- parameters.Add(new List<Object>() { "SyncStatus", SyncStatus });
- parameters.Add(new List<Object>() { "CateGoryKey", CateGoryKey });
- parameters.Add(new List<Object>() { "CateGoryType", CateGoryType });
- parameters.Add(new List<Object>() { "CateGoryTypeName", CateGoryTypeName });
- parameters.Add(new List<Object>() { "ParentCatgoryCode", ParentCatgoryCode });
- parameters.Add(new List<Object>() { "ParentCatgoryKey", ParentCatgoryKey });
- List<SqlParameter> parameters1 = DataAccess.ToParameters(parameters);
- int success = DataAccess.ExecuteCommand(commandText, parameters1, out result);
- #endregion
- #region 角色
- //RoleDAL.SaveRolesRelatePermission(OrgId, RoleIdis);
- #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_ProductCategory WHERE CategoryCode = @id";
- //string commandText1 = "DELETE FROM Mem_ProductCategoryRole WHERE CategoryCode = @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_ProductCategory和Mem_ProductCategoryRole表记录都删除成功
- int success2 = 0;
- if (success > 0)
- {
- success2 = success;//此处应该是success2 = success+success1,由于不清楚前端是怎么接收处理的,暂且这么处理。
- }
- else
- {
- success2 = -1;
- }
- return Content("{success:" + success2 + "}");
- }
-
- public IList<Mem_ProductCategory> GetTopRoles()
- {
- IList<Mem_ProductCategory> permsList = new List<Mem_ProductCategory>(0);
- DataTable dt = new DataTable();
- string result = string.Empty;
- var sortDirection = 1;
- var pageIndex = 1;
- var pageSize = Config.MaxPageSize;
- string direct = " desc ";
- if (sortDirection != 1)
- direct = " asc";
- int start = (pageIndex - 1) * pageSize;
- int end = (start + 1 + pageSize);
- string commandText = "select * from (" +
- "select A.*, row_number() over" +
- "( order by A.CategoryCode " + direct + " ) as rownum" +
- " from Mem_ProductCategory A ) AAA" +
- " where AAA.rownum>" + start + " and AAA.rownum<" + end +
- " ";
- List<List<Object>> parameters1 = new List<List<Object>>();
- parameters1.Add(new List<Object>() { "CategoryCode", 0 });
- bool result1 = DataAccess.GetValues(commandText, ref dt, DataAccess.ToParameters(parameters1).ToArray(), out result);
- if (result1 && dt.Rows.Count > 0)
- {
- // 把DataTable转换为IList<T>
- permsList = ModelConvertHelper<Mem_ProductCategory>.ConvertToModel(dt);
- }
- return permsList;
- }
- }
- }
|