派生自 projectDept/qhighschool

111
胡仁荣
2022-12-02 b94deda20c9abd2fb6248b831e10a620eb7daf68
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
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
package com.qxueyou.scc.school.service.impl;
 
import java.net.URL;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
 
import org.apache.commons.lang3.StringUtils;
import org.apache.commons.lang3.time.DateUtils;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.stereotype.Service;
 
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.qxueyou.scc.admin.classes.model.ClsClass;
//import com.qxueyou.scc.user.model.UserReWeixin;
import com.qxueyou.scc.base.model.CacheConstants;
//import com.qxueyou.scc.base.model.ONSMsg;
import com.qxueyou.scc.base.model.Pager;
import com.qxueyou.scc.base.model.Result;
//import com.qxueyou.scc.base.service.ICacheService;
import com.qxueyou.scc.base.service.impl.CommonAppService;
//import com.qxueyou.scc.base.service.impl.CommonONSProducer;
import com.qxueyou.scc.base.util.ClientUtils;
import com.qxueyou.scc.base.util.CollectionUtils;
import com.qxueyou.scc.base.util.CommonUtils;
import com.qxueyou.scc.base.util.RSAUtils;
import com.qxueyou.scc.base.util.TraceUtils;
import com.qxueyou.scc.base.util.UUIDUtils;
import com.qxueyou.scc.msg.model.MsgUser;
//import com.qxueyou.scc.org.model.Organization;
import com.qxueyou.scc.school.dao.SignDAO;
import com.qxueyou.scc.school.model.ExportSchSignItem;
import com.qxueyou.scc.school.model.SchClassSchedule;
import com.qxueyou.scc.school.model.SchClassSubject;
import com.qxueyou.scc.school.model.SchScheduleAddress;
import com.qxueyou.scc.school.model.SchSign;
import com.qxueyou.scc.school.model.SchSignCode;
import com.qxueyou.scc.school.model.SchSignItem;
import com.qxueyou.scc.school.model.SchSignOrder;
import com.qxueyou.scc.school.model.SchSignStatistics;
import com.qxueyou.scc.school.model.SignStatisResult;
//import com.qxueyou.scc.school.service.IScoreChangeService;
import com.qxueyou.scc.school.service.ISignService;
import com.qxueyou.scc.user.model.User;
import com.qxueyou.scc.user.model.UserRegistration;
import com.qxueyou.scc.user.service.IUserService;
//import com.qxueyou.scc.weixin.service.IWeixinCommonService;
 
@Service
public class SignService extends CommonAppService implements ISignService {
    
    private static final String late = "³Ùµ½";
 
    private static final String normal = "Õý³£";
 
    private static Logger log = LogManager.getLogger("SignService");
    
    private SignDAO signDAO;
 
//    // Ç©µ½ÉÏ´óÆÁ
//    @Autowired
//    IMsgVenderService  easemobService;
//    
//    @Autowired
//    CommonONSProducer onsProducer;
//    
//    @Autowired
//    ICacheService cacheService;
    
//    /** Î¢ÐÅÒµÎñ²Ù×÷  **/
//    @Autowired
//    IWeixinCommonService weixinCommonService;
    
    @Autowired
    IUserService userService;
    
//    @Autowired
//    IScoreChangeService  scoreChangeService;
    
    ObjectMapper mapper = new ObjectMapper(); 
    
    public SignDAO getSignDAO() {
        return signDAO;
    }
 
    /**
     * ÒÀÀµ×¢Èë
     *
     * @param interactDAO
     */
    @Autowired(required = false)
    public void setSignDAO(@Qualifier("signDAO") SignDAO signDAO) {
        this.signDAO = signDAO;
    }
    
    
    @Override
    public Result insertSign(SchSign sign) {
        String signId = sign.getSignId();
        if(StringUtils.isNoneBlank(signId)){
            List<SchSign> lstSchSign = this.find("select s from SchSign s where s.classScheduleId = ? and s.deleteFlag is false and signId <> ?",
                    CollectionUtils.newList(sign.getClassScheduleId(), signId), SchSign.class);
            if(lstSchSign != null && !lstSchSign.isEmpty()){
                return new Result(false, "ÄãÑ¡ÔñµÄ¿Î³ÌÒѾ­´æÔÚÇ©µ½£¬Çë²»ÒªÖØ¸´Ìí¼Ó");
            }
            SchSign objSchSign = this.read(SchSign.class, signId);
            objSchSign.setUpdateId(ClientUtils.getUserId());
            objSchSign.setUpdateTime(new Date(System.currentTimeMillis()));
            objSchSign.setUpdator(ClientUtils.getUserName());
            objSchSign.setStartTime(sign.getStartTime());
            objSchSign.setEndTime(sign.getEndTime());
            objSchSign.setRegisterAllow(sign.getRegisterAllow());
            objSchSign.setOutRangeAllow(sign.getOutRangeAllow());
            objSchSign.setValidatePhone(sign.getValidatePhone());
            objSchSign.setOutRange(sign.getOutRange());
            int icount = this.findCount("from SchSignStatistics s where s.signId = ? and s.deleteFlag is false", CollectionUtils.newList(objSchSign.getSignId()));
            if(icount == 0){
                objSchSign.setSignType(sign.getSignType());
                objSchSign.setClassScheduleId(sign.getClassScheduleId());
                objSchSign.setName(sign.getName());
            }
            save(objSchSign);
//            cacheService.set(CacheConstants.SCH_SIGN_ID_PREFIX.concat(signId), CacheConstants.SCH_SIGN_ID_TIME, objSchSign);
        }else{
            List<SchSign> lstSchSign = this.find("select s from SchSign s where s.classScheduleId = ? and s.deleteFlag is false",
                    CollectionUtils.newList(sign.getClassScheduleId()), SchSign.class);
            if(lstSchSign != null && !lstSchSign.isEmpty()){
                return new Result(false, "ÄãÑ¡ÔñµÄ¿Î³ÌÒѾ­´æÔÚÇ©µ½£¬Çë²»ÒªÖØ¸´Ìí¼Ó");
            }
            // »ñÈ¡¿Í»§¶ËÐÅÏ¢
            // ÉèÖûù±¾×Ö¶Î
            String signCode = generateSignCode(ClientUtils.getClassId());
            sign.setCreateId(ClientUtils.getUserId());
            sign.setCreateTime(new Date(System.currentTimeMillis()));
            sign.setCreator(ClientUtils.getUserName());
            sign.setDeleteFlag(false);
            sign.setUpdateId(ClientUtils.getUserId());
            sign.setUpdateTime(new Date(System.currentTimeMillis()));
            sign.setUpdator(ClientUtils.getUserName());
            sign.setClassId(ClientUtils.getClassId());
            sign.setCourse(ClientUtils.getCourseName());
            sign.setCode(signCode);
            sign.setHisShow(SchSign.SIGN_HIS_SHOW);
            sign.setActAllow(SchSign.SIGN_ACT_ALLOW);
 
            String uuidPwd = UUIDUtils.generateShortUuid();
            MsgUser msgUser = new MsgUser();
            msgUser.setUserId(UUIDUtils.generateUUID().replace("-", ""));
            msgUser.setPassword(RSAUtils.encrypt(uuidPwd));
//            Result result = easemobService.addUser(msgUser);
//            if (result.isResult()) {
//                sign.setNoticeUserId(msgUser.getUserId());
//                sign.setNoticePassword(RSAUtils.encrypt(uuidPwd));
//            }
            //Ìí¼ÓÇ©µ½Âë
            SchSignCode signCodeVO = new SchSignCode();
            signCodeVO.setCode(signCode);
            signCodeVO.setClassId(ClientUtils.getClassId());
            
            save(signCodeVO);
            save(sign);
        }
        
        return new Result(true, sign.getSignId());
    }
 
    @Override
    public Result deleteSigns(String[] signIds) {
        String hql = "update SchSign set deleteFlag = true where signId=?";
        return bulkUpdateInLoop(hql, signIds);
    }
    
