username@email.com
2023-02-28 67a0042c5f29e4bb0e0b82f6190f2bc51480b45c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
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
225
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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
using DTO;
using IServices;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Logging;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Transactions;
using zhengcaioa.IService;
using zhengcaioa.Models;
 
namespace zhengcaioa.Controllers.admin
{
  
    public class CustomerWithdrawalController : Controller
    {
 
        private readonly IHrDeptService _hrDeptService;
        private readonly ILogger<CustomerWithdrawalController> _logger;
        private readonly IAskService _askService;
        private readonly IWfRunProcessService _wfRunProcessService;
        private readonly IWfHistoryService _wfHistoryService;
        private readonly IWfNeeddeelService _wfNeeddeelService;
        private readonly IAdmGoodsManageService _admGoodsManageService;
        private readonly ILiaotianService _liaotianService;
        private readonly IUserService _userService;
        private readonly IAdmBreakPrecedentService _aAdmBreakPrecedentService;
        private readonly ICooperatecustomCustomerService _cooperatecustomCustomerService;
        private readonly IIntentionCustomerService _intentionCustomerService;
 
        public CustomerWithdrawalController(ILogger<CustomerWithdrawalController> logger, IAskService askService, IHrDeptService hrDeptService, IWfRunProcessService wfRunProcessService
            , IWfHistoryService wfHistoryService, IWfNeeddeelService wfNeeddeelService
            , IAdmGoodsManageService admGoodsManageService
            , ILiaotianService liaotianService
            , IUserService userService
            , IAdmBreakPrecedentService aAdmBreakPrecedentService
            , ICooperatecustomCustomerService cooperatecustomCustomerService
            , IIntentionCustomerService intentionCustomerService)
        {
            _logger = logger;
            _hrDeptService = hrDeptService;
            _askService = askService;
            _wfRunProcessService = wfRunProcessService;
            _wfHistoryService = wfHistoryService;
            _wfNeeddeelService = wfNeeddeelService;
            _admGoodsManageService = admGoodsManageService;
            _liaotianService = liaotianService;
            _userService = userService;
            _aAdmBreakPrecedentService = aAdmBreakPrecedentService;
            _cooperatecustomCustomerService = cooperatecustomCustomerService;
            _intentionCustomerService = intentionCustomerService;
        }
 
 
 
 
 
