高章伟
2022-02-18 8b5f4c6c281cfa548f92de52c8021e37aa81901e
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
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
/**
 * 新規場合、hpId ある && ir == null && name あるの場合、自動採番する
 *      hpId        取引先ID(必須)、主従関係
 *      asset_ids   AssetIDの配列
 *      name        点検報告書单号
 *
 * 編集場合
 *      asset_ids   AssetIDの配列(nullの場合、reportの明細をそのまま読み込む。空の場合は明細全部削除する)
 *      id          点検報告書ID(必須)
 *      name        点検報告書单号(必須)
 */
global class OFSInsReportLayoutForVmController {
    private static integer SECTIONMAX = 10;
    private static integer REPORTMAX = 6;
    private static integer FIELDMAX = 100;
    private static Integer ASSETMAX = 100;
    private static Integer GROUPMAX = 900;
    // 显示数据条数限制
    private static Integer SELECT_LIMIT = 200;
 
    private static final String HOSPITAL_STRING = '病院';
    //add by rentx 20210630
    public String vmId { get; set; } //维修合同id
    public Set < Id > vmAssIds; //维修合同下点检保有设备的id
    public String djId { get; set; } //点检计划id
    public String isdjTime {get;set;} //是否为点检区间 当前日期大于点检计划的开始日
    public String havedjnotEnd {get;set;} //当前点检计划前是否有未完成的点检
    public Maintenance_Contract__c vm = new Maintenance_Contract__c();
    public Inspectup_Plan__c plan = new Inspectup_Plan__c();
    public String htNumber {get;set;}
    // public String irId {get;set;}
    // private ma<Id> assetsHasBeenChecked = new List<Id>();
    private Map < Id,String > assetsHasBeenCheckedMap = new Map < Id,String > ();  //把所有和这个map相关的代码都注掉了 因为现在不再判断是否点检过 没有显灰滞后了
    //add by rentx 20210630
    private String pName;
    private String pReportId;
    private String pAssetIds;
    private Id pHpId;
    private String pEventCId;
 
    private String oldHospital;
    private String oldStatus;
    private Boolean isPDF;
    private Boolean isUpDown;
    private Boolean isSubmit;
    public String alertMessage {
        private set;
        get;
    }
    public Decimal nowAssetcount {
        get;
        set;
    }
    public Decimal countorder {
        get;
        set;
    }
    public Decimal runCount;
    public List < String > assetSerialNumberList = new List < String > ();
 
    /*****************select option******************/
    public static List < SelectOption > textOpts {
        get;
        private set;
    }
    static {
        textOpts = new List < SelectOption > ();
        textOpts.add(new SelectOption('', '-无-'));
        textOpts.add(new SelectOption('S:Asset_situation__c', Schema.SObjectType.Asset.fields.Asset_situation__c.label));
        textOpts.add(new SelectOption('S:Name', Schema.SObjectType.Asset.fields.Name.label));
        textOpts.add(new SelectOption('S:SerialNumber', Schema.SObjectType.Asset.fields.SerialNumber.label));
        textOpts.add(new SelectOption('S:CurrentContract__r.Management_Code__c', Schema.SObjectType.Asset.fields.CurrentContract__c.label));
        textOpts.add(new SelectOption('S:Status', Schema.SObjectType.Asset.fields.Status.label));
        textOpts.add(new SelectOption('S:Installation_Site__c', Schema.SObjectType.Asset.fields.Installation_Site__c.label));
        textOpts.add(new SelectOption('S:Department_Name__c', Schema.SObjectType.Asset.fields.Department_Name__c.label));
    }
    public static List < SelectOption > equalOpts {
        get;
        private set;
    }
    static {
        equalOpts = new List < SelectOption > ();
        equalOpts.add(new SelectOption('equals', '等于'));
        equalOpts.add(new SelectOption('contains', '包含'));
    }
    public String text1 {
        get;
        set;
    } // 对象
    public String cond1 {
        get;
        set;
    } // 条件
    public String val1 {
        get;
        set;
    } // 值
    /*****************ソートキー******************/
    public String sortKey {
        get;
        set;
    }
    public String preSortKey {
        get;
        private set;
    }
    public Boolean sortOrderAsc {
        get;
        private set;
    }
    public String[] sortOrder {
        get;
        private set;
    }
    private String[] columus = new String[] {
        'Asset_situation__c',
        'Name',
        'SerialNumber',
        'CurrentContract__r.Management_Code__c',
        'Department_Name__c',
        'Status',
        'Installation_Site__c',
        'Room_Number__c',
        'InstallDate',
        'Asset_Owner__c',
        'Accumulation_Repair_Amount__c'
    };
 
    private Boolean isSoft;
 
    /*****************ソート時再検索条件(画面からの入力条件を無視するため)******************/
    private String text1ForSort = null;
    private String cond1ForSort = null;
    private String val1ForSort = null;
 
    public Boolean initFlag {
        get;
        private set;
    }
    //編集か新規か、判断するためにフラグ
    private Boolean editFlag {
        get;
        private set;
    }
    public List < Asset > assetList {
        get;
        private set;
    }
    public List < Inspection_Item__c > ahList {
        get;
        private set;
    }
    public Map < Asset,
    Inspection_Item__c > ahMap {
        get;
        private set;
    }
    public Map < Id,
    Inspection_Item__c > ahIdMap {
        get;
        private set;
    }
    public Map < Id,
    Integer > assetMap {
        get;
        private set;
    }
    public List < Inspection_Item__c > newAhList {
        get;
        private set;
    }
    private OFSInsReportLayout__c layout;
    private RecordType layoutRecordType; // 新規 点検報告書 の時、urlparam の rtより取得
    private String settingSoql;
    private List < Asset > assetRecords;
    public List < AssetInfo > checkedInfoList {
        get;
        set;
    }
    public List < AssetInfo > unCheckedInfoList {
        get;
        set;
    }
    public List < AssetInfo > checkedInfoListBuff {
        get;
        set;
    }
    public List < AssetInfo > unCheckedInfoListBuff {
        get;
        set;
    }
    public List < List < AssetInfo >> checkedInfoListForThousend {
        get;
        set;
    }
    public List < List < AssetInfo >> unCheckedInfoListForThousend {
        get;
        set;
    }
    public Integer ThousandFLG {
        get;
        set;
    }
    public List < List < AssetInfo >> ResultOfRefresh {
        get;
        set;
    }
    public List < SectionBean > sectionList {
        get;
        private set;
    }
    public Inspection_Report__c ir {
        get;
        private set;
    }
    // SWAG-AREBA8 start
    public Map < String,
    AssetInfo > tmpDelInfoMap {
        get;
        set;
    }
    // SWAG-AREBA8 end
    public Boolean saveOK {
        get;
        set;
    }
    public Boolean activeOn {
        get;
        set;
    }
 
    public Integer productCount {
        get {
            return checkedInfoList == null ? 0 : checkedInfoList.size();
        }
    }
    public Integer productCount2 {
        get {
            return unCheckedInfoList == null ? 0 : unCheckedInfoList.size();
        }
    }
 
    public List < Map < String,
    String >> selectedRptMapList {
        get;
        private set;
    }
    // カスタム設定
    public static Map < String,
    OFSInsReportLayout__c > oirSettingMap {
        get;
        private set;
    }
    static {
        oirSettingMap = new Map < String,
        OFSInsReportLayout__c > ();
        List < OFSInsReportLayout__c > oirList = OFSInsReportLayout__c.getall().values();
        for (OFSInsReportLayout__c oir: oirList) {
            oirSettingMap.put(oir.recordType_devName__c, oir);
        }
    }
    /**
   * Visaulforceから呼ばれるコンストラクタ
   */
    public OFSInsReportLayoutForVmController(ApexPages.StandardController controller) {
 
}
    public OFSInsReportLayoutForVmController() {
        countorder = 1;
        nowAssetcount = 1;
        runCount = 0;
        isUpDown = true;
 
    }
 
    // TODO 全部画面リフレッシュにする
    public void init() {
        initFlag = true;
        editFlag = false;
        text1 = '';
        cond1 = 'equals';
        val1 = null;
        isUpDown = true;
        isSoft = false;
        isPDF = false;
        isSubmit = false;
        activeOn = true;
        ThousandFLG = 0;
        // 默认排序
        this.sortKey = '0';
        this.preSortKey = '0';
        this.sortOrderAsc = true;
        this.sortOrder = new String[] {
            '↑',
            '',
            '',
            '',
            '',
            '',
            '',
            '',
            '',
            '',
            ''
        };
        // 排序用检索条件退避
        text1ForSort = '';
        cond1ForSort = 'equals';
        val1ForSort = null;
 
        sectionList = new List < SectionBean > ();
        assetList = new List < Asset > ();
        ahList = new List < Inspection_Item__c > ();
        checkedInfoList = new List < AssetInfo > ();
        unCheckedInfoList = new List < AssetInfo > ();
        newAhList = new List < Inspection_Item__c > ();
        assetRecords = new List < Asset > ();
        ahMap = new Map < Asset,
        Inspection_Item__c > ();
        ahIdMap = new Map < Id,
        Inspection_Item__c > ();
        assetMap = new Map < Id,
        Integer > ();
        selectedRptMapList = new List < Map < String,
        String >> ();
        // SWAG-AREBA8 start
        tmpDelInfoMap = new Map < String,
        AssetInfo > ();
        // SWAG-AREBA8 end
        pAssetIds = ApexPages.currentPage().getParameters().get('asset_ids');
        pReportId = ApexPages.currentPage().getParameters().get('id');
        pHpId = ApexPages.currentPage().getParameters().get('hpid');
        pName = ApexPages.currentPage().getParameters().get('name');
        pEventCId = ApexPages.currentPage().getParameters().get('ecid');
        String pRt = ApexPages.currentPage().getParameters().get('rt');
        //add by rentx 20210630 
        vmId = ApexPages.currentPage().getParameters().get('vmId');
        //add by rentx 20210809 关联点检计划
        djId = ApexPages.currentPage().getParameters().get('djId');
        //add by rentx 20210907 
        isdjTime = 'FALSE';
        havedjnotEnd = 'FALSE';
        vmAssIds = new Set < Id > ();
        assetsHasBeenCheckedMap = new Map < Id,String > ();
        //add by rentx 20210630
        
        List < String > assetIdList = new List < String > ();
        if (String.isBlank(pAssetIds) == false) assetIdList = pAssetIds.split('_');
        for (String aId: assetIdList) {
            assetMap.put(aId, assetMap.size());
        }
 
        if (String.isBlank(pReportId) == false) {
            // 点検報告書明細の編集ボタンの置き換えを対応する
            List < Inspection_Item__c > iis = [select Id, Inspection_ReportId__c from Inspection_Item__c where Id = :pReportId];
            if (iis.size() > 0) {
                pReportId = iis[0].Inspection_ReportId__c;
            }
 
            List < Inspection_Report__c > queryIrs = [select Id, RecordType.DeveloperName, RecordType.Name, Name, Status__c, Inspection_StartTime__c, Inspection_EndTime__c, Contract__c,
            //add by rentx 
            Disinfectant__c, UsedMachine__c, SterilizationMethod__c, Used_ET__c, Others__c, CleaningFluid__c,Inspectup_Plan__c,Mode__c from Inspection_Report__c where Id = :pReportId];
            if (queryIrs.size() <= 0) {
                initFlag = false;
                ApexPages.addmessage(new ApexPages.message(ApexPages.severity.ERROR, '无法找到点检报告书'));
                return;
            }
            ir = queryIrs[0];
            if (djId == null || djId == '') {
                djId = ir.Inspectup_Plan__c;
            }
            System.debug('wql2:' + ir);
            //add by rentx 20210707 start
            if (ir.Contract__c != null && String.isBlank(vmId)) {
                vmId = ir.Contract__c;
            }
            if (ir.Inspectup_Plan__c != null ) {
                djId = ir.Inspectup_Plan__c;
            }
            //add by rentx 20210707 end
            editFlag = true; //既存点検報告書編集
            layout = oirSettingMap.get(ir.RecordType.DeveloperName);
        }
 
        //add by rentx 20210630 判断维修合同 
        if (String.isBlank(vmId) == false) {
            List < Maintenance_Contract__c > vmList = [select id, Status__c, Hospital__c, Maintenance_Contract_No_F__c,Inspection_Time__c from Maintenance_Contract__c where id = :vmId];
            // if (vmList == null && vmList.size() == 0) {
            if (vmList == null || vmList.size() == 0) {
                initFlag = false;
                ApexPages.addmessage(new ApexPages.message(ApexPages.severity.ERROR, '无法找到维修合同'));
                return;
            }
            if (vmList[0].Status__c != '契約') {
                initFlag = false;
                ApexPages.addmessage(new ApexPages.message(ApexPages.severity.ERROR, '当前合同的状态不为合同中 请重新选择'));
                return;
 
            }
            vm = vmList[0];
            this.htNumber = vm.Maintenance_Contract_No_F__c;
            //获取当前合同下的保有设备Id
            List < Maintenance_Contract_Asset__c > VmassList = new List < Maintenance_Contract_Asset__c > ();
            VmassList = [select id, Asset__c, Check_object__c from Maintenance_Contract_Asset__c where Maintenance_Contract__c = :vmList[0].Id];
            // 显示合同中,确定为点检对象的设备
            if (VmassList.size() > 0) {
                for (Maintenance_Contract_Asset__c mcac: VmassList) {
                    if (mcac.Check_object__c) {
                        vmAssIds.add(mcac.Asset__c);
                    }
                }
            }
 
            Decimal jihNum = 0 ;
            Decimal jihNeiNum = 0 ;
            // Decimal tjpzNum = 0;
            if (djId != null && djId != '') {
                //查询这个点检计划 判断点检是否已开始
                //取得计划点检对象数 和计划内点检设备数 
                plan = [select id,Planned_Start_Date__c,Planned_End_Date__c,Check_Object_Quantity__c,Planned_check_equipment_Num__c,Actual_Execution_Quantity__c,Submit_Approval_Num__c from Inspectup_Plan__c where id = :djId];
                if (plan != null) {
                    jihNum = plan.Check_Object_Quantity__c;
                    // gzw fix 
                    jihNeiNum = plan.Actual_Execution_Quantity__c;
                    // tjpzNum = plan.Submit_Approval_Num__c;
                    if (plan.Planned_Start_Date__c != null) {
                        if (Date.today() < plan.Planned_Start_Date__c) {
                            //如果点检没开始 设置
                            isdjTime = 'TRUE';
                        }
                    }
 
                    //add by rentx 20210916 如果上一个计划没全都完成,不允许当前计划的录入,弹窗关掉画面 start
                    //维修合同下的所有计划 条件是 计划的实施期限<当前计划开始日 实施率小于100% 结果大于0 谈提示(当期计划前还有未点检完成的计划)
                    List<Inspectup_Plan__c> ins = [select id,Planned_Start_Date__c,Planned_End_Date__c,Check_Object_Quantity__c,Planned_check_equipment_Num__c,Actual_Execution_Quantity__c,
                                    Submit_Approval_Num__c from Inspectup_Plan__c where Maintenance_Contract__c = :vmId 
                                    AND Planned_End_Date__c < :plan.Planned_Start_Date__c AND Implementation_Rates__c < 100 ];
                    if (ins != null && ins.size() > 0) {
                        //弹出提示框
                        havedjnotEnd = 'TRUE';
                    }
 
                    //add by rentx 20210916 如果上一个计划没全都完成,不允许当前计划的录入,弹窗关掉画面 end
 
                }
                
                // if (plan != null && plan.Planned_Start_Date__c != null) {
                //     if (Date.today() < plan.Planned_Start_Date__c) {
                //         //如果点检没开始 设置
                //         isdjTime = 'TRUE';
                //     }
                // }
            }
 
                // ApexPages.addmessage(new ApexPages.message(ApexPages.severity.ERROR, 'jihNum '+jihNum + '  jihnNum' + jihNeiNum) );
 
            //获取当前合同下的其他已点检过的设备  需要是同一个点检计划 djId  --现在没有该限制了
            // List < Inspection_Item__c > inItemList = new List<Inspection_Item__c>();
            //两个数量不一样 需要显灰滞后 -> 点检过不能再点检了 
            if (jihNum != jihNeiNum) {
            // if (jihNum != tjpzNum) {
 
                //提交和审批中的才算是点检过的设备 add by rentx 20210915
                // List < Inspection_Item__c > inItemList = [select id, AssetId__c from Inspection_Item__c where Inspection_ReportId__r.Contract__c = :vmId AND Inspection_ReportId__r.Inspectup_Plan__c = :djId ];
                List < Inspection_Item__c > inItemList = [select id, AssetId__c from Inspection_Item__c 
                                                            where Inspection_ReportId__r.Contract__c = :vmId 
                                                            AND Inspection_ReportId__r.Inspectup_Plan__c = :djId 
                                                            AND (Inspection_ReportId__r.Status__c = '申请中' OR Inspection_ReportId__r.Status__c = '批准')];
                if (inItemList != null && inItemList.size() > 0) {
                    for (Inspection_Item__c item: inItemList) {
                        assetsHasBeenCheckedMap.put(item.AssetId__c, '');
                    }
                }
            }
            
        }
 
        
        //add by rentx 20210630
        if (String.isBlank(pRt) != true && layout == null) {
            layout = oirSettingMap.get(pRt);
            layoutRecordType = [select Id, Name, DeveloperName from RecordType where IsActive = true and SobjectType = 'Inspection_Report__c'and DeveloperName = :pRt];
        }
 
        if (layout == null) {
            //error
            initFlag = false;
            ApexPages.addmessage(new ApexPages.message(ApexPages.severity.ERROR, '无法获取自定义设置'));
            return;
        }
 
        //TODO : oirSettingMapのRecordTypeは'EndoscopeSystem'しかないです
        //layout = oirSettingMap.get(ir.RecordType.DeveloperName);
        //layout = oirSettingMap.get('EndoscopeSystem');
        Map < String,
        SectionBean > sectionMap = new Map < String,
        SectionBean > ();
        for (Integer i = 1; i <= SECTIONMAX; i++) {
            String strSection = 'section' + i + '__c';
            String sectionStr = String.valueOf(layout.get(strSection));
            if (String.isBlank(sectionStr) == false) {
                SectionBean section = new SectionBean(sectionStr);
                if (i == 1) section.isTop = true;
                sectionList.add(section);
                sectionMap.put(section.id, section);
            }
        }
        List < List < String >> sectionApiList = new List < List < String >> (); // FIXME yu why not Set<String>、apiTempSet と重複しています。
        String jsonField = '';
        for (Integer i = 1; i <= FIELDMAX; i++) {
            String strI = 'field' + i + '__c';
            String jsonFieldtmp = String.valueOf(layout.get(strI));
            if (String.isBlank(jsonFieldtmp) == false) {
                jsonFieldtmp = jsonFieldtmp.trim();
                if (jsonFieldtmp.endsWith(' _')) {
                    jsonField += jsonFieldtmp.substring(0, jsonFieldtmp.length() - 2);
                    continue;
                } else {
                    jsonField += jsonFieldtmp;
                }
                SectionItem field = new SectionItem(jsonField, i);
                jsonField = ''; // 次を備えるため、'' にする
                SectionBean section = sectionMap.get(field.getSectionId());
                if (section != null) {
                    sectionApiList.add(field.getApiList()); // FIXME yu why not addAll
                    if (field.isRight()) {
                        section.rightSectionList.add(field);
                    } else {
                        section.leftSectionList.add(field);
                    }
                }
            }
        }
 
        this.settingSoql = 'select Id, Name, Name_Manual__c, Next_StartHour_Page__c, Next_StartMinute_Page__c ';
        this.settingSoql += ',Next_EndHour_Page__c, Next_EndMinute_Page__c,Disinfectant__c ,UsedMachine__c ,SterilizationMethod__c ,Used_ET__c, Mode__c ';
        this.settingSoql += ',Others__c, Remarks__c, CleaningFluid__c  ';
        // 重複な項目を追加しないためのセット
        Set < String > apiTempSet = new Set < String > ();
        apiTempSet.add('Id');
        apiTempSet.add('Name');
        apiTempSet.add('Name_Manual__c');
        apiTempSet.add('Next_StartHour_Page__c');
        apiTempSet.add('Next_StartMinute_Page__c');
        apiTempSet.add('Next_EndHour_Page__c');
        apiTempSet.add('Next_EndMinute_Page__c');
 
        for (List < String > apiList: sectionApiList) {
            for (String apiStr: apiList) {
                if (String.isBlank(apiStr) == false && apiTempSet.contains(apiStr) == false) {
                    this.settingSoql += ', ';
                    this.settingSoql += apiStr;
                    apiTempSet.add(apiStr);
                }
            }
        }
        //TODO: timecheckflag
        if (apiTempSet.contains('NextInspection_Day__c') == true) {
 
}
        if (apiTempSet.contains('Inspection_Date__c') == true) {
 
}
 
        // 图表reportの読み込むロジック、InsReportにはないです
        String idSoql = this.settingSoql + ' from Inspection_Report__c where Id = :pReportId';
        String nameSoql = this.settingSoql + ' from Inspection_Report__c where Name = :pName';
 
        if (String.isBlank(pReportId) == false) {
            System.debug('wql6:' + idSoql);
            //pReportIdで検索
            List < Inspection_Report__c > idQueryResults = Database.query(idSoql);
            //if (id検索結果ある)
            if (idQueryResults.size() == 1) {
                Inspection_Report__c irTmp = idQueryResults[0];
                if (String.isBlank(pName) == true || (String.isBlank(pName) == false && irTmp.Name == pName)) {
                    ir = irTmp;
                    system.debug('wql3:' + ir);
                    editFlag = true; //既存点検報告書編集
                } //else: pNameが値ある、及びid検索結果とpNameが違う、irを作らない
                if (ir == null) {
                    //errorMsg
                    ApexPages.addmessage(new ApexPages.message(ApexPages.severity.ERROR, '无法找到点检报告书'));
                    return;
                } //else: irできった
            } //else: ir検索結果がない、下記のnameのif文に入る
        } //else: pReportIdがないと、ir検索できない、下記のnameのif文に入る
        if (String.isBlank(pName) == false && ir == null) {
            //nameで検索
            List < Inspection_Report__c > nameQueryResults = Database.query(nameSoql);
            //if (name検索結果ある)
            if (nameQueryResults.size() == 1) {
                ir = nameQueryResults[0];
                System.debug('wql4:' + ir);
                editFlag = true; //既存点検報告書編集
            } //else: ir検索結果がない、下記のpHpIdのif文に入る
        } //else: pNameがない、下記のpHpIdのif文に入る、あるいはirが既にできった
        if (ir != null) {
            //点検報告書にすでにある明細をahMapに入れる
            //urlにはpAssetIdsというパラメーターがある、pAssetIdsと点検報告書と両方とも条件として、明細を検索する
            if (pAssetIds != null) {
                ahList = [Select Id, Name, AssetId__r.Id, AssetId__r.Asset_situation__c, 
                AssetId__r.Name, AssetId__r.Final_Examination_Date__c, AssetId__r.After_repair_last_internal_check_day__c, 
                AssetId__r.Hospital__r.Id, AssetId__r.Hospital__r.Name, AssetId__r.Department_Class__r.Id, AssetId__r.Department_Class__r.Name, 
                AssetId__r.Account.Id, AssetId__r.Account.Name, AssetId__r.SerialNumber, AssetId__r.CurrentContract__c, 
                AssetId__r.CurrentContract__r.Management_Code__c, AssetId__r.Department_Name__c, AssetId__r.Status, AssetId__r.Installation_Site__c, 
                AssetId__r.Room_Number__c, AssetId__r.InstallDate, AssetId__r.Asset_Owner__c, AssetId__r.Accumulation_Repair_Amount__c, AssetId__c, 
                Inspection_ReportId__c, SerialNumber__c, Diagnosis__c, FaultNumber__c, Behavior__c, IsContinueUse__c, SerialNo_Manual__c, 
                Fault_Classification1__c, Fault_Classification2__c, ItemStatus__c, Fault_Classification3__c, Product_Manual__c, 
                Inspection_Result__c, Inspection_Comment__c
                //add by rentx 20210630
                , Abandonment_Reasons__c from Inspection_Item__c Where AssetId__c in :assetIdList and Inspection_ReportId__c = :ir.Id order by Name];
                //urlにはpAssetIds=null、点検報告書の明細を変更しない、全部読み込んで
            } else {
                ahList = [Select Id, Name, AssetId__r.Id, AssetId__r.Asset_situation__c, 
                AssetId__r.Name, AssetId__r.Final_Examination_Date__c, AssetId__r.After_repair_last_internal_check_day__c,
                AssetId__r.Hospital__r.Id, AssetId__r.Hospital__r.Name, AssetId__r.Department_Class__r.Id, AssetId__r.Department_Class__r.Name, 
                AssetId__r.Account.Id, AssetId__r.Account.Name, AssetId__r.SerialNumber, AssetId__r.CurrentContract__c,
                AssetId__r.CurrentContract__r.Management_Code__c, AssetId__r.Department_Name__c, AssetId__r.Status, AssetId__r.Installation_Site__c, 
                AssetId__r.Room_Number__c, AssetId__r.InstallDate, AssetId__r.Asset_Owner__c, AssetId__r.Accumulation_Repair_Amount__c, AssetId__c,
                Inspection_ReportId__c, SerialNumber__c, Diagnosis__c, FaultNumber__c, Behavior__c, IsContinueUse__c, SerialNo_Manual__c,
                Fault_Classification1__c, Fault_Classification2__c, ItemStatus__c, Fault_Classification3__c, Product_Manual__c, Inspection_Result__c, Inspection_Comment__c
                //add by rentx 20210630
                , Abandonment_Reasons__c from Inspection_Item__c Where Inspection_ReportId__c = :ir.Id order by Name];
            }
            for (Inspection_Item__c ah: ahList) {
                if (ah.AssetId__c != null) {
                    ahMap.put(ah.AssetId__r, ah);
                    ahIdMap.put(ah.AssetId__c, ah);
                } else {
                    newAhList.add(ah);
                }
            }
        } else if (String.isBlank(pHpId) == false && ir == null) {
            List < Account > queryAccs = [select Id, Name, ParentId, Parent.ParentId, Parent.Parent.RecordType.DeveloperName, 
            Parent.RecordType.DeveloperName, RecordType.DeveloperName, RecordType.Name from Account where Id = :pHpId];
            if (queryAccs.size() <= 0) {
                initFlag = false;
                ApexPages.addmessage(new ApexPages.message(ApexPages.severity.ERROR, '无法找到医院'));
                return;
            } else {
                Account tempacc = queryAccs[0];
                //点検報告書を新規する
                ir = new Inspection_Report__c();
                system.debug('wql5:' + ir);
                editFlag = false; //点検報告書新規
                if (tempacc.RecordType.DeveloperName == 'HP') {
                    //医院
                    ir.Hospital__c = tempacc.Id;
                } else if (tempacc.Parent.RecordType.DeveloperName == 'HP') {
                    //战略科室
                    ir.Hospital__c = tempacc.ParentId;
                } else if (tempacc.Parent.Parent.RecordType.DeveloperName == 'HP') {
                    //科室
                    ir.Hospital__c = tempacc.Parent.ParentId;
                    ir.Department__c = tempacc.Id;
                    ir.Manual_Department__c = tempacc.Name;
                }
            }
 
            //新規する時、nameがないと、irのNo.を自動採番する
            if (String.isBlank(pName) == true) {
                makeIrNo();
                //nameがあれば、irに入れる
            } else {
                ir.Name = pName;
            }
        } else {
            ir = new Inspection_Report__c();
            editFlag = false;
        }
 
        if (ir == null) {
            //error message
            initFlag = false;
            ApexPages.addmessage(new ApexPages.message(ApexPages.severity.ERROR, '参数错误'));
            return;
        }
 
        // 新規時デフォルト値設定
        if (ir.Id == null) {
            ir.Inspection_Date__c = Date.today();
            ir.Reporter__c = UserInfo.getUserId();
            ir.RecordTypeId = layoutRecordType.Id;
        }
 
        //signFlg = String.isBlank(ir.ResponsiblePerson_Sign__c) ? false : true;
        // //irName = ir.Name;
        if (editFlag == false) ir.Status__c = '草案中';
        assetSerialNumberList.clear();
        getAssetSerialNumber();
        String soqlconfim = this.makeSoqlconfim();
        List < Asset > assetRecordsconfim = Database.query(soqlconfim);
        if (assetRecordsconfim.size() > Integer.valueOf(System.Label.Asset_Maxcount)) {
            //alertMessage = '未选保有设备行数' + assetRecordsconfim.size();
            makePageNo(assetRecordsconfim.size());
        }
        // 病院から保有设备を取得
        this.getAssetFromHp();
        // if (ir != null) {
        //     irId = ir.Id;
        // }else {
        //     irId = '';
        // }
    }
 
    public PageReference addNewRows() {
        for (Integer i = 0; i < 10; i++) {
            checkedInfoList.add(new AssetInfo(checkedInfoList.size()));
        }
        return null;
    }
 
    public void makeIrNo() {
        Savepoint sp = Database.setSavepoint();
        ir.Name = '*';
        try {
            insert(this.ir);
        } catch(Exception e) {
            ApexPages.addMessages(e);
        }
        String idstr = ir.Id;
        String soql = this.settingSoql + ' from Inspection_Report__c where Id = :idstr';
        system.debug('soql:' + soql);
        List < Inspection_Report__c > irQueryResults = Database.query(soql);
        if (irQueryResults.size() > 0) {
            ir = irQueryResults[0];
            System.debug('wql:' + ir);
        } else {
            //error
        }
        // 強制ロールバック
        Database.rollback(sp);
        // upsertのために。idを削除
        ir.Id = null;
    }
 
    /**
   * 選択済み/未選択製品の置き換え
   */
    public PageReference exchangeAsset() {
        isUpDown = false;
        System.debug('exchangeAsset start');
        // 病院変更チェック
        if (!this.checkHpChange()) {
            ApexPages.addmessage(new ApexPages.message(ApexPages.severity.ERROR, '保有设备的医院与点检报告书的医院不符,请点击刷新按钮重新取得保有设备。'));
            return null;
        }
        Date systemToday = System.today();
        List < AssetInfo > tmpChecked = new List < AssetInfo > ();
        List < AssetInfo > tmpNewRows = new List < AssetInfo > ();
        List < AssetInfo > tmpUnChecked = new List < AssetInfo > ();
        for (AssetInfo ass: this.checkedInfoList) {
            if (ass.isManual) {
                tmpNewRows.add(ass);
            } else {
                if (ass.rec_checkBox_c) {
                    tmpChecked.add(ass);
                } else {
                    tmpUnChecked.add(ass);
                }
            }
        }
        system.debug('=====unCheckedInfoList:' + unCheckedInfoList.size());
        for (AssetInfo Ai: unCheckedInfoList) {
            if (Ai.rec_checkBox_c) {
                system.debug('=====uncheck SerialNumber1:' + Ai.rec.SerialNumber);
            }
        }
        for (List < AssetInfo > Li: unCheckedInfoListForThousend) {
            for (AssetInfo Ai: Li) {
                if (Ai.rec_checkBox_c) {
                    system.debug('=====uncheck SerialNumber2:' + Ai.rec.SerialNumber);
                }
            }
        }
        if (ThousandFLG > 0) {
            this.unCheckedInfoList.clear();
            for (List < AssetInfo > Li: unCheckedInfoListForThousend) {
                for (AssetInfo Ai: Li) {
                    unCheckedInfoList.add(Ai);
                }
            }
        }
        for (AssetInfo ass: this.unCheckedInfoList) {
            if (ass.rec_checkBox_c) {
                system.debug('=====uncheck SerialNumber3:' + ass.rec.SerialNumber);
                tmpChecked.add(ass);
            } else {
                tmpUnChecked.add(ass);
            }
        }
        for (List < AssetInfo > Li: unCheckedInfoListForThousend) {
            for (AssetInfo Ai: Li) {
                if (Ai.rec_checkBox_c) {
                    system.debug('=====uncheck SerialNumber4:' + Ai.rec.SerialNumber);
                }
            }
        }
        this.checkedInfoList = new List < AssetInfo > ();
        for (AssetInfo ass: tmpChecked) {
            ass.lineNo = this.checkedInfoList.size();
            this.checkedInfoList.add(ass);
            // SWAG-AREBA8 start
            if (tmpDelInfoMap.containsKey(ass.rec.Id) == true) {
                tmpDelInfoMap.remove(ass.rec.Id);
            }
            // SWAG-AREBA8 end
        }
        for (AssetInfo ass: tmpNewRows) {
            ass.lineNo = this.checkedInfoList.size();
            this.checkedInfoList.add(ass);
        }
 
        this.unCheckedInfoList = new List < AssetInfo > ();
        this.unCheckedInfoList.addAll(tmpUnChecked);
        // SWAG-AREBA8 start
        for (AssetInfo uncheck: unCheckedInfoList) {
            if (tmpDelInfoMap.containsKey(uncheck.rec.Id) == false) {
                tmpDelInfoMap.put(uncheck.rec.Id, uncheck);
            }
        }
        // SWAG-AREBA8 end
        if (ThousandFLG > 0) {
            unCheckedInfoListForThousend.clear();
            List < AssetInfo > bufflist = new List < AssetInfo > ();
            for (AssetInfo ainfo: unCheckedInfoList) {
                bufflist.add(ainfo);
                if (bufflist.size() == GROUPMAX) {
                    unCheckedInfoListForThousend.add(bufflist);
                    bufflist.clear();
                }
            }
            unCheckedInfoListForThousend.add(bufflist);
        }
        getAssetFromHp();
        return null;
    }
 
    public PageReference showPDF() {
        alertMessage = '';
        isPDF = true;
        save();
        if (saveOK) {
            // irId = ir.Id;
            //update by rentx 20210913 start
            /*if (vm != null) {
                PageReference pageRef = new PageReference('/apex/OFSInsReportLayoutForVm?id=' + ir.Id);
                pageRef.setRedirect(true);
                return pageRef;
            }else {
                PageReference pageRef = new PageReference('/apex/OFSInsReportLayout?id=' + ir.Id);
                pageRef.setRedirect(true);
                return pageRef;
 
            }*/
            
            PageReference pageRef = new PageReference('/apex/InsReportPDFOuter?id=' + ir.Id);
            pageRef.setRedirect(true);
            return pageRef;
            //update by rentx 20210913 end
        } else {
            ir.Status__c = oldStatus;
        }
        return null;
    }
 
    public PageReference submit() {
        alertMessage = '';
        isSubmit = true;
        Savepoint sp = Database.setSavepoint();
        save();
        if (saveOK) {
            try {
                // 承認プロセス
                Approval.ProcessSubmitRequest psr = new Approval.ProcessSubmitRequest();
                Id ir_id = ir.id;
                psr.setObjectId(ir.id);
                Approval.ProcessResult submitResult = Approval.process(psr);
                ir = Database.query(this.settingSoql + ' from Inspection_Report__c where Id = :ir_id');
                ApexPages.addmessage(new ApexPages.message(ApexPages.severity.INFO, '报告书已提交'));
            } catch(Exception ex) {
                Database.rollback(sp);
                ir.Status__c = oldStatus;
                ApexPages.addMessages(ex);
                return null;
            }
        } else {
            ir.Status__c = oldStatus;
        }
        return null;
    }
 
    public PageReference saveBtn() {
        isPDF = false;
        isSubmit = false;
        save();
        if (saveOK) {
            ApexPages.addmessage(new ApexPages.message(ApexPages.severity.INFO, '保存好了'));
        } else {
            ir.Status__c = oldStatus;
        }
        return null;
    }
 
    /**
   * 保存
   */
    public PageReference save() {
        alertMessage = '';
        System.debug('OFSInsReportLayoutForVmController save start');
        system.debug('wql1:' + ir);
        saveOK = false;
        oldStatus = ir.Status__c;
        Boolean isIrNew = (ir.Id == null) ? true: false;
        // 保有設備のチェックは入力規則(Is_Same_Hospital)がやる
        /*
    if (!this.checkHpChange()) {
      ApexPages.addmessage(new ApexPages.message(ApexPages.severity.ERROR, '已选保有设备字段历史中已有数据的时候,不能更改医院。'));
      return null;
    }
    */
        if (vm != null && ir.Hospital__c != vm.Hospital__c) {
            ir.Hospital__c.addError('医院不正确 请刷新画面');
            return null;
        }
        //add by rentx 20210630
        if (vm != null && plan != null ) {
            //检测日需要在点检开始日之后
            if (plan.Planned_Start_Date__c != null && ir.Inspection_Date__c < plan.Planned_Start_Date__c) {
                ApexPages.addmessage(new ApexPages.message(ApexPages.severity.ERROR, '检测日错误 需要在点检开始日之后'));
                return null;
                
            }
            //针对一年多次点检录入的限制: 
            // 一年多次点检时 区间内新建点检报告书的[检测日]超过点检计划的[实施期限]时进行报错并无法保存
            //判断是否一年多次点检 取 维修合同上的'点检'来判断 2,3,4 属于多次点检
            /*不管是多次还是一次 都可以超过实施期限
            if ( plan.Planned_End_Date__c != null) {
                if (vm.Inspection_Time__c != null && vm.Inspection_Time__c != '0' && vm.Inspection_Time__c != '1') {
                    // gzw fix 20210913 start
                    // if (ir.Inspection_Date__c >= plan.Planned_End_Date__c) {
                    if (ir.Inspection_Date__c > plan.Planned_End_Date__c) {
                    // gzw fix 20210913 end
                        ApexPages.addmessage(new ApexPages.message(ApexPages.severity.ERROR, '检测日错误 需要在实施期限前'));
                        return null;
                    }
                }else {
                    //一年一次点检 区间内新建点检报告书的【检测日】超过点检计划的【实施期限】时可以继续录入。
                    //不做判断即可
                }   
            }*/
 
        }
        //错误信息展示
        Boolean isError = false;
        for (AssetInfo ai: checkedInfoList) {
            //之前的逻辑不变 只是做一个判断 
            // if (ai.isNew == true) {
                //设备状态 NG时 故障描述必填
                if (ai.ah.ItemStatus__c == 'NG' && String.isBlank(ai.ah.Diagnosis__c)) {
                    isError = true;
                    ai.ah.Diagnosis__c.addError('设备状态NG时,请填写故障描述!');
                }
                //设备状态 医院放弃时 放弃理由必填
                
                if (ai.ah.ItemStatus__c == '医院放弃' && (ai.ah.Abandonment_Reasons__c == null || ai.ah.Abandonment_Reasons__c == '')) {
                    isError = true;
                    ai.ah.Abandonment_Reasons__c.addError('设备状态为医院放弃时,请填写放弃理由!');
                }
            // }
 
        }
        if (isError) {
            return null;
        }
        //add by rentx 20210630
        if (timeCheck() != true) {
            return null;
        }
 
        if (isPDF) {
            ir.Status__c = 'PDF';
        }
 
        if (isSubmit) {
            ir.Status__c = '填写完毕';
        }
 
        Savepoint sp = Database.setSavepoint();
        try {
            // 部长经理总监
            if (ir.Reporter__c != null) {
                User target = [SELECT Id, Name, SalesManager__c, BuchangApprovalManagerSales__c, JingliApprovalManager__c, BuchangApprovalManager__c, ZongjianApprovalManager__c FROM User WHERE Id = :ir.Reporter__c];
                ir.SalesManager__c = target.SalesManager__c == null ? target.Id: target.SalesManager__c;
                ir.BuchangApprovalManagerSales__c = target.BuchangApprovalManagerSales__c == null ? target.Id: target.BuchangApprovalManagerSales__c;
                ir.JingliApprovalManager__c = target.JingliApprovalManager__c == null ? target.Id: target.JingliApprovalManager__c;
                ir.BuchangApprovalManager__c = target.BuchangApprovalManager__c == null ? target.Id: target.BuchangApprovalManager__c;
                ir.ZongjianApprovalManager__c = target.ZongjianApprovalManager__c == null ? target.Id: target.ZongjianApprovalManager__c;
            }
            //关联点检计划
            if (this.djId != null && this.djId != '') {
                ir.Inspectup_Plan__c = this.djId;
            }
 
            //设置点检报告书的记录类型 为 '合同点检  '
            ir.RecordTypeId = [select Id from RecordType where IsActive = true and SobjectType = 'Inspection_Report__c'and developername = 'ContractInspection'].Id;
 
            //管理维修合同
            if (this.vmId != null && this.vmId != '') {
                ir.Contract__c = this.vmId;
            }
            //wql 医院空值 upsert会报错
            if (ir.Hospital__c != null) {
                OFSInsReportAssetHistoryController.upsertInspection_Report(ir);
            }
            // irId = ir.Id;
        } catch(Exception e) {
            clearIrId(sp, e, isIrNew);
            return null;
        }
 
        // 日報からくる場合、保存時、EventCに書き戻す
        if (String.isBlank(pEventCId) == false) {
            try {
                Event__c ec = new Event__c(Id = pEventCId, InsReport_ID__c = ir.Id);
                update ec;
            } catch(Exception e) {
                clearIrId(sp, e, isIrNew);
                return null;
            }
        }
 
        //List<Inspection_Item__c> toUpsertAhs = new List<Inspection_Item__c>();
        List < Inspection_Item__c > toDeleteAhs = new List < Inspection_Item__c > ();
        List < Inspection_Item__c > manualDeleteAhs = new List < Inspection_Item__c > ();
        Map < Inspection_Item__c,
        AssetInfo > toUpsertAhsMap = new Map < Inspection_Item__c,
        AssetInfo > ();
        for (AssetInfo ai: checkedInfoList) {
            // 空行、製品を選択しない場合
            if (ai.isManual == true && ai.ah.Product_Manual__c == null) {
                // Idあれば削除
                if (ai.ah.Id != null) {
                    manualDeleteAhs.add(ai.ah);
                }
            }
            // データあり
            else {
                // 主従関係なので、新規の時のみInspection_ReportId__cを設定
                if (ai.isNew == true) {
                    ai.ah.Inspection_ReportId__c = ir.Id;
                }
                // TODO 明細を新規する時、名前を設定
                //toUpsertAhs.add(ai.ah);
                toUpsertAhsMap.put(ai.ah, ai);
                system.debug('OFSInsReportLayoutForVmController save toUpsertAhs:' + ai.ah.Id);
            }
 
        }
        // next event操作
        //---------------- HWAG-AVT9ZU 取消自动创建报告操作
        //if(handleEvent() == false) return null;
        List < Id > unCheckedAssetIds = new List < Id > ();
        // SWAG-AREBA8 start
        //for (AssetInfo ai :unCheckedInfoList) {
        for (AssetInfo ai: tmpDelInfoMap.values()) {
            unCheckedAssetIds.add(ai.rec.Id);
        }
        // SWAG-AREBA8 end
        toDeleteAhs = [select Id, AssetId__c from Inspection_Item__c where AssetId__c in :unCheckedAssetIds and Inspection_ReportId__c = :ir.Id];
 
        try {
            if (manualDeleteAhs.size() > 0) toDeleteAhs.addAll(manualDeleteAhs);
            OFSInsReportAssetHistoryController.deleteInspection_Item(ir, toDeleteAhs);
        } catch(Exception e) {
            clearIrId(sp, e, isIrNew);
            return null;
        }
 
        try {
            //OFSInsReportAssetHistoryController.upsertInspection_Item(ir, toUpsertAhs);
            OFSInsReportAssetHistoryController.upsertInspection_Item(ir, new List < Inspection_Item__c > (toUpsertAhsMap.keySet()));
        } catch(Exception e) {
            clearIrId(sp, e, isIrNew);
            for (Inspection_Item__c ah: toUpsertAhsMap.keySet()) {
                if (toUpsertAhsMap.get(ah).isNew == true) ah.Id = null;
            }
            return null;
        }
 
        saveOK = true;
        this.init();
        return null;
    }
    // save時、Excptionが発生した時の共通処理
    private void clearIrId(Savepoint sp, Exception e, Boolean isIrNew) {
        if (isIrNew) ir.Id = null;
        Database.rollback(sp);
        ApexPages.addMessages(e);
    }
 
    private Boolean checkHpChange() {
        Boolean hasCheckdInfo = false;
        for (AssetInfo ai: this.checkedInfoList) {
            if (ai.rec != null) {
                hasCheckdInfo = true;
                break;
            }
        }
 
        if (this.oldHospital != ir.Hospital__c && hasCheckdInfo == true) {
            return false;
        }
 
        return true;
    }
 
    public void makePageNo(Integer assetReCount) {
        nowAssetcount = 1;
        Integer aaa = 1;
        integer mods = math.mod(assetReCount, Integer.valueOf(System.Label.Asset_Maxcount));
        if (mods == 0) {
            aaa = assetReCount / Integer.valueOf(System.Label.Asset_Maxcount);
        } else {
            aaa = assetReCount / Integer.valueOf(System.Label.Asset_Maxcount) + 1;
        }
 
        nowAssetcount = aaa;
        //alertMessage = 'assetReCount +++' + assetReCount   + 'countorder' + countorder;
        if (countorder > nowAssetcount) {
            countorder = 1;
        }
    }
 
    // 取已选择资产的机身编码
    public void getAssetSerialNumber() {
        assetSerialNumberList = new List < String > ();
        assetSerialNumberList.clear();
        for (AssetInfo ai: this.checkedInfoList) {
            if (String.isNotEmpty(ai.ah.SerialNumber__c)) {
                assetSerialNumberList.add(ai.ah.SerialNumber__c);
            }
        }
    }
    // 下翻页
    public void DownPage() {
        isUpDown = false;
        if (countorder < nowAssetcount) {
            countorder++;
        }
        getAssetFromHp();
    }
    // 上翻页
    public void UpPage() {
        isUpDown = false;
        if (countorder == 1) {} else if (countorder <= nowAssetcount) {
            countorder--;
        }
        getAssetFromHp();
    }
 
    public void getAssetFromHp() {
 
        runCount++;
        assetSerialNumberList.clear();
        getAssetSerialNumber();
        // hpId ある && ir == null && name あるの場合、自動採番する
        if (ir.Id == null && ir.Name == null && ir.Hospital__c != null) {
            makeIrNo();
        }
        if (vm != null) {
            ir.Hospital__c = vm.Hospital__c;
        }
        unCheckedInfoListBuff = new List < AssetInfo > ();
        checkedInfoListBuff = new List < AssetInfo > ();
        unCheckedInfoListForThousend = new List < List < AssetInfo >> ();
        checkedInfoListForThousend = new List < List < AssetInfo >> ();
        this.oldHospital = ir.Hospital__c;
        if (isUpDown) {
            checkedInfoList = new List < AssetInfo > ();
            // 上のリストには、明細を全部入れよう
            for (Asset ar: ahMap.keySet()) {
                checkedInfoList.add(new AssetInfo(checkedInfoList.size(), ar, ahMap.get(ar)));
            }
        }
 
        unCheckedInfoList = new List < AssetInfo > ();
        String soqlconfim = this.makeSoqlconfim();
        List < Asset > assetRecordsconfim = Database.query(soqlconfim);
        //alertMessage = '未选保有设备行数' + assetRecordsconfim.size();
        makePageNo(assetRecordsconfim.size());
 
        // 取引先に繋がっている全部保有设备
        String soql = this.makeSoql();
        System.debug('soql +++++++' + soql);
        assetRecords = Database.query(soql);
        // 分页:因为集合变量在页面不能显示包含1000的元素,故分页实现;
        if (assetRecords.size() > 0) {
            for (Asset ar: assetRecords) {
                //add if-> (!assetsHasBeenCheckedMap.containsKey(ar.Id)) by rentx 20210707 //说明当前保有设备在当前维修合同下的其他点检报告书中点检了
                if (!assetsHasBeenCheckedMap.containsKey(ar.Id)) {
                    //urlの中のassetIdsがない、明細を変更しない
                    if (pAssetIds == null) {
                        //点検報告書にすでにある明細
                        if (ahIdMap.containsKey(ar.Id) == true) {
                            //checkedInfoList.add(new AssetInfo(checkedInfoList.size(), ar, ahMap.get(ar.Id)));
                            //他のAssetを全部未チェックリストにする
                        } else {
                            unCheckedInfoList.add(new AssetInfo(unCheckedInfoList.size(), ar));
                            unCheckedInfoListBuff.add(new AssetInfo(unCheckedInfoList.size(), ar));
                            if (unCheckedInfoListBuff.size() == GROUPMAX) {
                                unCheckedInfoListForThousend.add(unCheckedInfoListBuff);
                                unCheckedInfoListBuff = new List < AssetInfo > ();
                                system.debug('unCheckedInfoList###########' + unCheckedInfoList.size());
                            }
 
                        }
                    } else {
                        //urlの中のassetIdsをチェックする
                        if (assetMap.containsKey(ar.Id) == true) {
                            //点検報告書にすでにある明細
                            if (ahIdMap.containsKey(ar.Id) == true) {
                                //checkedInfoList.add(new AssetInfo(checkedInfoList.size(), ar, ahMap.get(ar.Id)));
                                //明細を新規する
                            } else {
                                checkedInfoList.add(new AssetInfo(checkedInfoList.size(), ar, ir));
                                checkedInfoListBuff.add(new AssetInfo(checkedInfoList.size(), ar, ir));
                                if (checkedInfoListBuff.size() == GROUPMAX) {
                                    checkedInfoListForThousend.add(checkedInfoListBuff);
                                    checkedInfoListBuff = new List < AssetInfo > ();
                                }
                            }
                            //他のAssetを全部未チェックリストにする
                        } else {
                            unCheckedInfoList.add(new AssetInfo(unCheckedInfoList.size(), ar));
                            unCheckedInfoListBuff.add(new AssetInfo(unCheckedInfoList.size(), ar));
                            if (unCheckedInfoListBuff.size() == GROUPMAX) {
                                unCheckedInfoListForThousend.add(unCheckedInfoListBuff);
                                unCheckedInfoListBuff = new List < AssetInfo > ();
                                system.debug('unCheckedInfoList###########' + unCheckedInfoList.size());
                            }
                        }
                    }
                }
            }
            //add for by rentx 202177 上面那个for循环已经放进了为点检过得设备 下面这个放待点检的设备 如果需要显灰滞后的话把这个循环放开 上面的那个判断也放开
            for (Asset ar: assetRecords) {
                //add if-> (!assetsHasBeenCheckedMap.containsKey(ar.Id)) by rentx 20210707 //说明当前保有设备在当前维修合同下的其他点检报告书中点检了
                if (assetsHasBeenCheckedMap.containsKey(ar.Id)) {
                    //urlの中のassetIdsがない、明細を変更しない
                    if (pAssetIds == null) {
                        //点検報告書にすでにある明細
                        if (ahIdMap.containsKey(ar.Id) == true) {
                            //checkedInfoList.add(new AssetInfo(checkedInfoList.size(), ar, ahMap.get(ar.Id)));
                            //他のAssetを全部未チェックリストにする
                        } else {
                            unCheckedInfoList.add(new AssetInfo(unCheckedInfoList.size(), ar, true));
                            unCheckedInfoListBuff.add(new AssetInfo(unCheckedInfoList.size(), ar, true));
                            if (unCheckedInfoListBuff.size() == GROUPMAX) {
                                unCheckedInfoListForThousend.add(unCheckedInfoListBuff);
                                unCheckedInfoListBuff = new List < AssetInfo > ();
                                system.debug('unCheckedInfoList###########' + unCheckedInfoList.size());
                            }
 
                        }
                    } else {
                        //urlの中のassetIdsをチェックする
                        if (assetMap.containsKey(ar.Id) == true) {
                            //点検報告書にすでにある明細
                            if (ahIdMap.containsKey(ar.Id) == true) {
                                //checkedInfoList.add(new AssetInfo(checkedInfoList.size(), ar, ahMap.get(ar.Id)));
                                //明細を新規する
                            } else {
                                checkedInfoList.add(new AssetInfo(checkedInfoList.size(), ar, ir));
                                checkedInfoListBuff.add(new AssetInfo(checkedInfoList.size(), ar, ir));
                                if (checkedInfoListBuff.size() == GROUPMAX) {
                                    checkedInfoListForThousend.add(checkedInfoListBuff);
                                    checkedInfoListBuff = new List < AssetInfo > ();
                                }
                            }
                            //他のAssetを全部未チェックリストにする
                        } else {
                            unCheckedInfoList.add(new AssetInfo(unCheckedInfoList.size(), ar, true));
                            unCheckedInfoListBuff.add(new AssetInfo(unCheckedInfoList.size(), ar, true));
                            if (unCheckedInfoListBuff.size() == GROUPMAX) {
                                unCheckedInfoListForThousend.add(unCheckedInfoListBuff);
                                unCheckedInfoListBuff = new List < AssetInfo > ();
                                system.debug('unCheckedInfoList###########' + unCheckedInfoList.size());
                            }
                        }
                    }
                }
            }
            //add by rentx 20210707 end
        }
 
        system.debug('unCheckedInfoListForThousend::::' + unCheckedInfoListForThousend);
        system.debug('unCheckedInfoList::::' + unCheckedInfoList.size());
        if (unCheckedInfoListForThousend != null) {
            ThousandFLG = unCheckedInfoListForThousend.size();
            checkedInfoListForThousend.add(checkedInfoListBuff);
            unCheckedInfoListForThousend.add(unCheckedInfoListBuff);
            //ThousandFLG = unCheckedInfoListForThousend.size();
        }
        system.debug('ThousandFLG::::' + ThousandFLG);
        if (isUpDown) {
            for (Inspection_Item__c ah: newAhList) {
                checkedInfoList.add(new AssetInfo(checkedInfoList.size(), ah));
            }
        }
        // 最後10行追加
        if (Schema.getGlobalDescribe().get('Inspection_Item__c').getDescribe().isCreateable() && isUpDown) {
            this.addNewRows();
        }
    }
 
    /*private Boolean handleEvent() {
    List<Inspection_Report__c> irQueryResults = [select NextInspection_Day__c, Inspection_Date__c, Next_StartTime__c, Next_EndTime__c
                              , Department__r.id, Department__r.Name, Hospital__r.Name
                              , Manual_Department__c, Name, Id, Event_ID__c
                             from Inspection_Report__c
                            where Id = :ir.Id];
    if (irQueryResults.size() < 0) {
      return false;
    }
    Inspection_Report__c insReport = irQueryResults[0];
    
    if (insReport.Next_StartTime__c == null
      || insReport.Next_EndTime__c == null
      || insReport.NextInspection_Day__c == null) {
      return true;
    }
    
    Event e = null;//event初期化
    //画面上は点検報告書新規の場合
    if (this.editFlag == false) {
      e = new Event();
    //画面上は既存点検報告書編集の場合
    } else {
      List< Event> eList = [ select id from Event where Id =:insReport.Event_ID__c];
      if (eList.size()>0) {
        e = eList[0];
      } else {
        //error
        //ApexPages.addmessage(new ApexPages.message(ApexPages.severity.ERROR, '没有找到相关联的活动'));
        return true;
      }
      if (insReport.Next_StartTime__c == null
        || insReport.Next_EndTime__c == null
        || insReport.NextInspection_Day__c == null) {
        try {
          delete e;
        } catch (Exception ex) {
          ApexPages.addmessages(ex);
          return false;
        }
      }
    }
 
    e.OwnerId = UserInfo.getUserId();
    e.ActivityDate = insReport.NextInspection_Day__c;
    e.StartDateTime = insReport.Next_StartTime__c;
    e.EndDateTime = insReport.Next_EndTime__c;
    e.Activity_Type2__c = HOSPITAL_STRING;
    e.Subject = '设备点检(上次点检单号:' + insReport.Name + ')';
 
    if (insReport.Department__c != null) {
      e.whatid__c = insReport.Department__r.id;
      e.Location = insReport.Department__r.Name;
    }
    if (String.isBlank(e.Location) == true) {
      e.Location = insReport.Hospital__r.Name + insReport.Manual_Department__c;
    }
 
    try {
      upsert e;
      insReport.Event_ID__c = e.Id;
      update insReport;
    } catch (Exception ex) {
      ApexPages.addmessages(ex);
      return false;
    }
    return true;
  }*/
 
    private Boolean timeCheck() {
        //TODO timeのフォーマットをチェック,入力規則にするかな
        try {
            if (ir.Inspection_Date__c != null && ir.StartHour_Page__c != null && ir.StartMinute_Page__c != null && ir.EndHour_Page__c != null && ir.EndMinute_Page__c != null) {
                ir.Inspection_StartTime__c = Datetime.newInstance(ir.Inspection_Date__c.year(), ir.Inspection_Date__c.month(), ir.Inspection_Date__c.day(), Integer.valueOf(ir.StartHour_Page__c), Integer.valueOf(ir.StartMinute_Page__c), 0);
                ir.Inspection_EndTime__c = Datetime.newInstance(ir.Inspection_Date__c.year(), ir.Inspection_Date__c.month(), ir.Inspection_Date__c.day(), Integer.valueOf(ir.EndHour_Page__c), Integer.valueOf(ir.EndMinute_Page__c), 0);
            } else {
                ir.Inspection_StartTime__c = null;
                ir.Inspection_EndTime__c = null;
            }
            if (ir.NextInspection_Day__c != null && ir.Next_StartHour_Page__c != null && ir.Next_StartMinute_Page__c != null && ir.Next_EndHour_Page__c != null && ir.Next_EndMinute_Page__c != null) {
                ir.Next_StartTime__c = Datetime.newInstance(ir.NextInspection_Day__c.year(), ir.NextInspection_Day__c.month(), ir.NextInspection_Day__c.day(), Integer.valueOf(ir.Next_StartHour_Page__c), Integer.valueOf(ir.Next_StartMinute_Page__c), 0);
                ir.Next_EndTime__c = Datetime.newInstance(ir.NextInspection_Day__c.year(), ir.NextInspection_Day__c.month(), ir.NextInspection_Day__c.day(), Integer.valueOf(ir.Next_EndHour_Page__c), Integer.valueOf(ir.Next_EndMinute_Page__c), 0);
            } else {
                ir.Next_StartTime__c = null;
                ir.Next_EndTime__c = null;
            }
        } catch(Exception e) {
            ApexPages.addmessage(new ApexPages.message(ApexPages.severity.ERROR, '请输入正确的时间'));
            return false;
        }
 
        return true;
    }
 
    // 检索按钮
    public PageReference searchBtn() {
        if (vm != null && ir.Hospital__c != vm.Hospital__c) {
            ir.Hospital__c.addError('医院不正确 请刷新画面');
            return null;
        }
        countorder = 1;
        //验证
        assetSerialNumberList.clear();
        getAssetSerialNumber();
        List < Asset > assetconfimList = getAssetconfim(text1, cond1, val1);
        // 获取assets
        List < Asset > assetList = getAsset(text1, cond1, val1);
        // 作成明细行
        getSortedUnCheckedInfoList(assetList);
        makePageNo(assetconfimList.size());
        // 排序用检索条件退避
        text1ForSort = text1;
        cond1ForSort = cond1;
        val1ForSort = val1;
        system.debug('=====unCheckedInfoList:' + unCheckedInfoList.size());
        for (AssetInfo Ai: unCheckedInfoList) {
            if (Ai.rec_checkBox_c) {
                system.debug('=====uncheck SerialNumber1:' + Ai.rec.SerialNumber);
            }
        }
        for (List < AssetInfo > Li: unCheckedInfoListForThousend) {
            for (AssetInfo Ai: Li) {
                if (Ai.rec_checkBox_c) {
                    system.debug('=====uncheck SerialNumber2:' + Ai.rec.SerialNumber);
                }
            }
        }
        return null;
    }
    // 明细排序
    public void sortTable() {
        // 排序
        if (this.sortKey == this.preSortKey) {
            // 方向が変わるのみ
            this.sortOrderAsc = !this.sortOrderAsc;
            this.sortOrder[Integer.valueOf(this.sortKey)] = (this.sortOrderAsc == true ? '↑': '↓');
        } else {
            if (preSortKey == '') {
                preSortKey = '0';
            }
            this.sortOrderAsc = true;
            this.sortOrder[Integer.valueOf(this.preSortKey)] = '';
            this.sortOrder[Integer.valueOf(this.sortKey)] = (this.sortOrderAsc == true ? '↑': '↓');
        }
        this.preSortKey = this.sortKey;
        // 获取排序后unCheckAsset
        isSoft = true;
        List < String > assetIdsrechList = new List < String > ();
        assetIdsrechList.clear();
        for (AssetInfo ai: this.UnCheckedInfoList) {
            if (String.isNotEmpty(ai.rec.SerialNumber)) {
                assetIdsrechList.add(ai.rec.SerialNumber);
            }
        }
        List < Asset > assetList = getAssetxiuz(assetIdsrechList);
        // 作成明细行
        getSortedUnCheckedInfoList(assetList);
    }
 
    private List < Asset > getAsset(String txt, String con, String val) {
        String soql = this.makeSoqlconfim();
        soql += makeTextSql(txt, con, val);
        //if(assetSerialNumberList.size() > 0){
        //  soql += ' AND SerialNumber not in '  + assetSerialNumberList  ;
        //}
        if (isSoft) {
            soql += ' order by ' + this.columus[Integer.valueOf(this.sortKey)] + ' ' + (this.sortOrderAsc == true ? 'asc nulls first': 'desc nulls last ');
        } else {
            soql += ' order by SerialNumber, Name, Department_Name__c, InstallDate';
        }
        soql += ' limit ' + System.Label.Asset_Maxcount;
        soql += ' OFFSET ' + (countorder - 1) * Integer.valueOf(System.Label.Asset_Maxcount);
        //soql += ' limit ' + System.Label.Asset_Maxcount;
        //soql += ' limit ' + (SELECT_LIMIT + 1);
        //system.debug('====soql:' + soql);
        return Database.query(soql);
    }
    //排序修正
    private List < Asset > getAssetxiuz(List < String > txt) {
        String soql = this.makeSoqlconfim();
        //if(txt.size() > 0){
        soql += ' AND SerialNumber in :txt';
        //}
        if (isSoft) {
            soql += ' order by ' + this.columus[Integer.valueOf(this.sortKey)] + ' ' + (this.sortOrderAsc == true ? 'asc nulls first': 'desc nulls last ');
        } else {
            soql += ' order by SerialNumber, Name, Department_Name__c, InstallDate';
        }
        //soql += ' limit ' + System.Label.Asset_Maxcount;
        //soql += ' OFFSET ' + (countorder - 1) * Integer.valueOf(System.Label.Asset_Maxcount);
        //soql += ' limit ' + System.Label.Asset_Maxcount;
        //soql += ' limit ' + (SELECT_LIMIT + 1);
        //system.debug('====soql:' + soql);
        return Database.query(soql);
    }
    //检索验证
    private List < Asset > getAssetconfim(String txt, String con, String val) {
        String soql = this.makeSoqlconfim();
        soql += makeTextSql(txt, con, val);
 
        if (isSoft) {
            soql += ' order by ' + this.columus[Integer.valueOf(this.sortKey)] + ' ' + (this.sortOrderAsc == true ? 'asc nulls first': 'desc nulls last ');
        } else {
            soql += ' order by SerialNumber, Name, Department_Name__c, InstallDate';
        }
        system.debug('====getAssetconfim:' + soql);
        return Database.query(soql);
    }
 
    private String makeSoqlconfim() {
        String sqlTail = '(\'';
        for (Integer i = 0; i < assetSerialNumberList.size(); i++) {
            if (i < assetSerialNumberList.size() - 1) {
                sqlTail += assetSerialNumberList[i] + '\',\'';
            } else {
                sqlTail += assetSerialNumberList[i] + '\')';
            }
        }
        String soql = 'SELECT Id, Name, Asset_situation__c, SerialNumber, Department_Name__c, Installation_Site__c, InstallDate, Asset_Owner__c, ';
        soql += 'Accumulation_Repair_Amount__c' + ', Maintenance_Price_Month__c, Room_Number__c, CurrentContract__c, CurrentContract__r.Management_Code__c, ';
        soql += 'Status, After_repair_last_internal_check_day__c, Final_Examination_Date__c' + ', Hospital__r.Name, Hospital__r.Id, Hospital__c, ';
        soql += 'Department_Class__r.Id, Department_Class__r.Name, Department_Class__c, Account.Id, Account.Name' + ' FROM Asset WHERE Status != \'廃棄\' ';
        soql += ' AND Status != \'未使用\' AND Category5__c != \'竞争对手\'';
        //+ ' and SerialNumber != \'asdf\'';
        //add by rentx 20210630
        if (vmId != null && vmId != '') {
            soql += ' AND Id in :vmAssIds ';
            // ApexPages.addmessage(new ApexPages.message(ApexPages.severity.ERROR, 'vmAssIds '+vmAssIds));
        }
        //add by rentx 20210630
        if (ir.Hospital__c == null) {
            soql += ' AND Hospital__c = \'\'';
        } else {
            soql += ' AND Hospital__c = \'' + ir.Hospital__c + '\'';
        }
 
        if (activeOn) {
            soql += ' AND Status = \'使用中\'';
        }
        if (assetSerialNumberList.size() > 0) {
            soql += ' AND SerialNumber not in ' + sqlTail;
        }
        return soql;
    }
 
    private String makeSoql() {
        String sqlTail = '(\'';
        for (Integer i = 0; i < assetSerialNumberList.size(); i++) {
            if (i < assetSerialNumberList.size() - 1) {
                sqlTail += assetSerialNumberList[i] + '\',\'';
            } else {
                sqlTail += assetSerialNumberList[i] + '\')';
            }
        }
        String soql = 'SELECT Id, Name, Asset_situation__c, SerialNumber, Department_Name__c, Installation_Site__c, InstallDate, Asset_Owner__c, ';
        soql += 'Accumulation_Repair_Amount__c' + ', Maintenance_Price_Month__c, Room_Number__c, CurrentContract__c, CurrentContract__r.Management_Code__c, ';
        soql += 'Status, After_repair_last_internal_check_day__c, Final_Examination_Date__c' + ', Hospital__r.Name, Hospital__r.Id, Hospital__c, ';
        soql += 'Department_Class__r.Id, Department_Class__r.Name, Department_Class__c, Account.Id, Account.Name' + ' FROM Asset WHERE Status != \'廃棄\' ';
        soql += 'AND Status != \'未使用\' AND Category5__c != \'竞争对手\'';
        //+ ' and SerialNumber != \'asdf\'';
        //add by rentx 20210630
        if (vmId != null && vmId != '') {
            soql += ' AND Id in :vmAssIds ';
        }
        //add by rentx 20210630
        if (ir.Hospital__c == null) {
            soql += ' AND Hospital__c = \'\'';
        } else {
            soql += ' AND Hospital__c = \'' + ir.Hospital__c + '\'';
        }
        if (activeOn) {
            soql += ' AND Status = \'使用中\'';
        }
        if (assetSerialNumberList.size() > 0) {
            soql += ' AND SerialNumber not in ' + sqlTail;
        }
        soql += ' limit ' + System.Label.Asset_Maxcount;
        soql += ' OFFSET ' + (countorder - 1) * Integer.valueOf(System.Label.Asset_Maxcount);
        return soql;
    }
    public String makeSoql(Boolean CountSizes) {
        String soql = ' SELECT count(Id) CntNum ' + ' FROM Asset WHERE Status != \'廃棄\' AND Status != \'未使用\' AND Category5__c != \'竞争对手\'';
        //+ ' and SerialNumber != \'asdf\'';
        if (ir.Hospital__c == null) {
            soql += ' AND Hospital__c = \'\'';
        } else {
            soql += ' AND Hospital__c = \'' + ir.Hospital__c + '\'';
        }
 
        if (activeOn) {
            soql += ' AND Status = \'使用中\'';
        }
        return soql;
    }
 
    // 拼接检索条件sql文
    private String makeTextSql(String txt1, String con, String val) {
        String soql = '';
        if (String.isBlank(con)) {
            con = 'equals';
        }
        // containsの場合、日報画面の病院検索を真似し、spaceで分けて、and検索
        // equalsの場合、SF標準の検索を真似し、「,」で分けて、or検索
        if (!String.isBlank(txt1)) {
            if ((con == 'contains' || con == 'notcontains') && val.contains(' ')) {
                String[] vals = val.split(' ');
                String cSql = '';
                for (String v: vals) {
                    cSql += this.makeTextSqlStr(txt1, con, v);
                }
                if (con == 'contains') {
                    soql += cSql;
                } else {
                    // notcontains
                    cSql = cSql.replaceAll(' and ', ') and (NOT ');
                    soql += cSql.substring(1) + ') ';
                }
            } else if ((con == 'equals' || con == 'notequals') && val.contains(',')) {
                String[] vals = val.split(',');
                if (vals.size() > 0) {
                    String txt = txt1.substring(2); // S:Name 、最初の2文字がタイプです
                    soql += ' and ( ';
                    for (String v: vals) {
                        if (con == 'equals') {
                            soql += txt + ' = \'' + v + '\' or ';
                        } else {
                            // notequals
                            soql += txt + ' <> \'' + v + '\' and ';
                        }
                    }
                    soql = soql.substring(0, soql.length() - 4);
                    soql += ')';
                }
            } else {
                String cSql = this.makeTextSqlStr(txt1, con, val);
                if (con != 'notcontains') {
                    soql += this.makeTextSqlStr(txt1, con, val);
                } else {
                    // notcontains
                    if (!String.isBlank(cSql)) {
                        cSql = cSql.substring(5); // ' and ' の5文字を外す
                        soql += ' and (NOT ' + cSql + ') ';
                    }
                }
            }
        }
        return soql;
    }
 
    /**
   * 文字列検索文を作成
   */
    private String makeTextSqlStr(String txt1, String con, String val) {
        String soql = '';
        if (!String.isBlank(txt1)) {
            String txt = txt1.substring(2);
            String colType = txt1.substring(0, 2);
            String tmpVal = val;
            // 空白の場合''にする
            if (String.isBlank(tmpVal)) {
                if (con == 'equals') {
                    //soql += ' and ' + txt + ' = ' + tmpVal;
                    soql += ' and ' + txt + ' = null';
                } else if (con == 'notequals') {
                    soql += ' and ' + txt + ' <> null';
                } else {
                    // 空白の場合、contains, notcontains と starts withは無視
                }
            } else {
                soql += ' and ' + txt;
                if (con == 'equals') {
                    if (colType == 'S:') {
                        soql += ' = \'' + tmpVal + '\'';
                    } else {
                        soql += ' = ' + tmpVal + ' ';
                    }
                } else if (con == 'notequals') {
                    if (colType == 'S:') {
                        soql += ' <> \'' + tmpVal + '\'';
                    } else {
                        soql += ' <> ' + tmpVal + ' ';
                    }
                } else if (con == 'contains' || con == 'notcontains') {
                    soql += ' like \'%' + String.escapeSingleQuotes(tmpVal.replaceAll('%', '\\%')) + '%\'';
                } else if (con == 'starts with') {
                    soql += ' like \'' + String.escapeSingleQuotes(tmpVal.replaceAll('%', '\\%')) + '%\'';
                } else {
                    if (colType == 'S:') {
                        soql += ' ' + con + '\'' + tmpVal + '\'';
                    } else {
                        soql += ' ' + con + ' ' + tmpVal + ' ';
                    }
                }
            }
        }
        return soql;
    }
 
    //
    private void getSortedUnCheckedInfoList(List < Asset > assetList) {
        Boolean overLimit = false;
        //Map<Id, AssetInfo> unCheckMap = new Map<Id, AssetInfo>();
        // 已经打勾的未选明细
        Map < Id,
        AssetInfo > markUpUnCheckMap = new Map < Id,
        AssetInfo > ();
        for (AssetInfo unCheckinfo: unCheckedInfoList) {
            //unCheckMap.put(unCheckinfo.rec.Id, unCheckinfo);
            // 打勾,视为优先显示明细
            if (unCheckinfo.rec_checkBox_c == true) {
                markUpUnCheckMap.put(unCheckinfo.rec.Id, unCheckinfo);
            }
        }
 
        // 优先显示明细放在最前面
        unCheckedInfoList = new List < AssetInfo > ();
        for (AssetInfo asInfo: markUpUnCheckMap.values()) {
            unCheckedInfoList.add(asInfo);
        }
 
        //add by rentx 20210707 维修合同下其他已存在明细放后面  这是'滞后'的代码 先注释掉了
        List < AssetInfo > tempIList = new List < AssetInfo > ();
        for (Asset asset: assetList) {
            if (assetsHasBeenCheckedMap.containsKey(asset.Id)) {
                tempIList.add(new AssetInfo(unCheckedInfoList.size(), asset, false));
            }
        }
        //add by rentx 20210707
 
        Integer selectCnt = unCheckedInfoList.size();
        for (Asset asset: assetList) {
            // 201を超えた場合前200のみを出す
            if (unCheckedInfoList.size() >= SELECT_LIMIT) {
                overLimit = true;
                break;
            }
            // if (markUpUnCheckMap.containsKey(asset.Id) == false) {
            if (markUpUnCheckMap.containsKey(asset.Id) == false && assetsHasBeenCheckedMap.containsKey(asset.Id) == false) {
                unCheckedInfoList.add(new AssetInfo(unCheckedInfoList.size(), asset));
            }
        }
        //add by rentx 20210707
        /*if (tempIList != null && tempIList.size() > 0) {
            unCheckedInfoList.addAll(tempIList);
        }*/
        //add by rentx 20210707 end 
        // 显示数据条数信息
        //if (overLimit) {
        //    ApexPages.addmessage(new ApexPages.message(ApexPages.severity.INFO, '数据超过' + Select_Limit + '条,只显示前' + Select_Limit + '条'));
        //} else {
        //    ApexPages.addmessage(new ApexPages.message(ApexPages.severity.INFO, '共有' + getRaesInfoListSize() + '条数据'));
        //}
    }
 
    class SectionBean {
        public String title {
            get;
            private set;
        }
        public Integer column {
            get;
            private set;
        }
        public Boolean showHeader {
            get;
            private set;
        }
        public String id {
            get;
            private set;
        }
        public List < SectionItem > leftSectionList {
            get;
            private set;
        }
        public List < SectionItem > rightSectionList {
            get;
            private set;
        }
        public Boolean isTop {
            get;
            set;
        }
 
        // leftとrightのサイズ違う場合、最後空のSectionItemを追加
        public List < SectionItem > getSectionItemList() {
            List < SectionItem > sectionItemList = new List < SectionItem > ();
            Integer lCnt = leftSectionList.size();
            Integer rCnt = rightSectionList.size();
            if (column == 1) {
                return leftSectionList;
            } else {
                for (Integer i = 0; i < Math.max(lCnt, rCnt); i++) {
                    if (lCnt <= i) {
                        sectionItemList.add(new SectionItem());
                    } else {
                        sectionItemList.add(leftSectionList[i]);
                    }
                    if (rCnt <= i) {
                        sectionItemList.add(new SectionItem());
                    } else {
                        sectionItemList.add(rightSectionList[i]);
                    }
                }
            }
            return sectionItemList;
        }
 
        public SectionBean(String jsonSection) {
            leftSectionList = new List < SectionItem > ();
            rightSectionList = new List < SectionItem > ();
            Map < String,
            Object > m = (Map < String, Object > ) JSON.deserializeUntyped(jsonSection);
            id = String.valueOf(m.get('id'));
            title = '';
            if (m.get('title') != null) {
                title = String.valueOf(m.get('title'));
            }
            column = 1;
            if (m.get('column') != null) {
                column = Integer.valueOf(m.get('column'));
            }
            showHeader = true;
            if (m.get('showHeader') != null) {
                showHeader = Boolean.valueOf(m.get('showHeader'));
            }
        }
    }
 
    public class SectionItem {
        public String api {
            get;
            private set;
        }
        public List < String > apiList {
            get;
            private set;
        }
        public Map < String,
        String > apiLabelMap {
            get;
            private set;
        }
        public Map < String,
        String > apiStyleMap {
            get;
            private set;
        }
        public Map < String,
        Boolean > apiRequireMap {
            get;
            private set;
        }
        public Map < String,
        Boolean > apiInputMap {
            get;
            private set;
        }
        public String sectionId {
            get;
            private set;
        }
        public Boolean right {
            get;
            private set;
        }
        public Boolean isDummy {
            get;
            private set;
        }
        public Boolean isCustomize {
            get;
            private set;
        }
        public String customizeLable {
            get;
            private set;
        }
        public Boolean isCustomizeStyle {
            get;
            private set;
        }
        public Boolean isInput {
            get;
            private set;
        }
        public Boolean isRequired {
            get;
            private set;
        }
        public String width {
            get;
            private set;
        }
        public String height {
            get;
            private set;
        }
        public Integer index {
            get;
            private set;
        }
 
        public SectionItem() {
            isDummy = true;
        }
        public SectionItem(String jsonField, Integer idx) {
            isDummy = false;
            Map < String,
            Object > m = (Map < String, Object > ) JSON.deserializeUntyped(jsonField);
            apiList = new List < String > ();
            apiLabelMap = new Map < String,
            String > ();
            apiStyleMap = new Map < String,
            String > ();
            apiRequireMap = new Map < String,
            Boolean > ();
            apiInputMap = new Map < String,
            Boolean > ();
            index = idx;
            if (m.get('api') instanceof Map < String, Object > ) {
                Map < String,
                Object > aMap = (Map < String, Object > ) m.get('api');
                if (aMap.get('columns') instanceof List < Object > &&aMap.get('lables') instanceof List < Object > ) {
                    List < Object > cList = (List < Object > ) aMap.get('columns');
                    List < Object > lList = (List < Object > ) aMap.get('lables');
                    List < Object > sList = new List < Object > ();
                    List < Object > rList = new List < Object > ();
                    List < Object > iList = new List < Object > ();
                    if (aMap.get('styles') instanceof List < Object > ) {
                        sList = (List < Object > ) aMap.get('styles');
                        isCustomizeStyle = true;
                    } else {
                        isCustomizeStyle = false;
                    }
                    if (aMap.get('require') instanceof List < Object > ) {
                        rList = (List < Object > ) aMap.get('require');
                    }
                    if (aMap.get('isInput') instanceof List < Object > ) {
                        iList = (List < Object > ) aMap.get('isInput');
                    }
                    if (cList.size() != lList.size()) {
                        ApexPages.Message myMsg = new ApexPages.Message(ApexPages.Severity.ERROR, 'Error: Invalid CustomSettings about columns and labels.');
                        ApexPages.addMessage(myMsg);
                        return;
                    }
 
                    for (Integer i = 0; i < cList.size(); i++) {
                        apiList.add(String.valueOf(cList[i]));
                        apiLabelMap.put(String.valueOf(cList[i]), String.valueOf(lList[i]));
                        if (sList != null && sList.size() > 0 && sList[i] != null) {
                            apiStyleMap.put(String.valueOf(cList[i]), String.valueOf(sList[i]));
                        } else {
                            apiStyleMap.put(String.valueOf(cList[i]), '');
                        }
                        // require
                        if (rList != null && rList.size() > 0 && rList[i] != null) {
                            apiRequireMap.put(String.valueOf(cList[i]), Boolean.valueOf(rList[i]));
                        } else {
                            apiRequireMap.put(String.valueOf(cList[i]), false);
                        }
                        // input
                        if (iList != null && iList.size() > 0 && iList[i] != null) {
                            apiInputMap.put(String.valueOf(cList[i]), Boolean.valueOf(iList[i]));
                        } else {
                            apiInputMap.put(String.valueOf(cList[i]), false);
                        }
                    }
                } else {
                    apiList.add(String.valueOf(aMap.get('columns')));
                    apiLabelMap.put(String.valueOf(aMap.get('columns')), String.valueOf(aMap.get('lables')));
                    apiStyleMap.put(String.valueOf(aMap.get('columns')), '');
                }
 
                isCustomize = true;
            } else {
                api = String.valueOf(m.get('api'));
                apiList.add(String.valueOf(api));
                isCustomize = false;
            }
            if (m.get('lable') != null) {
                customizeLable = String.valueOf(m.get('lable'));
                if (String.isBlank(customizeLable)) {
                    customizeLable = null;
                }
            }
            if (m.get('width') != null) {
                width = String.valueOf(m.get('width'));
            }
            if (m.get('height') != null) {
                height = String.valueOf(m.get('height'));
            }
            sectionId = String.valueOf(m.get('sectionId'));
            if (m.get('right') != null) {
                right = Boolean.valueOf(m.get('right'));
            } else {
                right = false;
            }
            if (m.get('isInput') != null) {
                isInput = Boolean.valueOf(m.get('isInput'));
            } else {
                isInput = false;
            }
            if (m.get('require') != null) {
                isRequired = Boolean.valueOf(m.get('require'));
            } else {
                isRequired = false;
            }
        }
        public Boolean isRight() {
            return this.right;
        }
        public String getSectionId() {
            return this.sectionId;
        }
        public String getApi() {
            return this.api;
        }
        public List < String > getApiList() {
            return this.apiList;
        }
    }
 
    public class AssetInfo {
        public Integer lineNo {
            get;
            private set;
        }
        public Boolean rec_checkBox_c {
            get;
            set;
        }
        public Asset rec {
            get;
            set;
        }
        public Inspection_Item__c ah {
            get;
            set;
        }
        public Boolean isNew {
            get;
            private set;
        }
        public Boolean isManual {
            get;
            set;
        }
        public Boolean isdisAbled {
            get;
            set;
        }
        public Id getRecId() {
            Id rtn = null;
            if (rec != null) {
                rtn = rec.Id;
            }
            return rtn;
        }
        public void setRecId(Id value) {
            // なにもしない
        }
 
        // Manual専用(空行)
        public AssetInfo(Integer lineNo) {
            this.lineNo = lineNo;
            this.rec = null;
            this.ah = new Inspection_Item__c();
            this.isManual = true;
            this.rec_checkBox_c = false;
            this.isNew = true;
            this.isdisAbled = false;
            //设备状态默认全OK add by rentx 20210826 start
            this.ah.ItemStatus__c = 'OK';
            //设备状态默认全OK add by rentx 20210826 end 
        }
        // Manual専用(製品選択済み)
        public AssetInfo(Integer lineNo, Inspection_Item__c ah) {
            this.lineNo = lineNo;
            this.rec = null;
            this.ah = ah;
            this.isManual = true;
            this.rec_checkBox_c = false;
            this.isdisAbled = false;
            //设备状态默认全OK add by rentx 20210826 start
            this.ah.ItemStatus__c = ah.ItemStatus__c == '' ? 'OK' : ah.ItemStatus__c;
            //设备状态默认全OK add by rentx 20210826 end 
        }
        // チェックされてない
        public AssetInfo(Integer lineNo, Asset record) {
            this.lineNo = lineNo;
            this.rec = record;
            this.ah = new Inspection_Item__c(AssetId__c = record.Id, SerialNumber__c = record.SerialNumber, Maintance_Static_His__c = record.CurrentContract__c);
            //设备状态默认全OK add by rentx 20210826 start
            this.ah.ItemStatus__c = 'OK';
            //设备状态默认全OK add by rentx 20210826 end 
            this.isManual = false;
            this.rec_checkBox_c = false;
            this.isNew = true;
            this.isdisAbled = false;
        }
        //チェックされてる。報告書が既にある、明細を新追加する
        public AssetInfo(Integer lineNo, Asset record, Inspection_Report__c ir) {
            this.lineNo = lineNo;
            this.rec = record;
            this.ah = new Inspection_Item__c(AssetId__c = record.Id, Inspection_ReportId__c = ir.Id, SerialNumber__c = record.SerialNumber, Maintance_Static_His__c = record.CurrentContract__c);
            //设备状态默认全OK add by rentx 20210826 start
            this.ah.ItemStatus__c = 'OK';
            //设备状态默认全OK add by rentx 20210826 end 
            this.isManual = false;
            this.rec_checkBox_c = true;
            this.isNew = true;
            this.isdisAbled = false;
        }
 
        //チェックされてる。報告書も明細も既にある
        public AssetInfo(Integer lineNo, Asset record, Inspection_Item__c ah) {
            this.lineNo = lineNo;
            this.rec = record;
            this.ah = ah;
            this.isManual = false;
            this.rec_checkBox_c = true;
            this.isdisAbled = false;
 
            //设备状态默认全OK add by rentx 20210826 start
            this.ah.ItemStatus__c = ah.ItemStatus__c == '' ? 'OK' : ah.ItemStatus__c;
            //设备状态默认全OK add by rentx 20210826 end 
        }
 
        //add by rentx 20210707 start
        public AssetInfo(Integer lineNo, Asset record, Boolean flag) {
            this.lineNo = lineNo;
            this.rec = record;
            this.ah = new Inspection_Item__c(AssetId__c = record.Id, SerialNumber__c = record.SerialNumber, Maintance_Static_His__c = record.CurrentContract__c);
 
            //设备状态默认全OK add by rentx 20210826 start
            this.ah.ItemStatus__c = 'OK';
            //设备状态默认全OK add by rentx 20210826 end 
            this.isManual = false;
            this.rec_checkBox_c = false;
            this.isNew = true;
            this.isdisAbled = true;
 
        }
        //add by rentx 20210707 end
    }
 
    WebService static Inspection_Report__c getInsInfotById(String strId) {
        return [select Name from Inspection_Report__c where Id = :strId];
    }
}