    /**
     * Éú³ÉÇ©µ½Âë
     * @param classId °à¼¶ID
     * @return
     */
    private String generateSignCode(String classId){
        
        String hql = "SELECT s.code FROM SchSignCode s where s.classId=?";
        List<Object> args = new ArrayList<Object>();
        args.add(classId);
        List<String> codes = find(hql, args, String.class);
 
        String random = null;
        do{
            random = String.valueOf((int)(Math.random()*9000) + 1000);
        }while(codes.contains(random));
        
        return random;
    }
 
    @Override
    public Result insertSignItem(SchSign sign, String signAddress, Date signTime,String userId,String userName) {
        
        SchSignItem signItem = new SchSignItem();
 
        // »ñÈ¡µ±Ç°Óû§
        signItem.setSignId(sign.getSignId());
        signItem.setDeleteFlag(false);
        signItem.setSignAddress(signAddress);
        signItem.setSignTime(signTime);
        signItem.setUserId(userId);
        signItem.setUserName(userName);
        // ¹«ÓÃÅäÖÃ
        TraceUtils.setCreateTrace(signItem);
        
        this.save(signItem);
        
        return new Result(true);
    }
    
    @Override
    /**
     * Ç©µ½
     */
    public int insertSignOrder(SchSign signVO, Date signTime) {
        String hql = "from SchSignOrder where deleteFlag is false and signId=? ";
        
        // ¸ÃÌÿÎÒѾ­Ç©µ½¶àÉÙλ
        int signCount =  this.findCount(hql, 
                CollectionUtils.newList(signVO.getSignId()));
        // Ç©µ½+1
        signCount++;
        
        SchSignOrder signOrder = new SchSignOrder();
        signOrder.setSignId(signVO.getSignId());
        signOrder.setDeleteFlag(false);
        signOrder.setUserId(ClientUtils.getUserId());
        signOrder.setUserName(ClientUtils.getUserName());
        signOrder.setSignOrder(signCount);
        signOrder.setSignTime(signTime);
        
        // ¹«ÓÃÅäÖÃ
        TraceUtils.setCreateTrace(signOrder);
        
        // ±£´æµ½db
        this.save(signOrder);
        
        return signCount;
    }
    
    /**
     *  µÃµ½Ç©µ½Ã÷ϸ
     * @param signId
     * @return
     */
    public List<SchSignItem> getSignItems(String signId){
        
        List<SchSignItem> listResult = new ArrayList<SchSignItem>();
        if(ClientUtils.getClassId() != null && StringUtils.isNotBlank(signId)){
            String classId = ClientUtils.getClassId();
            //SQL
            String strSQL = " SELECT TU.NAME AS userName,TS.START_TIME AS signTime,TS.END_TIME AS endTime FROM " +
                    "(SELECT U.USER_ID,U.NAME FROM USER_REGISTRATION R,USER U WHERE U.USER_ID = R.USER_ID  AND U.DELETE_FLAG = 0 AND R.DELETE_FLAG  = 0 AND R.CLASS_ID = ? ) TU " +
                    "LEFT JOIN " +
                    "( SELECT S.USER_ID AS USER_ID ,MIN(S.SIGN_TIME) AS START_TIME,MAX(S.SIGN_TIME) AS END_TIME FROM SCH_SIGN_ITEM S " +
                    "WHERE S.SIGN_ID = ? GROUP BY S.USER_ID HAVING COUNT(1) > 1 " +
                    "UNION ALL " +
                    "SELECT T.USER_ID AS USER_ID , " +
                    "CASE WHEN ABS(TIMEDIFF(T.TIME,S.START_TIME)) <= ABS(TIMEDIFF(T.TIME,S.END_TIME)) THEN T.TIME ELSE NULL END START_TIMEM, " +
                    "CASE WHEN ABS(TIMEDIFF(T.TIME,S.START_TIME)) >  ABS(TIMEDIFF(T.TIME,S.END_TIME)) THEN T.TIME ELSE NULL END END_TIME " +
                    "FROM SCH_SIGN S , " +
                    "( SELECT S.USER_ID,S.SIGN_ID,MAX(S.SIGN_TIME) AS TIME FROM SCH_SIGN_ITEM S " +
                    "WHERE S.SIGN_ID = ? GROUP BY S.USER_ID,S.SIGN_ID HAVING COUNT(1) = 1 ) T WHERE S.SIGN_ID = T.SIGN_ID " +
                    ")TS " +
                    "ON TS.USER_ID = TU.USER_ID " +
                    "ORDER BY TS.START_TIME IS NULL , TS.START_TIME ASC ";
                listResult = signDAO.querySignItemList(strSQL, CollectionUtils.newList(classId,signId,signId));
        }else{
            log.error("²éѯǩµ½Ã÷ϸʧ°Ü£¬²ÎÊý²»ÕýÈ·£ºcls=".concat(ClientUtils.getClassId()).concat(";signId=").concat(signId));
        }
        
        return listResult;
    }
    
    /**
     * ÓÐÒ»¸öʱ·ÖÃëµÄÎÊÌ⣺ֻÐèÒª¼ì²âµ½·ÖÖÓ£º9£º00ÊDZê׼ʱ¼ä  9£º00£º59 ÈÔÈ»ÊÇÕý³£
     * @param realTime
     * @param standardTime
     * @return
     */
    private String getStartStatus(Date realTime,Date standardTime){
        String status = "";
        if(null != realTime && null != standardTime){
            Date real = DateUtils.truncate(realTime, Calendar.MINUTE);
            Date standard = DateUtils.truncate(standardTime, Calendar.MINUTE);
            status = real.compareTo(standard) == 1 ? late :normal;
        }
        return status;
    }
    
    /**
     * ÓÐÒ»¸öʱ·ÖÃëµÄÎÊÌ⣺ֻÐèÒª¼ì²âµ½·ÖÖÓ£º
     * @param realTime
     * @param standardTime
     * @return
     */
    private String getEndStatus(Date realTime,Date standardTime){
        String status = "";
        if(null != realTime && null != standardTime){
            Date real = DateUtils.truncate(realTime, Calendar.MINUTE);
            Date standard = DateUtils.truncate(standardTime, Calendar.MINUTE);
            status = real.compareTo(standard) == -1 ? "ÔçÍË" :normal;
        }
        return status;
    }
    
    /**
     * ²åÈëÇ©µ½Í³¼ÆÐÅÏ¢
     */
    public SignStatisResult insertSignStatistics(SchSign sign, String signAddress,
            Date signTime,Short terminalType,String userId,String userName,String mobilePhone, String location) {
        User user = this.read(User.class, userId);
        //ÅжÏÇ©µ½ÀàÐÍ,1:½öÉÏ¿ÎÇ©µ½£»2£ºÉÏÏ¿ζ¼ÐèÇ©µ½
        SignStatisResult result = new SignStatisResult();
        short signType = sign.getSignType();
        if(SchSign.SIGN_TYPE_FIRST == signType){
            result = insertSignFirst(sign,signAddress,signTime,terminalType,userId,user.getName(),mobilePhone, location);
        }else if(SchSign.SIGN_TYPE_ALL == signType){
            result = insertSignAll(sign,signAddress,signTime,terminalType,userId,user.getName(),mobilePhone, location);
        }else if(SchSign.SIGN_TYPE_ACTIVITY == signType){
            result = insertActivitySign(sign,signAddress,signTime,terminalType,userId,user.getName(),mobilePhone);
        }
        if(result.getSignType() == null){
            result.setSignType(Integer.valueOf(signType));
        }
        return result;
    }
    