        /// <summary>
        /// 会员提现申请
        /// </summary>
        /// <param name="data"></param>
        /// <returns></returns>
        [HttpPost]
        public IActionResult AskCustomerWithdrawal([FromBody] AdmCustomerWithdrawalDTO data)
        {
            ReturnMsg<AdmCustomerWithdrawalDTO> returnMsg = new ReturnMsg<AdmCustomerWithdrawalDTO>();
            returnMsg.code = 2;
            try
            {
                //验证数据完整性
                if (string.IsNullOrWhiteSpace(data.OrderNo))
                {
                    returnMsg.code = 2;
                    returnMsg.error = "没有订单号!";
                    returnMsg.count = 0;
                    return new JsonResult(returnMsg);
                }
                if (string.IsNullOrWhiteSpace(data.HuiyuanId))
                {
                    returnMsg.code = 2;
                    returnMsg.error = "没有会员id!";
                    returnMsg.count = 0;
                    return new JsonResult(returnMsg);
                }
                if (string.IsNullOrWhiteSpace(data.HuiyuanName))
                {
                    returnMsg.code = 2;
                    returnMsg.error = "没有会员名称!";
                    returnMsg.count = 0;
                    return new JsonResult(returnMsg);
                }
                if (string.IsNullOrWhiteSpace(data.HuiyuanPhone))
                {
                    returnMsg.code = 2;
                    returnMsg.error = "没有会员电话!";
                    returnMsg.count = 0;
                    return new JsonResult(returnMsg);
                }
                if (data.Shenqingtime == DateTime.MinValue)
                {
                    returnMsg.code = 2;
                    returnMsg.error = "没有申请日期!";
                    returnMsg.count = 0;
                    return new JsonResult(returnMsg);
                }
                if (!data.Jine.HasValue)
                {
                    returnMsg.code = 2;
                    returnMsg.error = "没有提现金额!";
                    returnMsg.count = 0;
                    return new JsonResult(returnMsg);
                }
                //if (string.IsNullOrWhiteSpace(data.BankAcount))
                //{
                //    returnMsg.code = 2;
                //    returnMsg.error = "没有银行账户!";
                //    returnMsg.count = 0;
                //    return new JsonResult(returnMsg);
                //}
                //if (string.IsNullOrWhiteSpace(data.BankName))
                //{
                //    returnMsg.code = 2;
                //    returnMsg.error = "没有银行名称!";
                //    returnMsg.count = 0;
                //    return new JsonResult(returnMsg);
                //}
                //if (string.IsNullOrWhiteSpace(data.Username))
                //{
                //    returnMsg.code = 2;
                //    returnMsg.error = "没有收款人姓名!";
                //    returnMsg.count = 0;
                //    return new JsonResult(returnMsg);
                //}
 
                ResultEntity resultEntity = new ResultEntity();
                using (TransactionScope scope = new TransactionScope())
                {
 
                    //验证是否重复发起
                    if(_askService.GetCustomerWithdrawalList(data.OrderNo).Count > 0)
                    {
                        returnMsg.code = 2;
                        returnMsg.error = "该订单已经发起流程!";
                        returnMsg.count = 0;
                        return new JsonResult(returnMsg);
                    }
 
 
 
                    //流程步骤
                    data.Step = "提交";
                    data.Tongguojujue = "";
                    data.Content = "";
                    data.Tittle = "会员提现申请(" + data.HuiyuanName + ")";
 
                    data.CreaterName = data.HuiyuanName;
                    data.ShenpiStatus = "D";
                    data.RecStatus = "A";
                    data.Creater = "e4c93811-b9b1-4998-89f5-c416ebab0c07";
                    data.Createtime = DateTime.Now;
                    data.Modifier = data.Creater;
                    data.Modifytime = data.Createtime;
 
                    resultEntity = _askService.SaveCustomerWithdrawal(data);
                    if (!resultEntity.Result)
                    {
                        returnMsg.code = 2;
                        returnMsg.error = resultEntity.Message;
                        returnMsg.count = 0;
                        return new JsonResult(returnMsg);
                    }
 
 
 
 
                    //发起流程相关
 
                    resultEntity = _wfRunProcessService.WfCustomerWithdrawal(data.Id, data.Step, data.Tongguojujue, "e4c93811-b9b1-4998-89f5-c416ebab0c07", data.Content, data.Tittle, "v1");
                    if (!resultEntity.Result)
                    {
                        returnMsg.code = 2;
                        returnMsg.error = resultEntity.Message;
                        returnMsg.count = 0;
                        return new JsonResult(returnMsg);
                    }
                    scope.Complete();
                    returnMsg.code = 1;
                    returnMsg.returnObj = null;
                    returnMsg.count = 0;
                }
            }
            catch (Exception ex)
            {
                returnMsg.code = 2;
                returnMsg.error = "没有获取到token";
                returnMsg.count = 0;
 
            }
            return new JsonResult(returnMsg);
        }
 
 
 
 
 
