123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304 |
- 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_Payplatform")]
- public class mem_PayplatformController : BaseController
- {
- public mem_PayplatformController(IMemoryCache cache, IApiClient client) : base(cache, client)
- {
- }
- private ConcurrentDictionary<int, Mem_Payplatform> Mem_PayplatformMap = new ConcurrentDictionary<int, Mem_Payplatform>();
- /// <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_Payplatform> permss = new List<Mem_Payplatform>(0);
- List<SqlParameter> parameters = new List<SqlParameter>();
- string filterstr = QueryFilter.getFilterSqlParam(filters, out parameters, new Mem_Payplatform(), "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.PayPlatFormKey " + direct + " ) as rownum from " +
- "Mem_Payplatform as A " +
- " where 1=1 " +
- filterstr +
- ")AAA ";
- string commandText2 = " where AAA.rownum>" + start + " and AAA.rownum<" + end
- + " ORDER BY AAA.PayPlatFormKey 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_Payplatform>.ConvertToModel(dt);
- }
- string result1;
- long totalcount = DataAccess.GetRowCountDefine("select count(PayPlatFormKey) 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="PayPlatFormKey"></param>
- /// <param name="PayPlatFormName"></param>
- /// <param name="PayPlatFormCode"></param>
- /// <param name="ParentPayPlatFormKey"></param>
- /// <param name="HasLowLevel"></param>
- /// <param name="CreationTime"></param>
- /// <param name="data"></param>
- /// <returns></returns>
- [AuthPermission]
- [HttpPost, Route("add")]
- public JsonResult Addp(
- Int32 PayPlatFormKey, string PayPlatFormName, int PayPlatFormCode,
- int ParentPayPlatFormKey, string HasLowLevel,
- DateTime CreationTime, [FromBody]dynamic data
- )
- {
- if (data != null)
- {
- if (data.PayPlatFormKey != null) { PayPlatFormKey = data.PayPlatFormKey; } else { PayPlatFormKey = 0; }
- if (data.PayPlatFormName != null) { PayPlatFormName = data.PayPlatFormName; } else { PayPlatFormName = ""; }
- if (data.PayPlatFormCode != null) { PayPlatFormCode = data.PayPlatFormCode; } else { PayPlatFormCode = 0; }
- if (data.ParentPayPlatFormKey != null) { ParentPayPlatFormKey = data.ParentPayPlatFormKey; } else { ParentPayPlatFormKey = 0; }
- if (data.HasLowLevel != null) { HasLowLevel = data.HasLowLevel; } else { HasLowLevel = ""; }
- if (data.CreationTime != null) { CreationTime = data.CreationTime; } else { CreationTime = DateTime.Parse("1900-1-1"); }
-
- }
- #region 添加机构节点
- //String uuid = System.Guid.NewGuid().ToString("N");
- int newid = Convert.ToInt32(ReturnMaxID("PayPlatFormKey", "Mem_Payplatform")) + 1;
- string commandText = "INSERT INTO Mem_Payplatform (PayPlatFormKey," +
- "PayPlatFormName,PayPlatFormCode,ParentPayPlatFormKey,HasLowLevel,CreationTime)" +
- " VALUES (@PayPlatFormKey,@PayPlatFormName,@PayPlatFormCode,@ParentPayPlatFormKey," +
- "@HasLowLevel,@CreationTime)";
- string result;
- //准备参数
- List<List<Object>> parameters = new List<List<Object>>();
- parameters.Add(new List<Object>() { "PayPlatFormKey", PayPlatFormKey });
- parameters.Add(new List<Object>() { "PayPlatFormName", PayPlatFormName });
- parameters.Add(new List<Object>() { "PayPlatFormCode", PayPlatFormCode });
- parameters.Add(new List<Object>() { "ParentPayPlatFormKey", ParentPayPlatFormKey });
- parameters.Add(new List<Object>() { "HasLowLevel", HasLowLevel });
- parameters.Add(new List<Object>() { "CreationTime", CreationTime });
-
- List<SqlParameter> parameters1 = DataAccess.ToParameters(parameters);
- int success = DataAccess.ExecuteCommand(commandText, parameters1, out result);
-
- #endregion
- return Json(new
- {
- //success = success,success1
- success = success
- });
- }
-
- /// <summary>
- /// 修改
- /// </summary>
- /// <param name="PayPlatFormKey"></param>
- /// <param name="PayPlatFormName"></param>
- /// <param name="PayPlatFormCode"></param>
- /// <param name="ParentPayPlatFormKey"></param>
- /// <param name="HasLowLevel"></param>
- /// <param name="CreationTime"></param>
- /// <param name="data"></param>
- /// <returns></returns>
- [AuthPermission]
- [HttpPost, Route("edit")]
- public JsonResult editp(
- Int32 PayPlatFormKey, string PayPlatFormName, int PayPlatFormCode,
- int ParentPayPlatFormKey, string HasLowLevel,
- DateTime CreationTime, [FromBody]dynamic data
- )
- {
- if (data != null)
- {
- if (data.PayPlatFormKey != null) { PayPlatFormKey = data.PayPlatFormKey; } else { PayPlatFormKey = 0; }
- if (data.PayPlatFormName != null) { PayPlatFormName = data.PayPlatFormName; } else { PayPlatFormName = ""; }
- if (data.PayPlatFormCode != null) { PayPlatFormCode = data.PayPlatFormCode; } else { PayPlatFormCode = 0; }
- if (data.ParentPayPlatFormKey != null) { ParentPayPlatFormKey = data.ParentPayPlatFormKey; } else { ParentPayPlatFormKey = 0; }
- if (data.HasLowLevel != null) { HasLowLevel = data.HasLowLevel; } else { HasLowLevel = ""; }
- if (data.CreationTime != null) { CreationTime = data.CreationTime; } else { CreationTime = DateTime.Parse(""); }
- }
- #region 编辑用户
- string commandText = "UPDATE Mem_Payplatform " +
- " SET PayPlatFormKey=@PayPlatFormKey, PayPlatFormName = @PayPlatFormName,";
- commandText += " PayPlatFormCode = @PayPlatFormCode" +
- ",ParentPayPlatFormKey = @ParentPayPlatFormKey" +
- " ,HasLowLevel = @HasLowLevel" +
- ",CreationTime = @CreationTime" +
- " WHERE PayPlatFormKey= @PayPlatFormKey";
- string result;
- //准备参数
- List<List<Object>> parameters = new List<List<Object>>();
- parameters.Add(new List<Object>() { "PayPlatFormKey", PayPlatFormKey });
- parameters.Add(new List<Object>() { "PayPlatFormName", PayPlatFormName });
- parameters.Add(new List<Object>() { "PayPlatFormCode", PayPlatFormCode });
- parameters.Add(new List<Object>() { "ParentPayPlatFormKey", ParentPayPlatFormKey });
- parameters.Add(new List<Object>() { "HasLowLevel", HasLowLevel });
- parameters.Add(new List<Object>() { "CreationTime", CreationTime });
- 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_Payplatform WHERE PayPlatFormKey = @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_Payplatform和Mem_PayplatformRole表记录都删除成功
- int success2 = 0;
- if (success > 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;
- }
- }
- }
- }
|