    /**
     * ²éѯǩµ½µ±ÌìµÄ¿Î´Î
     * 
     * @param signId
     * @return
     */
    public SchClassSchedule getSchClassSchedule(String signId){
        String hql = "select e from SchClassSchedule e, SchSign s, SchClassSubject su where s.signId = ? and su.classSubjectId = e.classSubjectId and su.deleteFlag is false "
                + " and s.classScheduleId = e.classSubjectId and date(e.startTime) = date(now()) and e.deleteFlag is false";
        return this.findUnique(hql, CollectionUtils.newList(signId), SchClassSchedule.class);
    }
    
    /**
     * ²åÈëÇ©µ½
     * 
     * @param signVO
     * @param signAddress
     * @param userId
     * @param userName
     * @param mobilePhone
     * @return
     */
    public SignStatisResult insertSignStatistics(SchSign signVO, String signAddress, String userId, String userName, String mobilePhone, short type){
        // Ç©µ½Ê±¼ä
        Date signTime= new Date(System.currentTimeMillis());
        String strAddress = this.getAddress(signAddress);
        
        //3. ²åÈëÇ©µ½Í³¼Æ
        SignStatisResult result = this.insertSignStatistics(signVO, strAddress, signTime,type ,userId,userName,mobilePhone, signAddress);
        if(!result.getResult()){
            return new SignStatisResult(false,result.getErrMsg());
        }
        // 2.²åÈëÇ©µ½ÀúÊ·¼Ç¼
        this.insertSignItem(signVO, signAddress, signTime,ClientUtils.getUserId(),ClientUtils.getUserName());
        
        List<SchSignStatistics> schSignStatisticss = this.queryPageLstSignStatistics(result.getSignStatistics(), null, result.getSignType(), signVO.getSignId());
        
        for(SchSignStatistics obj : schSignStatisticss){
            obj.setSignType(result.getSignType());
        }
        
        //²éѯ°àÖ÷ÈÎÃû×Ö
        ClsClass objOrgClass = this.read(ClsClass.class, signVO.getClassId());
        
        result.setSignAddr(strAddress);
        result.setSignStatisticss(schSignStatisticss);
        //2015-08-10Ôö¼Ó·µ»ØÊÇ·ñ°à¼¶³ÉÔ±
        result.setRegFlag(this.queryRegistrationFlag(ClientUtils.getUserId(), signVO.getClassId()));
        result.setClassCharger(objOrgClass.getClassCharger());
        
        return result;
    }
    
    /**
     * ¸ù¾Ý¾­Î³¶È»ñÈ¡µØÖ·
     * @param location
     * @return
     */
    @SuppressWarnings("rawtypes")
    private String getAddress(String location){
        try {
            
            if(StringUtils.isEmpty(location)){
                return "";
            }
            
            Map map = mapper.readValue(new URL("http://api.map.baidu.com/geocoder/v2/?coordtype=wgs84ll&output=json&ak=gy9dG5lb73GIQIQ5w9ebcorY&location="+location), HashMap.class);
            
            Map result = (Map) map.get("result");
            
            String formatted_address = result.get("formatted_address").toString();
            
            String sematic_address = result.get("sematic_description").toString();
            
            if(StringUtils.isNotBlank(sematic_address)){
                formatted_address = formatted_address.concat("(").concat(sematic_address).concat(")");
            }
            
            return formatted_address;
            
        } catch (Exception e) {
            log.error(e,e);
        } 
        
        return "";
    }
    
    /**
     * »î¶¯Ç©µ½£¬²åÈëÇ©µ½Í³¼ÆÐÅÏ¢£¨ÉϿΣ¬Ö»ÓеÚÒ»´Î²åÈë¼Ç¼£©
     * @param sign
     * @param signAddress
     * @param signTime
     * @param terminalType
     * @return
     */
    private SignStatisResult insertActivitySign(SchSign sign, String signAddress, Date signTime,Short terminalType,String userId,String userName,String mobilePhone){
        
        int signOrder = 0;
        SignStatisResult result = new SignStatisResult();
        //1.²éѯÊÇ·ñÒÑÇ©µ½,²éѯµ±ÌìÇ©µ½Çé¿ö
        //»ñÈ¡µ±ÌìÓû§ÊÇ·ñÇ©µ½
        //1.²éѯÊÇ·ñÒÑÇ©µ½,²éѯµ±ÌìÇ©µ½Çé¿ö
        String hql = "from SchSignStatistics where deleteFlag is false and signId = ? and userId = ?";
        SchSignStatistics objSchSignStatistics = findUnique(hql,CollectionUtils.newList(sign.getSignId(), userId),SchSignStatistics.class);
        //µÚÒ»´Î±£´æ£¬ÒԺ󲻸üУ¬ÒÑ×îÔçʱ¼äΪ׼£¨Ã¿´Î¸üÐÂ×îÐÂÇ©µ½µØÖ·£©
        if(null != objSchSignStatistics){
            signOrder = objSchSignStatistics.getFirstSignOrder();
            objSchSignStatistics.setTerminalType(terminalType);
            objSchSignStatistics.setStatisticsFlag(SchSignStatistics.STATISTICS_FLAG_YES);
            objSchSignStatistics.setSignAddress(signAddress);
            save(objSchSignStatistics);
            result.setSignStatistics(objSchSignStatistics);
        }else{
            // ÒѾ­Ç©µ½¸öÊý
            String hql1 = "from SchSignStatistics where deleteFlag is false and signId = ?";
            int signCount =  findCount(hql1,CollectionUtils.newList(sign.getSignId()));
            signOrder = signCount + 1;
            SchSignStatistics obj = new SchSignStatistics();
            TraceUtils.setCreateTrace(obj);
            obj.setSignId(sign.getSignId());
            obj.setSignAddress(signAddress);
            obj.setSignDate(new Date());
            obj.setTerminalType(terminalType);
            obj.setFirstSignOrder(signOrder);
            obj.setFirstSignTime(signTime);
            if(normal.equals(getStartStatus(signTime,sign.getStartTime()))){
                obj.setFirstSignStatus(SchSignStatistics.SIGN_STATUS_NORMAL);
            }else{
                obj.setFirstSignStatus(SchSignStatistics.SIGN_STATUS_LATE);
                
            }
            obj.setUserId(userId);
            obj.setStatisticsFlag(SchSignStatistics.STATISTICS_FLAG_YES);
            obj.setUserName(userName);
            obj.setMobilePhone(mobilePhone);
            obj.setInstallFlag(queryInstallFlag(userId));
            obj.setRegisteFlag(queryRegistrationFlag(userId,sign.getClassId()));
            //µÚÒ»´Î±£´æ
            save(obj);
            result.setSignStatistics(obj);
        }
        result.setSignIndex(signOrder);
        result.setSignType(SignStatisResult.SIGN_TYPE_ACTIVITY);
        result.setResult(true);
        return result;
        
    }
    
