-
Notifications
You must be signed in to change notification settings - Fork 0
/
TransactionManager.cs
437 lines (393 loc) · 17.7 KB
/
TransactionManager.cs
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
using Denial_Coding.BAL.Generics;
using Denial_Coding.BAL.ViewModels;
using DC.DAL;
using Microsoft.Win32.SafeHandles;
using System;
using System.Collections.Generic;
using System.Data;
//using System.Data.Entity;
using System.Data.Entity.Validation;
using System.Data.SqlClient;
using System.Globalization;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
//using System.Threading.Tasks;
using System.Web;
using System.Web.Mvc;
using System.Web.Routing;
using System.Data.Entity;
using System.Data.Entity.SqlServer;
namespace Denial_Coding.BAL.Managers
{
public class TransactionManager:ITransactionService
{
#region LoadCoderInboxData
public List<TransactionModel> LoadCoderInboxData()
{
using (McKesson_GVLEntities _context = new McKesson_GVLEntities())
{
int projectId = Convert.ToInt32(HttpContext.Current.Session[Constants.ProjectId]);
string userName = HttpContext.Current.Session[Constants.UserName].ToString();
List<TransactionModel> list = (from data in _context.tbl_IMPORT_TABLE
join tran in _context.tbl_TRANSACTION on data.IMPORT_ID equals tran.IMPORT_ID
join tranD in _context.tbl_TRANSACTION_DETAILS on tran.TRANS_ID equals tranD.TRANS_ID
where data.PROJECT_ID == projectId && tranD.CODED_TO == userName && tranD.CODED_STATUS == "Coding Allotted"
select new TransactionModel
{
IMPORT_ID=data.IMPORT_ID,
ACCOUNT_NO=data.ACCOUNT_NO,
CLIENT_ID=SqlFunctions.StringConvert((double)data.CLIENT_ID).Trim(),
DOS=data.DOS,
DENIAL_WORKED_DT=data.DENIAL_WORKED_DT,
DENIAL_TYPE=data.DENIAL_TYPE
}).ToList();
return (from item in list
select new TransactionModel
{
IMPORT_ID = item.IMPORT_ID,
ACCOUNT_NO = item.ACCOUNT_NO,
CLIENT_ID = item.CLIENT_ID,
DOS = item.DOS,
DENIAL_WORKED_DT = item.DENIAL_WORKED_DT,
DENIAL_TYPE = item.DENIAL_TYPE
}).ToList();
}
}
#endregion
//#region EditTransactionList
//public TransactionModel EditTransactionList(string Import_ID)
//{
// using (McKesson_GVLEntities _context = new McKesson_GVLEntities())
// {
// int importid = Convert.ToInt32(Import_ID.ToString());
// var m = (from data in _context.tbl_IMPORT_TABLE
// where data.IMPORT_ID == importid
// select new
// {
// data.IMPORT_ID,
// data.ACCOUNT_NO,
// data.CLIENT_ID,
// data.DOS,
// data.ACCOUNT_NAME,
// data.DENIAL_WORKED_DT,
// data.ERROR_CATEGORY,
// data.SUB_CATEGORY_Error_Type,
// data.CODER_LOGIN_ID,
// data.QC_LOGIN_ID,
// data.DENIAL_TYPE,
// data.AUDITOR_NAME,
// data.EMP_ID,
// data.EMP_NAME
// }).FirstOrDefault();
// TransactionModel model = new TransactionModel();
// model.IMPORT_ID = m.IMPORT_ID;
// model.ACCOUNT_NO = m.ACCOUNT_NO;
// model.CLIENT_ID = m.CLIENT_ID.ToString();
// model.DOS = m.DOS;
// model.ACCOUNT_NAME = m.ACCOUNT_NAME;
// model.DENIAL_WORKED_DT = m.DENIAL_WORKED_DT;
// model.ERROR_CATEGORY = m.ERROR_CATEGORY;
// model.SUB_CATEGORY_Error_Type = m.SUB_CATEGORY_Error_Type;
// model.CODER_LOGIN_ID = m.CODER_LOGIN_ID;
// model.QC_LOGIN_ID = m.QC_LOGIN_ID;
// model.DENIAL_TYPE = m.DENIAL_TYPE;
// model.AUDITOR_NAME = m.AUDITOR_NAME;
// model.EMP_ID = m.EMP_ID.ToString();
// model.EMP_NAME = m.EMP_NAME;
// return model;
// }
//}
//#endregion
public DataTable EditTransactionList(string Import_ID)
{
DataTable dt = new DataTable();
using (McKesson_GVLEntities _context = new McKesson_GVLEntities())
{
int projectId = Convert.ToInt32(HttpContext.Current.Session[Constants.ProjectId]);
//PipelineManager objP = new PipelineManager();
ImportManager objP = new ImportManager();
SqlConnection conObj = new SqlConnection(Constants.ConnectionString);
conObj.Open();
SqlCommand cmdObj = new SqlCommand(Constants.ImportDataDetails, conObj);
cmdObj.CommandType = CommandType.StoredProcedure;
cmdObj.Parameters.AddWithValue("@Project_Id", projectId);
cmdObj.Parameters.AddWithValue("@IMPORT_ID", Import_ID);
SqlDataAdapter adapter1 = new SqlDataAdapter(cmdObj);
adapter1.Fill(dt);
conObj.Close();
}
return dt;
}
#region Get Client Names
public List<SelectListItem> GetClientList()
{
try
{
using (McKesson_GVLEntities _context = new McKesson_GVLEntities())
{
//ImportModel model = new ImportModel();
string userName = System.Environment.UserName.ToString();
int Project_id = Convert.ToInt32(HttpContext.Current.Session[Constants.ProjectId].ToString());
var list = (from client in _context.tbl_CLIENT_TABLE
//join project in _context.tbl_PROJECT_MASTER on practice.PROJECT_ID equals project.PROJECT_ID
//where project.PROJECT_ID == Project_id
select new SelectListItem
{
Text = SqlFunctions.StringConvert((double)client.Client_ID).Trim(),
Value = SqlFunctions.StringConvert((double)client.Client_ID).Trim()
}).Distinct().ToList();
return list;
}
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
//#region Get Account Names
//public List<SelectListItem> GetAccountList()
//{
// try
// {
// using (McKesson_GVLEntities _context = new McKesson_GVLEntities())
// {
// //ImportModel model = new ImportModel();
// string userName = System.Environment.UserName.ToString();
// int Project_id = Convert.ToInt32(HttpContext.Current.Session[Constants.ProjectId].ToString());
// var list = (from account in _context.tbl_ACCOUNT_TABLE
// //join project in _context.tbl_PROJECT_MASTER on practice.PROJECT_ID equals project.PROJECT_ID
// //where project.PROJECT_ID == Project_id
// select new SelectListItem
// {
// Text = account.Account_No.ToString(),
// Value = account.Account_No.ToString()
// }).Distinct().ToList();
// return list;
// }
// }
// catch (Exception ex)
// {
// throw ex;
// }
//}
//#endregion
#region GetAccountName
public string GetAccountName(int CID)
{
DataSet dsCommon = new DataSet();
using (McKesson_GVLEntities _context = new McKesson_GVLEntities())
{
string account_name = "";
try
{
var acc_n = (from acc in _context.tbl_CLIENT_TABLE where acc.Client_ID == CID select new { acc.Clinet_Name }).Single();
account_name = acc_n.Clinet_Name.ToString();
}
catch (Exception e)
{
throw e;
}
return account_name;
}
}
#endregion
#region Get ErrorCategory Names
public List<SelectListItem> GetErrorCategoryList(string denialtype)
{
try
{
using (McKesson_GVLEntities _context = new McKesson_GVLEntities())
{
//ImportModel model = new ImportModel();
string userName = System.Environment.UserName.ToString();
int Project_id = Convert.ToInt32(HttpContext.Current.Session[Constants.ProjectId].ToString());
var list = (from error in _context.tbl_ERROR_CAT_TABLE
where (error.Error_Category != null || error.Error_Category != "") && error.Error_Type == denialtype
select new SelectListItem
{
Text = error.Error_Category.ToString(),
Value = error.Error_Category.ToString()
}).Distinct().ToList();
return list;
}
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
#region Get SubCategory Names
public List<SelectListItem> GetSubCategoryList(string errorId)
{
try
{
using (McKesson_GVLEntities _context = new McKesson_GVLEntities())
{
//ImportModel model = new ImportModel();
string userName = System.Environment.UserName.ToString();
int Project_id = Convert.ToInt32(HttpContext.Current.Session[Constants.ProjectId].ToString());
var list = (from sub in _context.tbl_ERROR_CAT_TABLE
where sub.Error_Category == errorId
select new SelectListItem
{
Text = sub.Sub_Category.ToString(),
Value = sub.Sub_Category.ToString()
}).Distinct().ToList();
return list;
}
}
catch (Exception ex)
{
throw ex;
}
}
#endregion
#region UpdateTransaction
public void UpdateTransaction(FormCollection frm,int import_id)
{
using (McKesson_GVLEntities _context = new McKesson_GVLEntities())
{
var _tr = _context.tbl_IMPORT_TABLE.Where(x => x.IMPORT_ID == import_id).SingleOrDefault();
if (_tr != null)
{
foreach (var key in frm.AllKeys)
{
if (key == "CLIENT_ID")
{
if (Convert.ToString(frm[key]) != "")
{
_tr.CLIENT_ID = Convert.ToInt32(frm[key]);
}
}
if (key == "ACCOUNT_NAME")
{
if (Convert.ToString(frm[key]) != "")
{
_tr.ACCOUNT_NAME = frm[key];
}
}
if (key == "DOS")
{
if (Convert.ToString(frm[key]) != "")
{
_tr.DOS = Convert.ToDateTime(frm[key]);
}
}
if (key == "ACCOUNT_NO")
{
if (Convert.ToString(frm[key]) != "")
{
_tr.ACCOUNT_NO = frm[key];
}
}
if (key == "DENIAL_WORKED_DT")
{
if (Convert.ToString(frm[key]) != "")
{
_tr.DENIAL_WORKED_DT = Convert.ToDateTime(frm[key]);
}
}
if (key == "ERROR_CATEGORY")
{
if (Convert.ToString(frm[key]) != "")
{
_tr.ERROR_CATEGORY = frm[key];
}
}
if (key == "SUB_CATEGORY_Error_Type")
{
if (Convert.ToString(frm[key]) != "")
{
_tr.SUB_CATEGORY_Error_Type = frm[key];
}
}
if (key == "CODER_LOGIN_ID")
{
if (Convert.ToString(frm[key]) != "")
{
_tr.CODER_LOGIN_ID = frm[key];
}
}
if (key == "QC_LOGIN_ID")
{
if (Convert.ToString(frm[key]) != "")
{
_tr.QC_LOGIN_ID = frm[key];
}
}
if (key == "DENIAL_TYPE")
{
if (Convert.ToString(frm[key]) != "")
{
_tr.DENIAL_TYPE = frm[key];
}
}
if (key == "COMMENTS")
{
if (Convert.ToString(frm[key]) != "")
{
_tr.COMMENTS = frm[key];
}
}
if (key == "AUDITOR_NAME")
{
if (Convert.ToString(frm[key]) != "")
{
_tr.AUDITOR_NAME = frm[key];
}
}
if (key == "EMP_ID")
{
if (Convert.ToString(frm[key]) != "")
{
_tr.EMP_ID = Convert.ToInt32(frm[key]);
}
}
if (key == "EMP_NAME")
{
if (Convert.ToString(frm[key]) != "")
{
_tr.EMP_NAME = frm[key];
}
}
}
}
_context.SaveChanges();
var _tr_id = (from sub in _context.tbl_TRANSACTION where sub.IMPORT_ID == import_id select new {sub.TRANS_ID}).Single();
int trans_id = Convert.ToInt32(_tr_id.TRANS_ID.ToString());
var _tr_details = _context.tbl_TRANSACTION_DETAILS.Where(x => x.TRANS_ID == trans_id).SingleOrDefault();
if (_tr_details != null)
{
_tr_details.CODED_STATUS = "Coding Completed";
_tr_details.CODING_COMPLETE_DATE = DateTime.Now;
}
_context.SaveChanges();
}
}
#endregion
#region LoadEMPName
public string LoadEMPName(string CODER_LOGIN_ID)
{
using (McKesson_GVLEntities _context = new McKesson_GVLEntities())
{
int coder_emp_id = 0;
string coder_ntlg = "";
try
{
var acc_coder = (from coder in _context.tbl_CODER_EXCODE where coder.ExCode == CODER_LOGIN_ID.ToString().Trim() select new { coder.EmpID, coder.NTLG }).Single();
coder_emp_id = Convert.ToInt32(acc_coder.EmpID);
coder_ntlg = acc_coder.NTLG.ToString();
}
catch (Exception e)
{
//throw e;
}
return coder_emp_id.ToString() + " " + coder_ntlg;
}
}
#endregion
}
}