1
yhj
2024-07-24 5e5d945e91568b973faa27d8ab0bcef99fc4a6c5
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
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
#region
 
using System;
using System.Collections;
using System.Data;
using CSFrameworkV5.Common;
using CSFrameworkV5.Core;
using CSFrameworkV5.Models;
 
#endregion
 
namespace CSFrameworkV5.Business.BLL_Permission
{
    /// <summary>
    ///     拖放操作或用户修改数据源时立即触发的事件。
    /// </summary>
    /// <param name="sourceTable">数据源对应的资料表</param>
    /// <param name="item">当前拖放的项目</param>
    /// <param name="state">状态(新增,修改,删除)</param>
    public delegate void DataSourceChanged(DataTable sourceTable,
        ItemExtend item, DataRowState state);
 
    /// <summary>
    ///     扩展的数组结构,用于界面上拖放操作需要操作的数据源。
    ///     主要用于操作组或用户角色的明细数据,如组的用户,组的角色及用户的角色等。
    /// </summary>
    public class DragDropDataSourceBase : ArrayList
    {
        protected bool _AllowRemoveDataRow;
        protected string _PrimaryKeyValue;
 
        protected DataTable _SourceTable;
 
        /// <summary>
        ///     构造器
        /// </summary>
        /// <param name="sourceTable">组的明细数据源</param>
        /// <param name="currentGroup">当前组编号</param>
        /// <param name="allowRemoveDataRow">允许删除资料行,当拖放操作后是否删除拖放的数据源。</param>
        public DragDropDataSourceBase(DataTable sourceTable,
            string primaryKeyValue, bool allowRemoveDataRow)
        {
            _SourceTable = sourceTable;
            _PrimaryKeyValue = primaryKeyValue;
            _AllowRemoveDataRow = allowRemoveDataRow;
        }
 
        /// <summary>
        ///     数据源对应的资料表
        /// </summary>
        public DataTable SourceTable
        {
            get => _SourceTable;
            set => _SourceTable = value;
        }
 
        protected event DataSourceChanged _DataSourceChangedEvent;
 
        /// <summary>
        ///     添加项目到数组和资料表
        /// </summary>
        /// <param name="item">当前项目</param>
        /// <returns></returns>
        public virtual int AddToListAndTable(ItemExtend item)
        {
            NotifyChanged(item, DataRowState.Added);
            return base.Add(item);
        }
 
        /// <summary>
        ///     是否存在指定的对象
        /// </summary>
        /// <param name="item">对象</param>
        /// <returns></returns>
        protected virtual bool Exists(ItemExtend item)
        {
            foreach (ItemExtend o in this)
                if (item.Code == o.Code)
                    return true;
 
            return false;
        }
 
        /// <summary>
        ///     获取数据表经用户修改的资料行
        /// </summary>
        /// <returns></returns>
        public virtual DataTable GetChanges()
        {
            return _SourceTable.GetChanges();
        }
 
        /// <summary>
        ///     通知客户订阅的事件
        /// </summary>
        /// <param name="item"></param>
        /// <param name="state"></param>
        public void NotifyChanged(ItemExtend item, DataRowState state)
        {
            if (_DataSourceChangedEvent != null)
                _DataSourceChangedEvent(_SourceTable, item, state);
        }
 
        /// <summary>
        ///     拖放操作或用户修改数据源时立即触发的事件
        /// </summary>
        public event DataSourceChanged OnDataSourceChanged
        {
            add => _DataSourceChangedEvent = value;
            remove => _DataSourceChangedEvent = null;
        }
 
        /// <summary>
        ///     删除数组的对象及资料表的记录
        /// </summary>
        /// <param name="obj">对象</param>
        public override void Remove(object obj)
        {
            base.Remove(obj); //删除数组的对象
 
            var item = obj as ItemExtend;
 
            //删除新增状态的记录,直接删除记录
            if (_AllowRemoveDataRow)
            {
                item.Deleted = true; //标记删除
                NotifyChanged(item, DataRowState.Deleted);
            }
        }
    }
 