    /**
     * ÊÇ·ñ³¬¹ýÇ©µ½ÏÞÖÆ¾àÀë
     * 
     * @param signVO
     * @param signAddress
     * @return
     */
    private Result isOutofRange(SchSign signVO, String signAddress, SchClassSchedule objSchClassSchedule, boolean activeFlag, SchSignStatistics objSchSignStatistics){
        int outRangeAllow = signVO.getOutRangeAllow();
        objSchSignStatistics.setStatisticsFlag(SchSignStatistics.STATISTICS_FLAG_YES);
        if(outRangeAllow == SchSign.SIGN_ACT_ALLOW || signVO.getOutRange() == 0 || SchClassSchedule.SCH_NETWORK.equals(objSchClassSchedule.getMode())){
            return new Result(true);
        }
        if(StringUtils.isBlank(signAddress)){
            return new Result(false, "Ç©µ½Ê§°Ü£¬Î´»ñÈ¡µ½Ç©µ½µØÖ·£¬ÇëÈ·ÈÏÊÇ·ñ¿ªÆô¶¨Î»");
        }
        SchScheduleAddress objSchScheduleAddress = this.read(SchScheduleAddress.class, objSchClassSchedule.getAddressId());
        if(objSchScheduleAddress == null){
            return new Result(false, "Ç©µ½Ê§°Ü£¬¿Î³ÌÇ©µ½µØÖ·ÉèÖôíÎó£¬ÇëÁªÏµ°àÖ÷ÈÎÐÞÕýÇ©µ½µØÖ·");
        }
        if(StringUtils.isBlank(objSchScheduleAddress.getLatitudeY()) || StringUtils.isBlank(objSchScheduleAddress.getLongitudeX())){
            return new Result(false, "Ç©µ½Ê§°Ü£¬¿Î³ÌÇ©µ½µØÖ·ÉèÖôíÎó£¬ÇëÁªÏµ°àÖ÷ÈÎÐÞÕýÇ©µ½µØÖ·");
        }
        String[] signAddresss = signAddress.split(",");
        
        double range = CommonUtils.GetDistance(Double.valueOf(signAddresss[1]), Double.valueOf(signAddresss[0]),
                Double.valueOf(objSchScheduleAddress.getLongitudeX()), Double.valueOf(objSchScheduleAddress.getLatitudeY()));
        
        boolean b = range*1000<signVO.getOutRange();
        if(b || !activeFlag){
            objSchSignStatistics.setStatisticsFlag(SchSignStatistics.STATISTICS_FLAG_YES);
        }else{
            objSchSignStatistics.setStatisticsFlag(SchSignStatistics.STATISTICS_FLAG_NO);
        }
        objSchSignStatistics.setOutOfRange(range*1000);
        return new Result(true, b?"":"Ç©µ½³É¹¦£¬ÓÉÓÚÄúµÄÇ©µ½µØÖ·³¬³öÉϿεØÖ·µÄÇ©µ½·¶Î§£¬Òò´ËÄãµÄÇ©µ½ÎÞ·¨¼Ç¼±¾°àµ±ÈÕÒѳöÇÚÈËÊý£¬ÇëÓë°àÖ÷ÈÎÁªÏµ");
    }
    
    /**
     * »ñÈ¡µ±ÌìÇ©µ½µØÖ·
     * 
     * @param signId
     * @return
     */
    public SchScheduleAddress getSchScheduleAddress(String signId){
        //»ñȡǩµ½Âëµ±ÌìÇ©µ½µÄ¿Î³Ì
        SchClassSchedule objSchClassSchedule = this.getSchClassSchedule(signId);
        if(objSchClassSchedule == null){
            return new SchScheduleAddress();
        }
        SchScheduleAddress objSchScheduleAddress = this.read(SchScheduleAddress.class, objSchClassSchedule.getAddressId());
        
        return objSchScheduleAddress;
    }
    
    /**
     * ÉÏ¿ÎÇ©µ½£¬²åÈëÇ©µ½Í³¼ÆÐÅÏ¢£¨ÉϿΣ¬Ö»ÓеÚÒ»´Î²åÈë¼Ç¼£©
     * @param sign
     * @param signAddress
     * @param signTime
     * @param terminalType
     * @return
     */
    @SuppressWarnings("unused")
    private SignStatisResult insertSignFirst(SchSign sign, String signAddress, Date signTime,
            Short terminalType,String userId,String userName,String mobilePhone, String location){
        
        int signOrder = 0;
        SignStatisResult result = new SignStatisResult();
        result.setSignType(SignStatisResult.SIGN_TYPE_FIRST);
        
        //1.²éѯÊÇ·ñÒÑÇ©µ½,²éѯµ±ÌìÇ©µ½Çé¿ö
        //»ñÈ¡µ±ÌìÓû§ÊÇ·ñÇ©µ½
        SchSignStatistics objSchSignStatistics = this.getSchSignStatistics(sign.getSignId(), userId);
        //»ñȡǩµ½Âëµ±ÌìÇ©µ½µÄ¿Î³Ì
        SchClassSchedule objSchClassSchedule = this.getSchClassSchedule(sign.getSignId());
        boolean activeFlag = queryActiveflag(userId,sign.getClassId());
        if(sign.getRegisterAllow() == 1 && !activeFlag){
            result.setErrMsg("Ç©µ½Ê§°Ü£¬Äú»¹Î´¼ÓÈë¸Ã°à¼¶");
            result.setResult(false);
            return result;
        }
        if(objSchClassSchedule == null){
            result.setErrMsg("Ç©µ½Ê§°Ü£¬½ñÌì¸Ã¿Î³Ì먦¿Î");
            result.setResult(false);
            return result;
        }
//        List<SchSignStatistics> lstSchSignStatistics = cacheService.get("SIGN_HISTORY_".concat(sign.getSignId()), List.class);
        List<SchSignStatistics> lstSchSignStatistics=null;
        int signCount = 0;
        if(lstSchSignStatistics == null){
            String hql1 = "from SchSignStatistics where deleteFlag is false and signId = ? and date(signDate) = date(now())";
            // ÒѾ­Ç©µ½¸öÊý
            signCount =  findCount(hql1,CollectionUtils.newList(sign.getSignId()));
        }else{
            signCount = lstSchSignStatistics.size();
        }
        //µÚÒ»´Î±£´æ£¬ÒԺ󲻸üУ¬ÒÑ×îÔçʱ¼äΪ׼£¨Ã¿´Î¸üÐÂ×îÐÂÇ©µ½µØÖ·£©
        if(null == objSchSignStatistics){
            
            //²éѯ¿Î³ÌÐÅÏ¢
            SchClassSubject objSchClassSubject = this.getCommonDAO().read(SchClassSubject.class, sign.getClassScheduleId());
            signOrder = signCount + 1;
            objSchSignStatistics = new SchSignStatistics();
            TraceUtils.setCreateTrace(objSchSignStatistics);
            objSchSignStatistics.setSignId(sign.getSignId());
            objSchSignStatistics.setSignAddress(signAddress);
            objSchSignStatistics.setSignDate(new Date());
            if(objSchClassSubject != null){
                objSchSignStatistics.setClassSubjectId(objSchClassSubject.getClassSubjectId());
                objSchSignStatistics.setClassSubjectName(objSchClassSubject.getName());
            }
            objSchSignStatistics.setTerminalType(terminalType);
            objSchSignStatistics.setFirstSignOrder(signOrder);
            objSchSignStatistics.setFirstSignTime(signTime);
            if(normal.equals(getStartStatus(signTime,objSchClassSchedule.getStartTime()))){
                objSchSignStatistics.setFirstSignStatus(SchSignStatistics.SIGN_STATUS_NORMAL);
            }else{
                objSchSignStatistics.setFirstSignStatus(SchSignStatistics.SIGN_STATUS_LATE);
                
            }
            objSchSignStatistics.setUserId(userId);
            objSchSignStatistics.setUserName(userName);
            objSchSignStatistics.setMobilePhone(mobilePhone);
            objSchSignStatistics.setInstallFlag(queryInstallFlag(userId));
            objSchSignStatistics.setRegisteFlag(activeFlag);
            //µÚÒ»´Î±£´æ
        }
        Result isOutofRange = this.isOutofRange(sign, location, objSchClassSchedule, activeFlag, objSchSignStatistics);
        if(!isOutofRange.isSuccess()){
            result.setErrMsg(isOutofRange.getMsg());
            result.setResult(false);
            return result;
        }
        if(objSchSignStatistics.getFirstSignOrder() == null){
            signOrder = signCount;
        }else{
            signOrder = objSchSignStatistics.getFirstSignOrder();
        }
        if(objSchSignStatistics.getFirstSignTime() == null){
            objSchSignStatistics.setFirstSignTime(signTime);
            if(normal.equals(getStartStatus(signTime,objSchClassSchedule.getStartTime()))){
                objSchSignStatistics.setFirstSignStatus(SchSignStatistics.SIGN_STATUS_NORMAL);
            }else{
                objSchSignStatistics.setFirstSignStatus(SchSignStatistics.SIGN_STATUS_LATE);
                
            }
            objSchSignStatistics.setFirstSignOrder(signOrder);
        }
        objSchSignStatistics.setTerminalType(terminalType);
        objSchSignStatistics.setSignAddress(signAddress);
        
        objSchSignStatistics.setPosition(location);
        
        save(objSchSignStatistics);
        
        result.setErrMsg(isOutofRange.getMsg());
        result.setSignStatistics(objSchSignStatistics);
        result.setSignIndex(signOrder);
        result.setRange(objSchSignStatistics.getOutOfRange());
        result.setResult(true);
        return result;
        
    }
    
