username@email.com
2021-08-03 1c5d7b4b5b9d7fab7d10be4775ea5ba4420aeecc
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
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);
                }
              
                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);
        }
    }
}