96009bc9
hexiaodong
hxd
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using NCC.Common.Core.Manager;
using NCC.Common.Enum;
using NCC.Common.Extension;
using NCC.Common.Filter;
using NCC.Dependency;
using NCC.DynamicApiController;
using NCC.FriendlyException;
using NCC.Extend.Interfaces.LqYcsdDysbmxb;
using Mapster;
using Microsoft.AspNetCore.Mvc;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
|
efde7d04
“wangming”
更新多个文件,删除不再使用的CSS...
|
16
|
using NCC.Extend.Entitys.lq_ycsd_dysbmxb;
|
96009bc9
hexiaodong
hxd
|
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
using NCC.Extend.Entitys.Dto.LqYcsdDysbmxb;
using Yitter.IdGenerator;
using NCC.Common.Helper;
using NCC.JsonSerialization;
using NCC.Common.Model.NPOI;
using NCC.Common.Configuration;
using NCC.DataEncryption;
using NCC.ClayObject;
namespace NCC.Extend.LqYcsdDysbmxb
{
/// <summary>
/// 当月社保明细表服务
/// </summary>
|
88610eda
“wangming”
feat: 实现转卡接口和库存管理功能
|
31
|
[ApiDescriptionSettings(Tag = "Extend", Name = "LqYcsdDysbmxb", Order = 200)]
|
96009bc9
hexiaodong
hxd
|
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
[Route("api/Extend/[controller]")]
public class LqYcsdDysbmxbService : ILqYcsdDysbmxbService, IDynamicApiController, ITransient
{
private readonly ISqlSugarRepository<LqYcsdDysbmxbEntity> _lqYcsdDysbmxbRepository;
private readonly SqlSugarScope _db;
private readonly IUserManager _userManager;
/// <summary>
/// 初始化一个<see cref="LqYcsdDysbmxbService"/>类型的新实例
/// </summary>
public LqYcsdDysbmxbService(
ISqlSugarRepository<LqYcsdDysbmxbEntity> lqYcsdDysbmxbRepository,
IUserManager userManager)
{
|
88610eda
“wangming”
feat: 实现转卡接口和库存管理功能
|
46
|
_lqYcsdDysbmxbRepository = lqYcsdDysbmxbRepository;
|
96009bc9
hexiaodong
hxd
|
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
_db = _lqYcsdDysbmxbRepository.Context;
_userManager = userManager;
}
/// <summary>
/// 获取当月社保明细表
/// </summary>
/// <param name="id">参数</param>
/// <returns></returns>
[HttpGet("{id}")]
public async Task<dynamic> GetInfo(string id)
{
var entity = await _db.Queryable<LqYcsdDysbmxbEntity>().FirstAsync(p => p.Id == id);
var output = entity.Adapt<LqYcsdDysbmxbInfoOutput>();
return output;
}
/// <summary>
/// 获取当月社保明细表列表
/// </summary>
/// <param name="input">请求参数</param>
/// <returns></returns>
[HttpGet("")]
public async Task<dynamic> GetList([FromQuery] LqYcsdDysbmxbListQueryInput input)
{
var sidx = input.sidx == null ? "id" : input.sidx;
var data = await _db.Queryable<LqYcsdDysbmxbEntity>()
.WhereIF(!string.IsNullOrEmpty(input.id), p => p.Id.Contains(input.id))
.WhereIF(!string.IsNullOrEmpty(input.xm), p => p.Xm.Contains(input.xm))
.WhereIF(!string.IsNullOrEmpty(input.md1), p => p.Md1.Contains(input.md1))
.WhereIF(!string.IsNullOrEmpty(input.md2), p => p.Md2.Contains(input.md2))
.WhereIF(!string.IsNullOrEmpty(input.gmmd), p => p.Gmmd.Contains(input.gmmd))
.WhereIF(!string.IsNullOrEmpty(input.hxcb), p => p.Hxcb.Contains(input.hxcb))
.WhereIF(!string.IsNullOrEmpty(input.cbyf), p => p.Cbyf.Contains(input.cbyf))
.WhereIF(!string.IsNullOrEmpty(input.yf), p => p.Yf.Contains(input.yf))
.WhereIF(!string.IsNullOrEmpty(input.sb), p => p.Sb.Equals(input.sb))
.WhereIF(!string.IsNullOrEmpty(input.yb), p => p.Yb.Equals(input.yb))
.WhereIF(!string.IsNullOrEmpty(input.zj), p => p.Zj.Equals(input.zj))
.WhereIF(!string.IsNullOrEmpty(input.gzk), p => p.Gzk.Equals(input.gzk))
.WhereIF(!string.IsNullOrEmpty(input.cb), p => p.Cb.Equals(input.cb))
|
88610eda
“wangming”
feat: 实现转卡接口和库存管理功能
|
87
|
.Select(it => new LqYcsdDysbmxbListOutput
|
96009bc9
hexiaodong
hxd
|
88
89
|
{
id = it.Id,
|
88610eda
“wangming”
feat: 实现转卡接口和库存管理功能
|
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
xm = it.Xm,
md1 = it.Md1,
md2 = it.Md2,
gmmd = it.Gmmd,
hxcb = it.Hxcb,
cbyf = it.Cbyf,
yf = it.Yf,
sb = it.Sb,
yb = it.Yb,
zj = it.Zj,
gzk = it.Gzk,
cb = it.Cb,
}).MergeTable().OrderBy(sidx + " " + input.sort).ToPagedListAsync(input.currentPage, input.pageSize);
return PageResult<LqYcsdDysbmxbListOutput>.SqlSugarPageResult(data);
|
96009bc9
hexiaodong
hxd
|
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
|
}
/// <summary>
/// 新建当月社保明细表
/// </summary>
/// <param name="input">参数</param>
/// <returns></returns>
[HttpPost("")]
public async Task Create([FromBody] LqYcsdDysbmxbCrInput input)
{
var userInfo = await _userManager.GetUserInfo();
var entity = input.Adapt<LqYcsdDysbmxbEntity>();
entity.Id = YitIdHelper.NextId().ToString();
var isOk = await _db.Insertable(entity).IgnoreColumns(ignoreNullColumn: true).ExecuteCommandAsync();
if (!(isOk > 0)) throw NCCException.Oh(ErrorCode.COM1000);
}
/// <summary>
/// 获取当月社保明细表无分页列表
/// </summary>
/// <param name="input">请求参数</param>
/// <returns></returns>
[NonAction]
public async Task<dynamic> GetNoPagingList([FromQuery] LqYcsdDysbmxbListQueryInput input)
{
var sidx = input.sidx == null ? "id" : input.sidx;
var data = await _db.Queryable<LqYcsdDysbmxbEntity>()
.WhereIF(!string.IsNullOrEmpty(input.id), p => p.Id.Contains(input.id))
.WhereIF(!string.IsNullOrEmpty(input.xm), p => p.Xm.Contains(input.xm))
.WhereIF(!string.IsNullOrEmpty(input.md1), p => p.Md1.Contains(input.md1))
.WhereIF(!string.IsNullOrEmpty(input.md2), p => p.Md2.Contains(input.md2))
.WhereIF(!string.IsNullOrEmpty(input.gmmd), p => p.Gmmd.Contains(input.gmmd))
.WhereIF(!string.IsNullOrEmpty(input.hxcb), p => p.Hxcb.Contains(input.hxcb))
.WhereIF(!string.IsNullOrEmpty(input.cbyf), p => p.Cbyf.Contains(input.cbyf))
.WhereIF(!string.IsNullOrEmpty(input.yf), p => p.Yf.Contains(input.yf))
.WhereIF(!string.IsNullOrEmpty(input.sb), p => p.Sb.Equals(input.sb))
.WhereIF(!string.IsNullOrEmpty(input.yb), p => p.Yb.Equals(input.yb))
.WhereIF(!string.IsNullOrEmpty(input.zj), p => p.Zj.Equals(input.zj))
.WhereIF(!string.IsNullOrEmpty(input.gzk), p => p.Gzk.Equals(input.gzk))
.WhereIF(!string.IsNullOrEmpty(input.cb), p => p.Cb.Equals(input.cb))
|
88610eda
“wangming”
feat: 实现转卡接口和库存管理功能
|
144
|
.Select(it => new LqYcsdDysbmxbListOutput
|
96009bc9
hexiaodong
hxd
|
145
146
|
{
id = it.Id,
|
88610eda
“wangming”
feat: 实现转卡接口和库存管理功能
|
147
148
149
150
151
152
153
154
155
156
157
158
159
160
|
xm = it.Xm,
md1 = it.Md1,
md2 = it.Md2,
gmmd = it.Gmmd,
hxcb = it.Hxcb,
cbyf = it.Cbyf,
yf = it.Yf,
sb = it.Sb,
yb = it.Yb,
zj = it.Zj,
gzk = it.Gzk,
cb = it.Cb,
}).MergeTable().OrderBy(sidx + " " + input.sort).ToListAsync();
return data;
|
96009bc9
hexiaodong
hxd
|
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
|
}
/// <summary>
/// 导出当月社保明细表
/// </summary>
/// <param name="input">请求参数</param>
/// <returns></returns>
[HttpGet("Actions/Export")]
public async Task<dynamic> Export([FromQuery] LqYcsdDysbmxbListQueryInput input)
{
var userInfo = await _userManager.GetUserInfo();
var exportData = new List<LqYcsdDysbmxbListOutput>();
if (input.dataType == 0)
{
var data = Clay.Object(await this.GetList(input));
exportData = data.Solidify<PageResult<LqYcsdDysbmxbListOutput>>().list;
}
else
{
exportData = await this.GetNoPagingList(input);
}
|
88610eda
“wangming”
feat: 实现转卡接口和库存管理功能
|
182
|
List<ParamsModel> paramList = "[{\"value\":\"序号\",\"field\":\"id\"},{\"value\":\"姓名\",\"field\":\"xm\"},{\"value\":\"门店1\",\"field\":\"md1\"},{\"value\":\"门店2\",\"field\":\"md2\"},{\"value\":\"购买门店\",\"field\":\"gmmd\"},{\"value\":\"后续参保\",\"field\":\"hxcb\"},{\"value\":\"参保月份\",\"field\":\"cbyf\"},{\"value\":\"月份\",\"field\":\"yf\"},{\"value\":\"社保\",\"field\":\"sb\"},{\"value\":\"医保\",\"field\":\"yb\"},{\"value\":\"总计\",\"field\":\"zj\"},{\"value\":\"工资扣\",\"field\":\"gzk\"},{\"value\":\"成本\",\"field\":\"cb\"},]".ToList<ParamsModel>();
|
96009bc9
hexiaodong
hxd
|
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
|
ExcelConfig excelconfig = new ExcelConfig();
excelconfig.FileName = "当月社保明细表.xls";
excelconfig.HeadFont = "微软雅黑";
excelconfig.HeadPoint = 10;
excelconfig.IsAllSizeColumn = true;
excelconfig.ColumnModel = new List<ExcelColumnModel>();
List<string> selectKeyList = input.selectKey.Split(',').ToList();
foreach (var item in selectKeyList)
{
var isExist = paramList.Find(p => p.field == item);
if (isExist != null)
{
excelconfig.ColumnModel.Add(new ExcelColumnModel() { Column = isExist.field, ExcelColumn = isExist.value });
}
}
var addPath = FileVariable.TemporaryFilePath + excelconfig.FileName;
ExcelExportHelper<LqYcsdDysbmxbListOutput>.Export(exportData, excelconfig, addPath);
var fileName = _userManager.UserId + "|" + addPath + "|xls";
var output = new
{
name = excelconfig.FileName,
url = "/api/File/Download?encryption=" + DESCEncryption.Encrypt(fileName, "NCC")
};
return output;
}
/// <summary>
/// 批量删除当月社保明细表
/// </summary>
/// <param name="ids">主键数组</param>
/// <returns></returns>
[HttpPost("batchRemove")]
public async Task BatchRemove([FromBody] List<string> ids)
{
var entitys = await _db.Queryable<LqYcsdDysbmxbEntity>().In(it => it.Id, ids).ToListAsync();
if (entitys.Count > 0)
{
try
{
//开启事务
_db.BeginTran();
//批量删除当月社保明细表
|
88610eda
“wangming”
feat: 实现转卡接口和库存管理功能
|
225
|
await _db.Deleteable<LqYcsdDysbmxbEntity>().In(d => d.Id, ids).ExecuteCommandAsync();
|
96009bc9
hexiaodong
hxd
|
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
|
//关闭事务
_db.CommitTran();
}
catch (Exception)
{
//回滚事务
_db.RollbackTran();
throw NCCException.Oh(ErrorCode.COM1002);
}
}
}
/// <summary>
/// 更新当月社保明细表
/// </summary>
/// <param name="id">主键</param>
/// <param name="input">参数</param>
/// <returns></returns>
[HttpPut("{id}")]
public async Task Update(string id, [FromBody] LqYcsdDysbmxbUpInput input)
{
var entity = input.Adapt<LqYcsdDysbmxbEntity>();
var isOk = await _db.Updateable(entity).IgnoreColumns(ignoreAllNullColumns: true).ExecuteCommandAsync();
if (!(isOk > 0)) throw NCCException.Oh(ErrorCode.COM1001);
}
/// <summary>
/// 删除当月社保明细表
/// </summary>
/// <returns></returns>
[HttpDelete("{id}")]
public async Task Delete(string id)
{
var entity = await _db.Queryable<LqYcsdDysbmxbEntity>().FirstAsync(p => p.Id == id);
_ = entity ?? throw NCCException.Oh(ErrorCode.COM1005);
var isOk = await _db.Deleteable<LqYcsdDysbmxbEntity>().Where(d => d.Id == id).ExecuteCommandAsync();
if (!(isOk > 0)) throw NCCException.Oh(ErrorCode.COM1002);
}
}
}
|