    /**
     * »ñÈ¡µ±ÌìÊÇ·ñÒѾ­Ç©µ½
     * 
     * @param signId
     * @return
     */
    public SchSignStatistics getSchSignStatistics(String signId, String userId){
        //1.²éѯÊÇ·ñÒÑÇ©µ½,²éѯµ±ÌìÇ©µ½Çé¿ö
        String hql = "from SchSignStatistics where deleteFlag is false and signId = ? and userId = ? and date(signDate) = date(now())";
        return findUnique(hql,CollectionUtils.newList(signId, userId),SchSignStatistics.class);
    }
    
    /**
     *  ÉÏÏ¿ζ¼ÐèÇ©µ½Ê±£¬²åÈëÇ©µ½Í³¼ÆÐÅÏ¢
     *  ÉÏ¿ÎÇ©µ½£ºµ÷ÓÃinsertSignFirst()
     *  Ï¿ÎÇ©µ½£ºÃ¿´Î¸üУ¬°´Ï¿ÎÇ©µ½Ê±¼äµ¹ÐòÅÅÁÐ
     * @param sign
     * @param signAddress
     * @param signTime
     * @param terminalType
     * @return
     */
    private SignStatisResult insertSignAll(SchSign sign, String signAddress, 
            Date signTime,Short terminalType,String userId,String userName,String mobilePhone, String location){
        
        SignStatisResult result = new SignStatisResult();
        //1.Åжϵ±Ç°Ç©µ½ÊÇÉÏ¿Î,else:Ï¿ÎÇ©µ½
        //¾«È·µ½·ÖÖӱȽÏ
        //»ñȡǩµ½Âëµ±ÌìÇ©µ½µÄ¿Î³Ì
        SchClassSchedule objSchClassSchedule = this.getSchClassSchedule(sign.getSignId());
        if(objSchClassSchedule == null){
            result.setErrMsg("½ñÌì¸Ã¿Î³Ì먦¿Î£¬²»ÐèҪǩµ½");
            result.setResult(false);
            return result;
        }
        boolean activeFlag = queryActiveflag(userId,sign.getClassId());
        if(sign.getRegisterAllow() == 1 && !activeFlag){
            result.setErrMsg("Ç©µ½Ê§°Ü£¬Äú»¹Î´¼ÓÈë¸Ã°à¼¶");
            result.setResult(false);
            return result;
        }
        Date startDate = DateUtils.truncate(objSchClassSchedule.getStartTime(), Calendar.MINUTE);
        Date endDate = DateUtils.truncate(objSchClassSchedule.getEndTime(), Calendar.MINUTE);
        Date signDate = DateUtils.truncate(signTime, Calendar.MINUTE);
        if((endDate.getTime() + startDate.getTime())/2  >=  signDate.getTime()){
            result.setSignType(SignStatisResult.SIGN_TYPE_FIRST);
            //²åÈëÉÏ¿ÎÇ©µ½ÐÅÏ¢
            result = insertSignFirst(sign,signAddress,signTime,terminalType,userId,userName,mobilePhone, location);
        }else{
            result.setSignType(SignStatisResult.SIGN_TYPE_LAST);
            SchSignStatistics obj = this.getSchSignStatistics(sign.getSignId(), userId);
            if(null != obj){
                obj.setLastSignTime(signTime);
                if(normal.equals(getEndStatus(signTime,objSchClassSchedule.getEndTime()))){
                    obj.setLastSignStatus(SchSignStatistics.SIGN_STATUS_NORMAL);
                }else{
                    obj.setLastSignStatus(SchSignStatistics.SIGN_STATUS_EARLY);
                }
                //ÿ´Î¸üÐÂ
                obj.setUserName(userName);
                obj.setInstallFlag(queryInstallFlag(userId));
                obj.setRegisteFlag(activeFlag);
                obj.setTerminalType(terminalType);
                obj.setSignAddress(signAddress);
                obj.setPosition(location);
                
                Result isOutofRange = this.isOutofRange(sign, location, objSchClassSchedule, activeFlag, obj);
                if(!isOutofRange.isSuccess()){
                    result.setErrMsg(isOutofRange.getMsg());
                    result.setResult(false);
                    return result;
                }
                save(obj);
                result.setSignStatistics(obj);
                result.setRange(obj.getOutOfRange());
                result.setErrMsg(isOutofRange.getMsg());
            }else{
                //²éѯ¿Î³ÌÐÅÏ¢
                SchClassSubject objSchClassSubject = this.getCommonDAO().read(SchClassSubject.class, sign.getClassScheduleId());
                //·ñÔòµÚÒ»´ÎÏ¿ÎÇ©µ½
                SchSignStatistics objNew = new SchSignStatistics();
                TraceUtils.setCreateTrace(objNew);
                objNew.setSignId(sign.getSignId());
                objNew.setSignAddress(signAddress);
                objNew.setTerminalType(terminalType);
                objNew.setLastSignTime(signTime);
                if(objSchClassSubject != null){
                    objNew.setClassSubjectId(objSchClassSubject.getClassSubjectId());
                    objNew.setClassSubjectName(objSchClassSubject.getName());
                }
                objNew.setSignDate(new Date());
                if(normal.equals(getEndStatus(signTime,objSchClassSchedule.getEndTime()))){
                    objNew.setLastSignStatus(SchSignStatistics.SIGN_STATUS_NORMAL);
                }else{
                    objNew.setLastSignStatus(SchSignStatistics.SIGN_STATUS_EARLY);
                }
                objNew.setInstallFlag(queryInstallFlag(userName));
                objNew.setRegisteFlag(activeFlag);
                objNew.setSignAddress(signAddress);
                objNew.setPosition(location);
                objNew.setUserId(userId);
                objNew.setUserName(userName);
                objNew.setMobilePhone(mobilePhone);
                Result isOutofRange = this.isOutofRange(sign, location, objSchClassSchedule, activeFlag, objNew);
                if(!isOutofRange.isSuccess()){
                    result.setErrMsg(isOutofRange.getMsg());
                    result.setResult(false);
                    return result;
                }
                //µÚÒ»´Î±£´æ
                save(objNew);
                result.setSignStatistics(objNew);
                result.setRange(objNew.getOutOfRange());
                result.setErrMsg(isOutofRange.getMsg());
            }
        }
        result.setResult(true);
        return result;
    }
    
    /**
     * ²éѯÊÇ·ñ°²×°£¨Í¨¹ýÕ˺ŵǼ¼Ç¼£©
     */
    public boolean queryInstallFlag(String userId){
        String hql = "from UserOperate where deleteFlag is false and userId= ? ";
        int iCount = findCount(hql,CollectionUtils.newList(userId));
        return iCount > 0 ? true : false; 
    }
    
    /**
     * ²éѯÊÇ·ñ°à¼¶³ÉÔ±£¨Í¨¹ýÕ˺ŵǼ¼Ç¼£©
     */
    public boolean queryRegistrationFlag(String userId,String classId){
        String hql = "from UserRegistration where deleteFlag is false and userId= ? and classId = ? ";
        int iCount = findCount(hql,CollectionUtils.newList(userId,classId));
        return iCount > 0 ? true : false; 
    }
    
    /**
     * ²éѯÊÇ·ñ°à¼¶¼¤»î
     */
    public boolean queryActiveflag(String userId,String classId){
        String hql = "from UserRegistration where deleteFlag is false and userId= ? and classId = ? and status = ?";
        int iCount = findCount(hql,CollectionUtils.newList(userId,classId, UserRegistration.STATUS_ACTIVE));
        return iCount > 0 ? true : false; 
    }
    