    /// <summary>
    ///     组用户的数据源
    /// </summary>
    public class GroupUserDataSource : DragDropDataSourceBase
    {
        /// <summary>
        ///     构造器
        /// </summary>
        /// <param name="sourceTable">组用户的数据表</param>
        /// <param name="currentGroup">当前组编号</param>
        /// <param name="allowRemoveDataRow">允许删除资料行,当拖放操作后是否删除资料表的记录行。</param>
        public GroupUserDataSource(DataTable sourceTable, string currentGroup,
            bool allowRemoveDataRow) :
            base(sourceTable, currentGroup, allowRemoveDataRow)
        {
            InitDataSource(sourceTable);
        }
 
        public override int AddToListAndTable(ItemExtend item)
        {
            if (Exists(item)) return -1;
 
            if (_AllowRemoveDataRow)
            {
                var row = SourceTable.NewRow();
                row[tb_MyGroupUser.DataSetID] = Loginer.CurrentUser.DBID;
                row[tb_MyGroupUser.GroupCode] = _PrimaryKeyValue; //组编号
                row[tb_MyGroupUser.Account] = item.Code; //用户
                SourceTable.Rows.Add(row);
 
                item.DataRow = row;
                NotifyChanged(item, DataRowState.Added);
            }
 
            return base.Add(item);
        }
 
        public override DataTable GetChanges()
        {
            //复制原如数据及新增的记录
            var temp = SourceTable.Copy();
 
            foreach (ItemExtend item in this)
                if (item.Deleted)
                {
                    var rows = temp.Select("GroupCode='" + _PrimaryKeyValue +
                                           "' and Account='" + item.Code + "'");
                    if (rows.Length > 0) rows[0].Delete(); //资料表的记录打上删除标记
                }
 
            return temp.GetChanges();
        }
 
        /// <summary>
        ///     初始化数据源
        /// </summary>
        /// <param name="sourceTable">组的用户数据源</param>
        private void InitDataSource(DataTable sourceTable)
        {
            foreach (DataRow row in sourceTable.Rows)
            {
                var item = new ItemExtend();
                item.Code = row[tb_MyUser.Account].ToStringEx();
                item.Name = row[tb_MyUser.UserName].ToStringEx() + "  (" +
                            item.Code + ")";
                item.DataRow = row;
                Add(item);
            }
        }
    }
 
    /// <summary>
    ///     组的角色数据源
    /// </summary>
    public class GroupRoleDataSource : DragDropDataSourceBase
    {
        public GroupRoleDataSource(DataTable sourceTable, string currentGroup,
            bool allowRemoveDataRow) :
            base(sourceTable, currentGroup, allowRemoveDataRow)
        {
            InitDataSource(sourceTable);
        }
 
        public override int AddToListAndTable(ItemExtend item)
        {
            if (Exists(item)) return -1;
 
            if (_AllowRemoveDataRow)
            {
                var row = SourceTable.NewRow();
                row[tb_MyGroupRole.DataSetID] = Loginer.CurrentUser.DBID;
                row[tb_MyGroupRole.GroupCode] = _PrimaryKeyValue;
                row[tb_MyGroupRole.RoleID] = item.Code;
                SourceTable.Rows.Add(row);
 
                item.DataRow = row;
                NotifyChanged(item, DataRowState.Added);
            }
 
            return base.Add(item);
        }
 
        public override DataTable GetChanges()
        {
            //复制原如数据及新增的记录
            var temp = SourceTable.Copy();
 
            foreach (ItemExtend item in this)
                if (item.Deleted)
                {
                    var rows = temp.Select("GroupCode='" + _PrimaryKeyValue +
                                           "' and RoleID='" + item.Code + "'");
                    if (rows.Length > 0) rows[0].Delete();
                }
 
            return temp.GetChanges();
        }
 
        private void InitDataSource(DataTable sourceTable)
        {
            foreach (DataRow row in sourceTable.Rows)
            {
                var item = new ItemExtend();
                item.Code = row[tb_MyRole.RoleID].ToStringEx();
                item.Name = row[tb_MyRole.RoleName].ToStringEx() + "  (" +
                            item.Code + ")";
                item.DataRow = row;
                Add(item);
            }
        }
    }
 