        /// <summary>
        /// 会员提现申请,审批结果
        /// </summary>
        /// <param name="data"></param>
        /// <returns></returns>
        public IActionResult GetCustomerWithdrawal(string OrderNo)
        {
            ReturnMsg<AdmCustomerWithdrawalDTO> returnMsg = new ReturnMsg<AdmCustomerWithdrawalDTO>();
            returnMsg.code = 2;
            try
            {
                //验证数据完整性
                if (string.IsNullOrWhiteSpace(OrderNo))
                {
                    returnMsg.code = 2;
                    returnMsg.error = "没有订单号!";
                    returnMsg.count = 0;
                    return new JsonResult(returnMsg);
                }
 
 
                ResultEntity resultEntity = new ResultEntity();
 
                var customerWithdrawalDTO = _askService.GetCustomerWithdrawalList(OrderNo).FirstOrDefault();
 
 
                //验证是否重复发起
                if (customerWithdrawalDTO == null)
                {
                    returnMsg.code = 2;
                    returnMsg.error = "没有查找到审批流程!";
                    returnMsg.count = 0;
                    return new JsonResult(returnMsg);
                }
 
 
 
                var sysCodeDtls = _liaotianService.GetSYScode("wf_run_process", "shenpi_status");
                var sysCodeDtl = sysCodeDtls.Where(x => x.CodeSn == customerWithdrawalDTO.ShenpiStatus).FirstOrDefault();
                if (sysCodeDtl != null)
                {
                    customerWithdrawalDTO.ShenpiStatusName = sysCodeDtl.Comments;
                }
                var wfRunProcessDTO = _wfRunProcessService.GetList(customerWithdrawalDTO.Id, "20").FirstOrDefault();
 
                if (wfRunProcessDTO == null)
                {
                    returnMsg.code = 2;
                    returnMsg.error = "没有查找到审批流程!";
                    returnMsg.count = 0;
                    return new JsonResult(returnMsg);
                }
 
                var lishiyijian = _wfHistoryService.GetListshenpi(wfRunProcessDTO.Id).LastOrDefault() ;
                if (lishiyijian == null)
                {
                    returnMsg.code = 2;
                    returnMsg.error = "没有查找到审批流程!";
                    returnMsg.count = 0;
                    return new JsonResult(returnMsg);
                }
                customerWithdrawalDTO.Content = lishiyijian.Content;
                customerWithdrawalDTO.Step = wfRunProcessDTO.Step;
 
                returnMsg.code = 1;
                returnMsg.returnObj = customerWithdrawalDTO;
                returnMsg.count = 1;
 
            }
            catch (Exception ex)
            {
                returnMsg.code = 2;
                returnMsg.error = "没有获取到token";
                returnMsg.count = 0;
 
            }
            return new JsonResult(returnMsg);
        }
 
 
 
        /// <summary>
        /// 会员提现申请
        /// </summary>
        /// <param name="data"></param>
        /// <returns></returns>
        [HttpPost]
        public IActionResult AskCustomerRefund([FromBody] AdmCustomerWithdrawalDTO data)
        {
            ReturnMsg<AdmCustomerWithdrawalDTO> returnMsg = new ReturnMsg<AdmCustomerWithdrawalDTO>();
            returnMsg.code = 2;
            try
            {
                //验证数据完整性
                if (string.IsNullOrWhiteSpace(data.OrderNo))
                {
                    returnMsg.code = 2;
                    returnMsg.error = "没有订单号!";
                    returnMsg.count = 0;
                    return new JsonResult(returnMsg);
                }
                if (string.IsNullOrWhiteSpace(data.HuiyuanId))
                {
                    returnMsg.code = 2;
                    returnMsg.error = "没有会员id!";
                    returnMsg.count = 0;
                    return new JsonResult(returnMsg);
                }
                if (string.IsNullOrWhiteSpace(data.HuiyuanName))
                {
                    returnMsg.code = 2;
                    returnMsg.error = "没有会员名称!";
                    returnMsg.count = 0;
                    return new JsonResult(returnMsg);
                }
                if (string.IsNullOrWhiteSpace(data.HuiyuanPhone))
                {
                    returnMsg.code = 2;
                    returnMsg.error = "没有会员电话!";
                    returnMsg.count = 0;
                    return new JsonResult(returnMsg);
                }
                if (data.Shenqingtime == DateTime.MinValue)
                {
                    returnMsg.code = 2;
                    returnMsg.error = "没有申请日期!";
                    returnMsg.count = 0;
                    return new JsonResult(returnMsg);
                }
                if (!data.Jine.HasValue)
                {
                    returnMsg.code = 2;
                    returnMsg.error = "没有提现金额!";
                    returnMsg.count = 0;
                    return new JsonResult(returnMsg);
                }
                
 
                ResultEntity resultEntity = new ResultEntity();
                using (TransactionScope scope = new TransactionScope())
                {
 
                    //验证是否重复发起
                    if (_askService.GetCustomerWithdrawalList(data.OrderNo).Count > 0)
                    {
                        returnMsg.code = 2;
                        returnMsg.error = "该订单已经发起流程!";
                        returnMsg.count = 0;
                        return new JsonResult(returnMsg);
                    }
 
 
 
                    //流程步骤
                    data.Step = "提交";
                    data.Tongguojujue = "";
                    data.Content = "";
                    data.Tittle = "会员退款申请(" + data.HuiyuanName + ")";
 
                    data.CreaterName = data.HuiyuanName;
                    data.ShenpiStatus = "D";
                    data.RecStatus = "A";
                    data.Creater = "e4c93811-b9b1-4998-89f5-c416ebab0c07";
                    data.Createtime = DateTime.Now;
                    data.Modifier = data.Creater;
                    data.Modifytime = data.Createtime;
 
                    resultEntity = _askService.SaveCustomerWithdrawal(data);
                    if (!resultEntity.Result)
                    {
                        returnMsg.code = 2;
                        returnMsg.error = resultEntity.Message;
                        returnMsg.count = 0;
                        return new JsonResult(returnMsg);
                    }
 
 
 
 
                    //发起流程相关
 
                    resultEntity = _wfRunProcessService.WfCustomerRefund(data.Id, data.Step, data.Tongguojujue, "e4c93811-b9b1-4998-89f5-c416ebab0c07", data.Content, data.Tittle, "v1");
                    if (!resultEntity.Result)
                    {
                        returnMsg.code = 2;
                        returnMsg.error = resultEntity.Message;
                        returnMsg.count = 0;
                        return new JsonResult(returnMsg);
                    }
                    scope.Complete();
                    returnMsg.code = 1;
                    returnMsg.returnObj = null;
                    returnMsg.count = 0;
                }
            }
            catch (Exception ex)
            {
                returnMsg.code = 2;
                returnMsg.error = "没有获取到token";
                returnMsg.count = 0;
 
            }
            return new JsonResult(returnMsg);
        }
 
 
 
 
 