    /**
     *  µÃµ½Âú×ãÒªÇóµÄÇ©µ½Ã÷ϸ(ÓÅ»¯°æ±¾)
     * @param signId
     * @return
     */
    public List<SchSignStatistics> getSimpleSignItems(String signId, String signDate){
        return getHandleStatistics(signId, signDate);
    }
    
    /**
     * ²éѯ
     * 
     * @param signId
     * @param signDate
     * @return
     */
    public List<SchSignStatistics> getNotSignUser(String signId, String signDate){
        
        SchSign objSchSign = this.read(SchSign.class, signId);
        String strDate = StringUtils.isBlank(signDate)? com.qxueyou.scc.base.util.DateUtils.getToday():signDate;
        
        String hql = "select s,u.attribute1 from SchSignStatistics s , User u "
                + " where s.deleteFlag is false and u.deleteFlag is false and s.userId = u.userId and s.signId = ? and s.statisticsFlag = ? and s.registeFlag is true"
                + (objSchSign.getSignType() == SchSign.SIGN_TYPE_ACTIVITY?"":" and date(s.signDate) = date('"+strDate+"')")+" order by s.firstSignOrder asc nulls last";
        
        List<SchSignStatistics> lstStatistics = this.signDAO.querySchSignStatisticses(hql, CollectionUtils.newList(signId, 2));
        
        //²éѯ£¬SQL»áÇåÎú
        String hql0 = " select r.USER_ID as userId,r.user_name as userName,r.mobile_phone as mobilePhone ,case when o.user_id is not null then 1 else 0 end installFlag,u.attribute1 as companyName  from user_registration r  "
                    + " left join  "
                    + " user_operate o  "
                    + " on r.USER_ID = o.USER_ID  "
                    + " left join user u"
                    + " on u.USER_ID = r.USER_ID"
                    + " WHERE  "
                    + " r.USER_ID not in (select user_id from sch_sign_statistics s where s.sign_id = ? and delete_flag = 0"+
                    (objSchSign.getSignType() == SchSign.SIGN_TYPE_ACTIVITY?"":" and date(s.sign_Date) = date('"+strDate+"')")+")  "
                    + " and r.DELETE_FLAG = 0 and r.STATUS = ? and IFNULL(O.DELETE_FLAG,0) = 0 and r.CLASS_ID = ? and date(r.activation_Time) <= date(?)" ;
        List<SchSignStatistics> lstStatistics0 = signDAO.querySignItemListNew(hql0, CollectionUtils.newList(signId,UserRegistration.STATUS_ACTIVE,ClientUtils.getClassId(), strDate));
        if(null == lstStatistics || lstStatistics.isEmpty()){
            return lstStatistics0;
        }
        lstStatistics.addAll(lstStatistics0);
        return lstStatistics;
    }
    
    /**
     * µ¼³ö(ÓÅ»¯°æ±¾)
     * @param signId
     * @param objSchSign
     * @return
     */
    public List<ExportSchSignItem> exportSimpleItems(String signId, String signDate){
        
        //²éѯÁбíµÄÊý¾Ý
        List<SchSignStatistics> lstStatistics = getHandleStatistics(signId, signDate);
        
        List<ExportSchSignItem> lstExports = new ArrayList<ExportSchSignItem>();
        ExportSchSignItem item = null;
        for(SchSignStatistics statistics : lstStatistics){
            item = new ExportSchSignItem();
            
            item.setInstallFlag("123");
            
            item.setEndStatus(null == statistics.getLastSignStatus() ? "" : getStatusValue(statistics.getLastSignStatus()));
            item.setEndTime(statistics.getLastSignTime());
            item.setInstallFlag(statistics.getInstallValue());
            item.setMobilePhone(statistics.getMobilePhone());
            item.setRegisteFlag(statistics.getRegisteValue());
            item.setSignAddress(statistics.getSignAddress());
            item.setSignOrder(statistics.getFirstSignOrder());
            item.setSignStatus(null == statistics.getFirstSignStatus() ? "" : getStatusValue(statistics.getFirstSignStatus()));
            item.setSignTime(statistics.getFirstSignTime());
            item.setUserName(statistics.getUserName());
            
            lstExports.add(item);
        }
        
        return lstExports;
    }
    
    private String getStatusValue(short status){
        String value = "";
        
        switch(status){
            case SchSignStatistics.SIGN_STATUS_NORMAL :
                value = normal;
                break;
            case SchSignStatistics.SIGN_STATUS_LATE :
                value = late;
                break;
            case SchSignStatistics.SIGN_STATUS_EARLY :
                value = "ÔçÍË";
                break;
            case SchSignStatistics.SIGN_STATUS_NO :
                value = "δǩµ½";
                break;
            default:
                value = "Ç©µ½Òì³£";
                break;
        }
        
        return value;
    }
    
    private List<SchSignStatistics> getHandleStatistics(String signId, String signDate){
        
        SchSign objSchSign = this.read(SchSign.class, signId);
        String strDate = StringUtils.isBlank(signDate)?com.qxueyou.scc.base.util.DateUtils.getToday():signDate;
        
        String hql = "select s,u.attribute1 from SchSignStatistics s , User u "
                + " where s.deleteFlag is false and u.deleteFlag is false and s.userId = u.userId and s.signId = ?"
                + (objSchSign.getSignType() == SchSign.SIGN_TYPE_ACTIVITY?"":" and s.statisticsFlag = 1 and date(s.signDate) = date('"+strDate+"')")+" order by s.firstSignOrder asc nulls last";
        
        return this.signDAO.querySchSignStatisticses(hql, CollectionUtils.newList(signId));
    }
 
    @Override
    public List<SchSignStatistics> querySignItemListStat(String hql,
            List<Object> args) {
        return signDAO.querySignItemListStat(hql, args);
    }
    
    @Override
    public List<SchSignStatistics> querySignItemListCom(String hql,
            List<Object> args) {
        return signDAO.querySignItemListCom(hql, args);
    }
    
    /**
     * Ç©µ½ÀúÊ·
     * @return
     */
    @Override
    public List<Map<String, Object>> querySignHistory(final String hql, final Pager page, final List<Object> args){
        
        return signDAO.querySignHistoryList(hql, page, args);
    }
    
    /**
     * Î¢ÐÅÇ©µ½¸ß¼¶ÉèÖÃ
     * @param sign
     * @return
     */
    public Result updateSign(SchSign sign) {
        
        SchSign objSign = this.read(SchSign.class, sign.getSignId());
        if(StringUtils.isNotBlank(sign.getName())){
            objSign.setName(sign.getName());
        }
        if(null != sign.getStartTime() && null != sign.getEndTime() ){
            objSign.setStartTime(sign.getStartTime());
            objSign.setEndTime(sign.getEndTime());
        }
        if(null!=sign.getHisShow()){
            objSign.setHisShow(sign.getHisShow());
        }
        if(null!=sign.getActAllow()){
            objSign.setActAllow(sign.getActAllow());
        }
        if(null!=sign.getPayAllow()){
            objSign.setPayAllow(sign.getPayAllow());
        }
        if(null!=sign.getNameShow()){
            objSign.setNameShow(sign.getNameShow());
        }
        if(null!=sign.getPhoneShow()){
            objSign.setPhoneShow(sign.getPhoneShow());
        }
        if(null!=sign.getOrgShow()){
            objSign.setOrgShow(sign.getOrgShow());
        }
        // »ñÈ¡¿Í»§¶ËÐÅÏ¢
        objSign.setUpdateId(ClientUtils.getUserId());
        objSign.setUpdateTime(new Date(System.currentTimeMillis()));
        objSign.setUpdator(ClientUtils.getUserName());
        
        save(objSign);
        //¸üлº´æ
//        cacheService.set(CacheConstants.SCH_SIGN_ID_PREFIX.concat(objSign.getSignId()), CacheConstants.SCH_SIGN_ID_TIME, objSign);
        
        return new Result(true);
    }
    
    
    /**
     * Ç©µ½ ·¢ËÍÏûÏ¢,»·ÐÅÌæ´ú
     * @param signType
     * @param signIndex
     * @param signId
     * @return
     */
    @SuppressWarnings("unused")
    public Result updateSignMessage(Integer signType,Integer signIndex, String signId, User user){
        
        SchSign schSign  = this.getSignFromCacheOrDB(signId);
        
        Map<String,String> extra = new HashMap<String,String>();
        extra.put("title", "Ç©µ½");
        extra.put("userId", user.getUserId());
        extra.put("userName", user.getName());
        extra.put("userImg", user.getImgPath());
        extra.put("mobilePhone", user.getMobilePhone());
        extra.put("signIndex", String.valueOf(signIndex));
        extra.put("signId", signId);
        
//        easemobService.doSendTextMsgToUsers("notice-sys", new String[]{schSign.getNoticeUserId()}, "Óû§Ç©µ½", extra);
        
        return new Result(true) ;
    }
 