    /// <summary>
    ///     组的角色数据源
    /// </summary>
    public class RoleDataSource : DragDropDataSourceBase
    {
        public RoleDataSource(DataTable sourceTable) :
            base(sourceTable, tb_MyRole.__KeyName, true)
        {
            InitDataSource(sourceTable);
        }
 
        public override int AddToListAndTable(ItemExtend item)
        {
            if (Exists(item)) return -1;
 
            var row = SourceTable.NewRow();
            row[tb_MyRole.DataSetID] = Loginer.CurrentUser.DBID;
            row[tb_MyRole.RoleID] = item.Code;
            row[tb_MyRole.RoleName] = item.Name;
            SourceTable.Rows.Add(row);
 
            NotifyChanged(item, DataRowState.Added);
 
            return base.Add(item);
        }
 
        protected override bool Exists(ItemExtend item)
        {
            var temp = item as UserRoleItem;
 
            foreach (ItemExtend o in this)
                if (o.Code == temp.RoleID)
                    return true;
 
            return false;
        }
 
        private void InitDataSource(DataTable sourceTable)
        {
            foreach (DataRow row in sourceTable.Rows)
            {
                var item = new ItemExtend();
                item.Code = row[tb_MyRole.RoleID].ToStringEx();
                item.Name = row[tb_MyRole.RoleName].ToStringEx();
                item.DataRow = row;
                Add(item);
            }
        }
    }
 
    /// <summary>
    ///     用户的临时角色数据源
    /// </summary>
    public class UserRoleDataSource : DragDropDataSourceBase
    {
        public UserRoleDataSource(DataTable sourceTable, string account,
            bool allowRemoveDataRow) :
            base(sourceTable, account, allowRemoveDataRow)
        {
            InitDataSource(sourceTable);
        }
 
        public override int AddToListAndTable(ItemExtend item)
        {
            if (item is UserRoleItem)
            {
                var R = item as UserRoleItem;
                if (Exists(item)) return -1;
 
                if (_AllowRemoveDataRow)
                {
                    var row = SourceTable.NewRow();
                    R.WriteToDataRow(row); //对象的属性写入DataRow
                    R.DataRow = row;
                    SourceTable.Rows.Add(row);
                    NotifyChanged(item, DataRowState.Added);
                }
 
                return base.Add(item); //item=R
            }
 
            return -1;
        }
 
        protected override bool Exists(ItemExtend item)
        {
            var R = item as UserRoleItem;
 
            foreach (UserRoleItem o in this)
                if (R.Account == o.Account && R.RoleID == o.RoleID)
                    return true;
 
            return false;
        }
 
        public override DataTable GetChanges()
        {
            //复制原如数据及新增的记录
            var temp = SourceTable.Copy();
 
            foreach (ItemExtend item in this)
                if (item.Deleted)
                {
                    var rows = temp.Select("Account='" + _PrimaryKeyValue +
                                           "' and RoleID='" + item.Code + "'");
                    if (rows.Length > 0) rows[0].Delete();
                }
 
            return temp.GetChanges();
        }
 
        private void InitDataSource(DataTable sourceTable)
        {
            foreach (DataRow row in sourceTable.Rows)
            {
                var item = new UserRoleItem(row);
                Add(item);
            }
        }
    }
 
    public class SortedItemDataSource : DragDropDataSourceBase
    {
        public SortedItemDataSource(DataTable sourceTable,
            string primaryKeyValue, bool allowRemoveDataRow) :
            base(sourceTable, primaryKeyValue, allowRemoveDataRow)
        {
            InitDataSource(sourceTable);
        }
 
        public override int AddToListAndTable(ItemExtend item)
        {
            return 0;
            //if (this.Exists(item))
            //{
            //    return -1;
            //}
            //else
            //{
            //    if (_AllowRemoveDataRow)
            //    {
            //        DataRow row = SourceTable.NewRow();
            //        row[tb_MyGroupRole.DataSetID] = Loginer.CurrentUser.DBID;
            //        row[tb_MyGroupRole.GroupCode] = _PrimaryKeyValue;
            //        row[tb_MyGroupRole.RoleID] = item.Code;
            //        SourceTable.Rows.Add(row);
 
            //        item.DataRow = row;
            //        this.NotifyChanged(item, DataRowState.Added);
            //    }
 
            //    return base.Add(item);
            //}
        }
 