        /// <summary>
        /// 会员提现申请,审批结果
        /// </summary>
        /// <param name="data"></param>
        /// <returns></returns>
        public IActionResult GetCustomerRefund(string OrderNo)
        {
            ReturnMsg<AdmCustomerWithdrawalDTO> returnMsg = new ReturnMsg<AdmCustomerWithdrawalDTO>();
            returnMsg.code = 2;
            try
            {
                //验证数据完整性
                if (string.IsNullOrWhiteSpace(OrderNo))
                {
                    returnMsg.code = 2;
                    returnMsg.error = "没有订单号!";
                    returnMsg.count = 0;
                    return new JsonResult(returnMsg);
                }
 
 
                ResultEntity resultEntity = new ResultEntity();
 
                var customerWithdrawalDTO = _askService.GetCustomerWithdrawalList(OrderNo).FirstOrDefault();
 
 
                //验证是否重复发起
                if (customerWithdrawalDTO == null)
                {
                    returnMsg.code = 2;
                    returnMsg.error = "没有查找到审批流程!";
                    returnMsg.count = 0;
                    return new JsonResult(returnMsg);
                }
 
 
 
                var sysCodeDtls = _liaotianService.GetSYScode("wf_run_process", "shenpi_status");
                var sysCodeDtl = sysCodeDtls.Where(x => x.CodeSn == customerWithdrawalDTO.ShenpiStatus).FirstOrDefault();
                if (sysCodeDtl != null)
                {
                    customerWithdrawalDTO.ShenpiStatusName = sysCodeDtl.Comments;
                }
                var wfRunProcessDTO = _wfRunProcessService.GetList(customerWithdrawalDTO.Id, "23").FirstOrDefault();
 
                if (wfRunProcessDTO == null)
                {
                    returnMsg.code = 2;
                    returnMsg.error = "没有查找到审批流程!";
                    returnMsg.count = 0;
                    return new JsonResult(returnMsg);
                }
 
                var lishiyijian = _wfHistoryService.GetListshenpi(wfRunProcessDTO.Id).LastOrDefault();
                if (lishiyijian == null)
                {
                    returnMsg.code = 2;
                    returnMsg.error = "没有查找到审批流程!";
                    returnMsg.count = 0;
                    return new JsonResult(returnMsg);
                }
                customerWithdrawalDTO.Content = lishiyijian.Content;
                customerWithdrawalDTO.Step = wfRunProcessDTO.Step;
 
                returnMsg.code = 1;
                returnMsg.returnObj = customerWithdrawalDTO;
                returnMsg.count = 1;
 
            }
            catch (Exception ex)
            {
                returnMsg.code = 2;
                returnMsg.error = "没有获取到token";
                returnMsg.count = 0;
 
            }
            return new JsonResult(returnMsg);
        }
    }
}