    /**
     * ³õʼ»¯Ç©µ½ÐÅÏ¢
     * @param signId
     * @param userId
     * @param initType
     * @return
     */
    public Result doInitSignDatas(String signId, String userId,int initType){
        
        if( 1 == initType ){
            
            String hql = "from SchSignOrder s where s.signId = ? and s.userId = ? ";
            List<SchSignOrder> orders = this.find(hql, CollectionUtils.newList(signId,userId), SchSignOrder.class);
            
            if(orders.size()>1){
                SchSignOrder first = orders.get(0);
                SchSignOrder second = orders.get(1);
                
                first.setDeleteFlag(false);
                second.setDeleteFlag(true);
                
                this.save(first);
                this.save(second);
                
                
            }
            
        }else if( 2 == initType ){
            
            String hql = "from SchSignStatistics s where s.signId = ? and s.userId = ? ";
            List<SchSignStatistics> statisticses = this.find(hql, CollectionUtils.newList(signId,userId), SchSignStatistics.class);
            
            if(statisticses.size()>1){
                SchSignStatistics first = statisticses.get(0);
                SchSignStatistics second = statisticses.get(1);
                
                first.setDeleteFlag(false);
                second.setDeleteFlag(true);
                
                this.save(first);
                this.save(second);
                
                
            }
        }
        
        return new Result(true);
    }
    
    /**
     * ¸ù¾Ý¿Î³ÌÐÅÏ¢»ñȡǩµ½ÐÅÏ¢
     * 
     * @param strClassSubjectId
     * @return
     */
    public List<SchSign> querySign(String strClassSubjectId){
        String hql = "from SchSign s where s.classScheduleId = ? and s.deleteFlag is false";
        return this.find(hql, CollectionUtils.newList(strClassSubjectId), SchSign.class);
    }
    
    /**
     * ¸ù¾Ý¿Î³ÌÐÅÏ¢»ñȡǩµ½ÈËÔ±¼Ç¼
     * 
     * @param strClassSubjectId
     * @return
     */
    public List<SchSignStatistics> queryUserSign(String strClassSubjectId){
        String hql = "select u from SchSignStatistics u where u.signId in( select s.signId from SchSign s"
                + " where s.classScheduleId = ? and s.deleteFlag is false) and u.deleteFlag is false and statisticsFlag = ? and date(u.signDate) = date(now())";
        return this.find(hql, CollectionUtils.newList(strClassSubjectId, SchSignStatistics.STATISTICS_FLAG_YES), SchSignStatistics.class);
    }
    
    
    
    /**
     * ²éѯǩµ½ÀúÊ·
     * @param hql
     * @param args
     * @param page
     * @return
     */
    @SuppressWarnings("unused")
    public List<SchSignStatistics> queryPageLstSignStatistics(SchSignStatistics objSignStatistics, Pager page,Integer signType,String signId){
        String cache = "SIGN_HISTORY_".concat(signId).concat("_").concat(String.valueOf(signType));
//        List<SchSignStatistics> lstSchSignStatistics = cacheService.get(cache, List.class);
        List<SchSignStatistics> lstSchSignStatistics = null;
        if(lstSchSignStatistics != null && !lstSchSignStatistics.isEmpty()){
            if(!lstSchSignStatistics.contains(objSignStatistics)){
                lstSchSignStatistics.add(objSignStatistics);
            }else if(signType == SignStatisResult.SIGN_TYPE_LAST){
                lstSchSignStatistics.set(lstSchSignStatistics.indexOf(objSignStatistics), objSignStatistics);
            }
//            cacheService.set(cache, CacheConstants.BUSINESS_DATA_TIME, lstSchSignStatistics);
            return lstSchSignStatistics;
        }
        StringBuffer sb = new StringBuffer(512);
        // 4.²éѯǩµ½Ãû´Î
        sb.append("select s, u.imgPath from SchSignStatistics s, User u where ");
        sb.append(" s.userId=u.userId and s.deleteFlag is false and s.signId = ? ");
        
        //¸ù¾ÝÀàÐÍÅжÏÅÅÐò¹æÔò
        if(signType == null || SchSign.SIGN_TYPE_ALL == signType){
            sb.append(" and date(s.signDate) = date(NOW()) and s.lastSignTime is not null order by s.lastSignTime desc  ");
        }else if(SchSign.SIGN_TYPE_FIRST == signType){
            sb.append(" and date(s.signDate) = date(NOW()) and s.firstSignTime is not null order by s.firstSignOrder asc  ");
        }else{
            sb.append(" order by s.firstSignTime asc  ");
        }
 
        Pager currPage = page ;
        
        if( null == currPage ){
            currPage = new Pager();
            currPage.setPageNum(1);
            currPage.setPageSize(200);
        }
        
        // ²éѯ²¢ÇÒ»º´æ
        List<SchSignStatistics> lstData = this.querySignItemListStat(sb.toString(), CollectionUtils.newList(signId));
//        cacheService.set(cache, CacheConstants.BUSINESS_DATA_TIME, lstData);
        
        return lstData ;
        
    }
    
    /**
     * Ç©µ½£¬¸ù¾ÝsignIdµÃµ½schSign
     * @param signId
     * @return
     */
    @SuppressWarnings("unused")
    public SchSign getSignFromCacheOrDB(String signId){
        
//        SchSign sign = cacheService.get(CacheConstants.SCH_SIGN_ID_PREFIX.concat(signId), SchSign.class);
        SchSign sign = null;
        
        if( null != sign ){
            return sign ;
        }
        
        sign = this.read(SchSign.class, signId);
//        if(null != sign){
//            cacheService.set(CacheConstants.SCH_SIGN_ID_PREFIX.concat(signId), CacheConstants.SCH_SIGN_ID_TIME, sign);
//        }
        
        return sign ;
        
    }
    
    /**
     * Ç©µ½¶ÔÓ¦»î¶¯£¬¸ù¾ÝsignIdµÃµ½Ïà¶ÔÓ¦µÄ»î¶¯
     * @param signId
     * @return
     */
//    public Activitys getActivityFromCacheOrDB(String signId){
//        
//        Activitys acts = cacheService.get(CacheConstants.SCH_SIGN_ACTIVITY_PREFIX.concat(signId), Activitys.class);
//        
//        if( null != acts ){
//            return acts ;
//        }
//        
//        String hql = " from Activitys where signId = ? and deleteFlag is false  ";
//        acts = findUnique(hql, CollectionUtils.newList(signId), Activitys.class);
//        
//        if(null != acts){
//            cacheService.set(CacheConstants.SCH_SIGN_ACTIVITY_PREFIX.concat(signId), CacheConstants.SCH_SIGN_ACTIVITY_TIME, acts);
//        }
//        
//        return acts ;
//        
//    }
    