        public override DataTable GetChanges()
        {
            return null;
 
            //复制原如数据及新增的记录
            //DataTable temp = SourceTable.Copy();
 
            //foreach (ItemExtend item in this)
            //{
            //    if (item.Deleted)
            //    {
            //        DataRow[] rows = temp.Select("GroupCode='" + _PrimaryKeyValue + "' and RoleID='" + item.Code + "'");
            //        if (rows.Length > 0) rows[0].Delete();
            //    }
            //}
 
            //return temp.GetChanges();
        }
 
        private void InitDataSource(DataTable sourceTable)
        {
            //foreach (DataRow row in sourceTable.Rows)
            //{
            //    ItemExtendSorted item = new ItemExtendSorted();
            //    item.Code = row[tb_MyRole.RoleID].ToStringEx();
            //    item.Name = row[tb_MyRole.RoleName].ToStringEx();
            //    item.DataRow = row;
            //    this.Add(item);
            //}
        }
    }
 
    /// <summary>
    ///     用户的角色扩展类
    /// </summary>
    public class UserRoleItem : ItemExtend
    {
        private string _Account = "";
 
        private DateTime _CreateTime;
 
        private string _CreateUser;
 
        private string _DataSetID;
        private string _Description = "";
        private DateTime _ExpireDate;
 
        private int _isid;
        private string _RoleID = "";
        private string _RoleName = "";
 
        public UserRoleItem()
        {
        }
 
        public UserRoleItem(DataRow row)
        {
            ReadFromDataRow(row);
            DataRow = row;
        }
 
        public string Account
        {
            get => _Account;
            set => _Account = value;
        }
 
        public DateTime CreateTime
        {
            get => _CreateTime;
            set => _CreateTime = value;
        }
 
        public string CreateUser
        {
            get => _CreateUser;
            set => _CreateUser = value;
        }
 
        public string DataSetID
        {
            get => _DataSetID;
            set => _DataSetID = value;
        }
 
        public string Description
        {
            get => _Description;
            set => _Description = value;
        }
 
        public DateTime ExpireDate
        {
            get => _ExpireDate;
            set => _ExpireDate = value;
        }
 
        public int isid
        {
            get => _isid;
            set => _isid = value;
        }
 
        public string RoleID
        {
            get => _RoleID;
            set => _RoleID = value;
        }
 
        public string RoleName
        {
            get => _RoleName;
            set => _RoleName = value;
        }
 
        public void ReadFromDataRow(DataRow row)
        {
            Code = RoleID;
            Name = RoleName;
            RoleID = row[tb_MyUserRoles.RoleID].ToStringEx();
            RoleName = row[tb_MyUserRoles.RoleName].ToStringEx();
            Account = row[tb_MyUserRoles.Account].ToStringEx();
            Description = row[tb_MyUserRoles.Description].ToStringEx();
            ExpireDate = ConvertEx.ToDateTimeEx(row[tb_MyUserRoles.ExpireDate]);
            DataSetID = ConvertEx.ToString(row[tb_MyUserRoles.DataSetID]);
            CreateUser = ConvertEx.ToString(row[tb_MyUserRoles.CreateUser]);
            CreateTime = ConvertEx.ToDateTimeEx(row[tb_MyUserRoles.CreateTime]);
        }
 
        public void UpdateInnerDataRow()
        {
            if (DataRow != null) WriteToDataRow(DataRow);
        }
 
        public void WriteToDataRow(DataRow row)
        {
            row[tb_MyUserRoles.RoleID] = RoleID;
            row[tb_MyUserRoles.RoleName] = RoleName;
            row[tb_MyUserRoles.Account] = Account;
            row[tb_MyUserRoles.Description] = Description;
            row[tb_MyUserRoles.ExpireDate] = ExpireDate;
            row[tb_MyUserRoles.CreateUser] = CreateUser;
            row[tb_MyUserRoles.CreateTime] = CreateTime;
            row[tb_MyUserRoles.DataSetID] = DataSetID;
        }
    }
}