    /**
     * ¸ù¾ÝsignµÃµ½Ïà¶ÔÓ¦µÄ»ú¹¹Í¼Ïñ
     * @param signId
     * @return
     */
    public String getOrgLogoFromCacheOrDB(SchSign sign){
        
//        String orgLogo = cacheService.get(CacheConstants.SCH_SIGN_ORG_PREFIX.concat(sign.getSignId()), String.class);
        
//        if( null != orgLogo ){
//            return orgLogo ;
//        }
        
//        OrgClass cls = read(OrgClass.class, sign.getClassId());
//        Organization org = read(Organization.class, cls.getOrgCollegeCourse().getOrganizationId());
        
//        if(null != org && StringUtils.isNotBlank(org.getLogoPath())){
//            cacheService.set(CacheConstants.SCH_SIGN_ORG_PREFIX.concat(sign.getSignId()), CacheConstants.SCH_SIGN_ORG_TIME, org.getLogoPath());
//        }
        
//        return null == org.getLogoPath() ?  "" : org.getLogoPath() ;
        return null;
        
    }
    
    public Result sendSignQueueMsg(String args){
        
        // ÑÓʱһ·ÖÖÓ·¢ËÍ 
//        ONSMsg msg = new ONSMsg(onsProducer.getTopic());
        
//        msg.put("msgType", "SCH_SIGN_QUEUE");
//        msg.put("args", args);
//        
//        try {
//
//            onsProducer.sendMsg(msg);
//            return new Result(true);
//
//        } catch (Exception e) {
//            log.error("call sendSignQueueMsg fail.regId: " , e);
//        }
 
        return new Result(false);
        
    }
    
    /**
     * Ç©µ½Òì²½´¦Àí²¿·Ö´úÂë
     * 
     * @param strArgs json¶ÔÏó
     * @return
     */
    @SuppressWarnings("unused")
    public Result doHandleSignQueueMsg(String strArgs){
        if(StringUtils.isEmpty(strArgs)){
            return null;
        }
        JSONObject args = JSON.parseObject(strArgs);
        String source = args.getString("source");
        String userId = args.getString("userId");
        String userName = args.getString("userName");
        String signId = args.getString("signId");
        String mobilePhone = args.getString("mobilePhone");
        String userImg = args.getString("userImg");
        Integer signType = args.getInteger("signType");
        Integer signIndex = args.getInteger("signIndex");
        String inputCode = args.getString("inputCode");
        String openId = args.getString("openId");
        
//        if(StringUtils.isNotBlank(inputCode) && StringUtils.isNotBlank(openId)){
//            
//            // ²éѯ²¢¸üа󶨹ØÏµ
//            UserReWeixin weixin = weixinCommonService.queryUserReWxByOpenId(openId);
//            if(weixin == null){
//                weixinCommonService.saveUserReWeixin(openId, userId, source);
//            }else{
//                weixinCommonService.updateUserReWeixin(openId, userId, source);
//            }
//        }
        
        //Ç©µ½»ý·Ö
//        scoreChangeService.doSign(userId, signId);
                
        //Ç©µ½´óÆÁ,·¢ËÍÏûÏ¢
        User user = new User();
        user.setName(userName);
        user.setUserId(userId);
        user.setMobilePhone(mobilePhone);
        user.setImgPath(userImg);
        this.updateSignMessage(signType,signIndex,signId, user);
                
        
        return null ;
    }
    
    /**
     * Í¨¹ýopenIdµÃµ½user
     * @param openId
     * @return
     */
    public User getUserFromOpenId(String openId){
        User user = null;
//        // Í¨¹ýopenIdÕÒuser
//        if(StringUtils.isNotBlank(openId)){
//            
//            // ²éѯ°ó¶¨¹ØÏµ
//            UserReWeixin weixin = weixinCommonService.queryUserReWxByOpenId(openId);
//            if (null != weixin) {
//                user = read(User.class, weixin.getUserId());
//            }
//        }
        return user;
    }
    
    @SuppressWarnings("unused")
    @Override
    public List<SchSignStatistics> querySignItemListCom( String hql,List<Object> args,Pager page,Integer signType,String signId ) {
        
        Pager currPage = page ;
        
        if( null == currPage ){
            currPage = new Pager();
            currPage.setPageNum(1);
            currPage.setPageSize(200);
        }
        
        String cacheKey = CacheConstants.SCH_SIGN_STATISTICS_FIRST_ACTPAGE_PREFIX.concat(signId).concat("_")
                .concat(String.valueOf(currPage.getPageNum())).concat("_")
                .concat(String.valueOf(currPage.getPageSize()));
        
//        if(SignStatisResult.SIGN_TYPE_FIRST == signType){
//            // Èç¹ûÂúһҳȡ»º´æ
//            Object obj = cacheService.get(cacheKey, Object.class);
//            if(null != obj ){
//                return (List<SchSignStatistics>)obj;
//            }
//        }
        
        // ²éѯ²¢ÇÒ»º´æ
        List<SchSignStatistics> lstData = signDAO.querySignItemListCom(hql, currPage, args);
        
        // ÂúÒ»Ò³Êý¾Ý»º´æ
//        if(lstData.size() == currPage.getPageSize() ){
//            cacheService.set(cacheKey, CacheConstants.SCH_SIGN_STATISTICS_FIRST_ACTPAGE_TIME, lstData);
//        }
//        
        return lstData ;
        
    }
    
    /**
     * Î´Ç©µ½Í³¼ÆÒ³Ãæ
     * 
     * @param signId
     * @param signDate
     * @return
     */
    public Result updateFlag(String signStatisticsIds){
        if(StringUtils.isBlank(signStatisticsIds)){
            return new Result(false, "²ÎÊý´íÎó");
        }
        
        this.bulkUpdateInLoop("update SchSignStatistics s set s.statisticsFlag = 1 where s.signStatisticsId = ?", signStatisticsIds.split(","));
        List<SchSignStatistics> lstSchSignStatistics = this.findByComplexHql("from SchSignStatistics s where s.signStatisticsId in(:signStatisticsIds)",
                CollectionUtils.newObjectMap("signStatisticsIds", signStatisticsIds.split(",")), SchSignStatistics.class);
        int firstCount = 0;
        int lastCount = 0;
        for(SchSignStatistics objSchSignStatistics : lstSchSignStatistics){
            if(objSchSignStatistics.getFirstSignTime() != null){
                firstCount ++;
            }
            if(objSchSignStatistics.getLastSignTime() != null){
                lastCount ++;
            }
        }
        
        this.bulkUpdate(
                "update LessionSignStatistics s set s.firstSignUserCount = s.firstSignUserCount + ?,s.lastSignUserCount = s.lastSignUserCount + ?"
                + " where s.classSubjectId = ? and s.statisticsTime = ?",
                new Object[]{firstCount, lastCount, lstSchSignStatistics.get(0).getClassSubjectId(), lstSchSignStatistics.get(0).getSignDate()});
        return new Result(true);
    }
    
    /**
     * °à¼¶Ìý¿Î֤ǩµ½
     * 
     * @param signVO
     * @param userId
     * @param type
     * @return
     */
    public SignStatisResult doSignByClassCard(SchSign signVO, String userId){
        User user = this.read(User.class, userId);
        //ÉèÖÃĬÈϲ»¿ØÖƾàÀëºÍÖ»Äܱ¾°àÇ©µ½
        signVO.setRegisterAllow(SchSign.SIGN_ACT_DISALLOW);
        signVO.setOutRangeAllow(SchSign.SIGN_ACT_ALLOW);
        
        //3. ²åÈëÇ©µ½Í³¼Æ
        SignStatisResult result = this.insertSignStatistics(signVO, null, new Date(),
                SchSignStatistics.TERMINAL_TYPE_WECHAT, userId, user.getName(), user.getMobilePhone(), null);
        if(!result.getResult()){
            return new SignStatisResult(false,result.getErrMsg());
        }
        
        return result;
    }
}