#
mrzhssss
2022-09-22 110f3977b399dd117ce1af49ca792d602e2ba9a9
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
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using DevComponents.DotNetBar;
using System.Runtime.InteropServices;
using System.Threading;
using System.Data.SqlClient;
using com.force.json;
using System.Diagnostics;
using DevComponents.DotNetBar.Controls;
 
namespace WCS
{
    public partial class main : Office2007Form
    {
        //private static Process p;
        //Point formPoint;//记录窗体的位置
        //Point mousePoint;
        //int h1 = 0, h2 = 0, tag = 0, tag1 = 0;
        [DllImport("kernel32")]
        private static extern int GetPrivateProfileString(string section, string key, string def, StringBuilder retVal, int size, string filePath);
        //[DllImport("kernel32")]
        //private static extern long WritePrivateProfileString(string section, string key, string val, string filePath);
        //[DllImport("kernel32.dll")]
        //public extern static int GetPrivateProfileString(string segName, string keyName, string sDefault, StringBuilder buffer, int nSize, string fileName);
 
        //public extern static int GetPrivateProfileStringA(string segName, string keyName, string sDefault, byte[] buffer, int iLen, string fileName); // ANSI版本
        private Point mouseOff;//鼠标移动位置变量
        private bool leftFlag;//鼠标是否为左键
        public main()
        {
            InitializeComponent();
        }
 
        #region 系统初始化加载,load事件
        private void Form1_Load(object sender, EventArgs e)
        {
            try
            {
                #region   初始化主控图控件
                //panel_left.Parent = panel_plc_top;
                //panel_main_logo.Parent = panel_main;
                //panel_barcode.Parent = this;
                //panel_led.Parent = this;
                //panel_crn_top.Parent = this;
                //panel_plc_top.Parent = this;
                //panel_main.Parent = this;
                //panel_menu.Parent = panel_min_map;
                //panel_main.Dock = DockStyle.Fill;
                //panel_main.BringToFront();
 
                tc_main.SizeMode = TabSizeMode.Fixed;
                tc_main.ItemSize = new Size(0, 1);
                panel_left.Parent = panel_plc_top;
                panel_menu.Parent = panel_min_map;
 
                #endregion
                DateTime dt = DateTime.Now;
                toolStripStatusLabel1.Text = "  启动时间:" + dt.ToLongDateString() + " " + dt.ToLongTimeString() + "  ";
                toolStripStatusLabel2.Text = "  当前时间: " + dt.ToLongTimeString() + "  ";
                toolStripStatusLabel3.Text = "  中扬储存设备有限公司  ";
                t_run.Enabled = false;
                t_display.Enabled = false;
                timer1.Enabled = false;
                timer2.Enabled = false;
 
                ReadSystemIni();
 
                //string sql = " select * from APPS.CUX_INV_ONHAND_HSTORE_V where LPN_NUMBER='M041723045'";
                //DataView dv_mat = Common.ExecErpSelect(sql);
                //if (dv_mat != null && dv_mat.Count > 0)
                //{
                //    foreach (DataRowView drow in dv_mat)
                //    {
                //        //insertBasMatCode(dv_mat);
                //        string ls_mat_no = drow[0].ToString();
                //    }
                //}
 
                //if (Common.CheckDbConnect() == false)
                //{
                //    MessageBox.Show("数据库连接失败,请检查服务器(" + Common.serverIp + ")");
                //    Application.Exit();
                //}
 
                //初始化各按钮状态
                //sysrun.Enabled = false;
                //b_pasuecrn.Enabled = true;
 
                Common.InitSta();
                Common.InitCrn();
                Common.InitDev();
                //runcrn.Enabled = false;
 
                initMainMap();
                initCrnMap();
                initPLCMap();
                //initUpdateMap();
 
                #region 注释,主控图画面初始显示
                ////---------------堆垛机画面初始显示---------------------------
                //for (int kk = 0; kk < Common.ci_crn_count; kk++)
                //{
                //    ListViewItem lvi1 = new ListViewItem();
                //    lvi1.SubItems[0].Text = (kk + 1).ToString();
                //    lvi1.SubItems.Add("0");
                //    lvi1.SubItems.Add("0");
                //    lvi1.SubItems.Add("0");
                //    lvi1.SubItems.Add("0");
                //    lvi1.SubItems.Add("0");
                //    this.crnstslists.Items.Add(lvi1);
                //}
                #endregion
 
                initThread();
 
                t_run.Enabled = true;
                //t_update.Enabled = true;
                t_display.Enabled = true;
                timer1.Enabled = true;
                pictureBox1_Click(null, null);
            }
            catch (Exception em)
            {
                Common.WriteLogFile("WcsError", "Form1_Load--" + em.Message);
                MessageBox.Show("系统加载出错---" + em.Message);
                System.Environment.Exit(0);
            }
        }
 
        /// <summary>
        /// 加载配置
        /// </summary>
        private void ReadSystemIni()
        {
            StringBuilder tem = new StringBuilder(100);
            //得到设备端口来源
            try
            {
                //得到设备IP,端口号
                GetPrivateProfileString("System", "crn_ip", "", tem, 100, Common.sysinipath);
                string[] arrayCrnIp = tem.ToString().Trim().Split(';');
                if (arrayCrnIp.Length < Common.ci_crn_count)
                {
                    toolStripStatusLabel4.Text = "堆垛机IP参数读取错误";
                    return;
                }
                for (int i = 0; i < Common.ci_crn_count; i++)
                {
                    Common.gs_crn_ip[i] = arrayCrnIp[i];
                }
 
                GetPrivateProfileString("System", "plc_ip", "", tem, 100, Common.sysinipath);
                string[] arrayPlcIp = tem.ToString().Trim().Split(';');
                if (arrayPlcIp.Length < Common.ci_plc_count)
                {
                    toolStripStatusLabel4.Text = "PLC IP参数读取错误";
                    return;
                }
                for (int i = 0; i < Common.ci_plc_count; i++)
                {
                    Common.gs_plc_ip[i] = arrayPlcIp[i];
                }
 
                GetPrivateProfileString("System", "barcode_ip", "", tem, 100, Common.sysinipath);
                string[] arrayBarcodeIp = tem.ToString().Trim().Split(';');
                if (arrayBarcodeIp.Length < Common.ci_barcode_count)
                {
                    toolStripStatusLabel4.Text = "条码阅读器 IP参数读取错误";
                    return;
                }
                for (int i = 0; i < Common.ci_barcode_count; i++)
                {
                    Common.gs_barcode_ip[i] = arrayBarcodeIp[i];
                }
 
                GetPrivateProfileString("System", "led_ip", "", tem, 100, Common.sysinipath);
                string[] arrayLedIp = tem.ToString().Trim().Split(';');
                if (arrayLedIp.Length < Common.ci_led_count)
                {
                    toolStripStatusLabel4.Text = "LED IP参数读取错误";
                    return;
                }
                for (int i = 0; i < Common.ci_led_count; i++)
                {
                    Common.gs_led_ip[i] = arrayLedIp[i];
                }
 
                //GetPrivateProfileString("System", "scale_ip", "", tem, 100, Common.sysinipath);
                //string[] arrayScaleIp = tem.ToString().Trim().Split(';');
                //if (arrayScaleIp.Length < Common.ci_scale_count)
                //{
                //    toolStripStatusLabel4.Text = "磅秤 IP参数读取错误";
                //    return;
                //}
                //for (int i = 0; i < Common.ci_scale_count; i++)
                //{
                //    Common.gs_scale_ip[i] = arrayScaleIp[i];
                //}
 
                GetPrivateProfileString("System", "sysIp", "", tem, 100, Common.sysinipath);
                Common.serverIp = tem.ToString();
                Common.sqlcon = Common.sqlcon + "Data Source=" + Common.serverIp;
                //GetPrivateProfileString("System", "Ver", "", tem, 100, Common.sysinipath);
                //this.Text = this.Text + " " + tem.ToString();
 
                GetPrivateProfileString("System", "companyName", "", tem, 100, Common.sysinipath);
                Common.gs_companyName = tem.ToString();
                toolStripStatusLabel3.Text = "  " + Common.gs_companyName + "  ";
 
                GetPrivateProfileString("System", "scanTimeout", "", tem, 100, Common.sysinipath);
                Common.gd_scanTimeout = Convert.ToDouble(tem.ToString());
 
                //GetPrivateProfileString("System", "Ver", "", tem, 100, Common.sysinipath);
                //this.Text = this.Text + " " + tem.ToString();
 
                GetPrivateProfileString("System", "HttpUrl", "", tem, 100, Common.sysinipath);
                Common.HttpUrl = tem.ToString();
 
                GetPrivateProfileString("System", "wcsip", "", tem, 100, Common.sysinipath);
                Common.gs_wcs_ip = tem.ToString().Trim();
 
                GetPrivateProfileString("System", "wcsport", "", tem, 100, Common.sysinipath);
                Common.gs_wcs_port = Int32.Parse(tem.ToString());
 
            }
            catch (Exception em)
            {
                Common.WriteLogFile("WcsError", "ReadSystemIni--读取配置信息失败:" + em.Message);
                toolStripStatusLabel4.Text = "读取配置信息失败:" + em.Message;
                return;
            }
        }
 
        /// <summary>
        /// 初始化主控图显示画面
        /// </summary>
        private void initMainMap()
        {
            try
            {
                //----------------------------------初始化map画面控件--------------------------------
                for (int i = 0; i < this.Controls.Count; i++) ///main主窗口
                {
                    if (this.Controls[i] is System.Windows.Forms.TabControl)  ///tb_main 标签控件
                    {
                        for (int ii = 0; ii < this.Controls[i].Controls.Count; ii++)
                        {
                            if (this.Controls[i].Controls[ii] is System.Windows.Forms.TabPage)  //标签控件下的子控件
                            {
                                for (int iii = 0; iii < this.Controls[i].Controls[ii].Controls.Count; iii++)
                                {
                                    if (this.Controls[i].Controls[ii].Controls[iii] is System.Windows.Forms.Panel)  //子控件下的panel
                                    {
                                        for (int iiii = 0; iiii < this.Controls[i].Controls[ii].Controls[iii].Controls.Count; iiii++)
                                        {
                                            if (this.Controls[i].Controls[ii].Controls[iii].Controls[iiii] is System.Windows.Forms.Panel) //单个panel下的panel
                                            {
                                                for (int iiiii = 0; iiiii < this.Controls[i].Controls[ii].Controls[iii].Controls[iiii].Controls.Count; iiiii++)
                                                {
                                                    if (this.Controls[i].Controls[ii].Controls[iii].Controls[iiii].Controls[iiiii].Tag != null)
                                                    {
                                                        if (this.Controls[i].Controls[ii].Controls[iii].Controls[iiii].Controls[iiiii].Tag.ToString() != "")
                                                        {
                                                            if (Convert.ToInt32(this.Controls[i].Controls[ii].Controls[iii].Controls[iiii].Controls[iiiii].Tag) > 0)
                                                            {
                                                                Common.g_ari_staion_Component_seq[Common.GetStnSeq(Convert.ToInt32(this.Controls[i].Controls[ii].Controls[iii].Controls[iiii].Controls[iiiii].Tag))] = this.Controls[i].Controls[ii].Controls[iii].Controls[iiii].Controls[iiiii];
                                                                (this.Controls[i].Controls[ii].Controls[iii].Controls[iiii].Controls[iiiii] as DevComponents.DotNetBar.LabelX).MouseMove += new MouseEventHandler(stnMouseMove);
                                                                (this.Controls[i].Controls[ii].Controls[iii].Controls[iiii].Controls[iiiii] as DevComponents.DotNetBar.LabelX).MouseLeave += new EventHandler(stnMouseLeave);
                                                                (this.Controls[i].Controls[ii].Controls[iii].Controls[iiii].Controls[iiiii] as DevComponents.DotNetBar.LabelX).DoubleClick += new EventHandler(stn_DoubleClick);
                                                            }
                                                            else if (Convert.ToInt32(this.Controls[i].Controls[ii].Controls[iii].Controls[iiii].Controls[iiiii].Tag) < 0)
                                                            {
                                                                (this.Controls[i].Controls[ii].Controls[iii].Controls[iiii].Controls[iiiii] as DevComponents.DotNetBar.LabelX).MouseMove += new MouseEventHandler(crnMouseMove);
                                                                (this.Controls[i].Controls[ii].Controls[iii].Controls[iiii].Controls[iiiii] as DevComponents.DotNetBar.LabelX).MouseLeave += new EventHandler(crnMouseLeave);
                                                            }
                                                        }
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
 
 
                //for (int i = 0; i < this.Controls.Count; i++)
                //{
                //    if (this.Controls[i] is System.Windows.Forms.Panel)
                //    {
                //        for (int ii = 0; ii < this.Controls[i].Controls.Count; ii++)
                //        {
                //            if (this.Controls[i].Controls[ii] is System.Windows.Forms.Panel)
                //            {
                //                for (int iii = 0; iii < this.Controls[i].Controls[ii].Controls.Count; iii++)
                //                {
                //                    if (this.Controls[i].Controls[ii].Controls[iii].Tag != null)
                //                    {
                //                        if (this.Controls[i].Controls[ii].Controls[iii].Tag.ToString() != "")
                //                        {
                //                            if (Convert.ToInt32(this.Controls[i].Controls[ii].Controls[iii].Tag) > 0)
                //                            {
                //                                Common.g_ari_staion_Component_seq[Common.GetStnSeq(Convert.ToInt32(this.Controls[i].Controls[ii].Controls[iii].Tag))] = this.Controls[i].Controls[ii].Controls[iii];
                //                                (this.Controls[i].Controls[ii].Controls[iii] as DevComponents.DotNetBar.LabelX).MouseMove += new MouseEventHandler(stnMouseMove);
                //                                (this.Controls[i].Controls[ii].Controls[iii] as DevComponents.DotNetBar.LabelX).MouseLeave += new EventHandler(stnMouseLeave);
                //                                (this.Controls[i].Controls[ii].Controls[iii] as DevComponents.DotNetBar.LabelX).DoubleClick += new EventHandler(stn_DoubleClick);
                //                            }
                //                            else if (Convert.ToInt32(this.Controls[i].Controls[ii].Controls[iii].Tag) < 0)
                //                            {
                //                                (this.Controls[i].Controls[ii].Controls[iii] as DevComponents.DotNetBar.LabelX).MouseMove += new MouseEventHandler(crnMouseMove);
                //                                (this.Controls[i].Controls[ii].Controls[iii] as DevComponents.DotNetBar.LabelX).MouseLeave += new EventHandler(crnMouseLeave);
                //                            }
                //                        }
                //                    }
                //                }
                //            }
                //        }
                //    }
 
                //}
 
 
 
 
                #region  遍历控件
                //for (int i = 0; i < this.Controls.Count; i++)
                //{
                //    //ls_eee = this.Controls[i].Name.ToString();
                //    if (this.Controls[i] is DevComponents.DotNetBar.SuperTabControl)
                //    {
                //        for (int ii = 0; ii < this.Controls[i].Controls.Count; ii++)
                //        {
                //            //ls_eee = this.Controls[i].Controls[ii].Name.ToString();
                //            if (this.Controls[i].Controls[ii] is DevComponents.DotNetBar.SuperTabControlPanel)
                //            {
                //                for (int iii = 0; iii < this.Controls[i].Controls[ii].Controls.Count; iii++)
                //                {
                //                    if (this.Controls[i].Controls[ii].Controls[iii] is DevComponents.DotNetBar.PanelEx)
                //                    {
                //                        //ls_eee = this.Controls[i].Controls[ii].Controls[iii].Name.ToString();
                //                        for (int iiii = 0; iiii < this.Controls[i].Controls[ii].Controls[iii].Controls.Count; iiii++)
                //                        {
                //                            if (this.Controls[i].Controls[ii].Controls[iii].Controls[iiii] is DevComponents.DotNetBar.LabelX)
                //                            {
                //                                if (this.Controls[i].Controls[ii].Controls[iii].Controls[iiii].Tag != null)
                //                                {
                //                                    if (this.Controls[i].Controls[ii].Controls[iii].Controls[iiii].Tag.ToString() != "")
                //                                    {
                //                                        if (Convert.ToInt32(this.Controls[i].Controls[ii].Controls[iii].Controls[iiii].Tag) > 0)
                //                                        {
                //                                            Common.g_ari_staion_Component_seq[Common.GetStnSeq(Convert.ToInt32(this.Controls[i].Controls[ii].Controls[iii].Controls[iiii].Tag))] = this.Controls[i].Controls[ii].Controls[iii].Controls[iiii];
                //                                            (this.Controls[i].Controls[ii].Controls[iii].Controls[iiii] as DevComponents.DotNetBar.LabelX).MouseMove += new MouseEventHandler(stnMouseMove);
                //                                            (this.Controls[i].Controls[ii].Controls[iii].Controls[iiii] as DevComponents.DotNetBar.LabelX).MouseLeave += new EventHandler(stnMouseLeave);
                //                                            (this.Controls[i].Controls[ii].Controls[iii].Controls[iiii] as DevComponents.DotNetBar.LabelX).DoubleClick += new EventHandler(stn_DoubleClick);
                //                                            //if (Convert.ToInt32(this.maps.Controls[i].Controls[ii].Tag)>210)
                //                                            //{
                //                                            //    MessageBox.Show(this.maps.Controls[i].Controls[ii].Tag.ToString());
                //                                            //}
                //                                        }
                //                                        else if (Convert.ToInt32(this.Controls[i].Controls[ii].Controls[iii].Controls[iiii].Tag) < 0)
                //                                        {
                //                                            (this.Controls[i].Controls[ii].Controls[iii].Controls[iiii] as DevComponents.DotNetBar.LabelX).MouseMove += new MouseEventHandler(crnMouseMove);
                //                                            (this.Controls[i].Controls[ii].Controls[iii].Controls[iiii] as DevComponents.DotNetBar.LabelX).MouseLeave += new EventHandler(crnMouseLeave);
                //                                        }
                //                                    }
                //                                }
                //                            }
                //                        }
                //                    }
 
 
                //                }
                //            }
                //        }
                //    }
                //}
                #endregion
            }
            catch (Exception em)
            {
                Common.WriteLogFile("WcsError", "initMainMap--初始化主控图界面失败:" + em.Message);
                toolStripStatusLabel4.Text = "初始化主控图界面失败:" + em.Message;
            }
        }
 
 
 
        /// <summary>
        /// 初始化堆垛机显示画面
        /// </summary>
        private void initCrnMap()
        {
            try
            {
                //堆垛机状态位信息gridview初始化
                dgv_crnsts.DefaultCellStyle.SelectionForeColor = Color.Black;
                dgv_crnsts.DefaultCellStyle.SelectionBackColor = Color.White;
                dgv_crnsts.DefaultCellStyle.ForeColor = Color.Black;
                dgv_crnsts.DefaultCellStyle.BackColor = Color.White;
                dgv_crnsts.DefaultCellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
                for (int i = 0; i < Common.ci_crn_count - 1; i++)
                {
                    dgv_crnsts.Rows.Add();
                }
                for (int i = 0; i < dgv_crnsts.Rows.Count; i++)
                {
                    dgv_crnsts["col_CrnNo", i].Value = i + 1;
                }
                //堆垛机工作状态初始化
                crnlistdata.Columns.Add("堆垛机", 56, HorizontalAlignment.Center);
                crnlistdata.Columns.Add("状态", 120, HorizontalAlignment.Center);
                crnlistdata.Columns.Add("工作号", 58, HorizontalAlignment.Center);
                crnlistdata.Columns.Add("源站", 50, HorizontalAlignment.Center);
                crnlistdata.Columns.Add("目标站", 56, HorizontalAlignment.Center);
                crnlistdata.Columns.Add("源库位", 70, HorizontalAlignment.Center);
                crnlistdata.Columns.Add("目标库位", 70, HorizontalAlignment.Center);
                crnlistdata.Columns.Add("异常", 130, HorizontalAlignment.Center);
                crnlistdata.Columns.Add("原点", 44, HorizontalAlignment.Center);
                crnlistdata.Columns.Add("命令", 132, HorizontalAlignment.Center);
                crnlistdata.Columns.Add("走行速度(m/min)", 118, HorizontalAlignment.Center);
                crnlistdata.Columns.Add("升降速度(m/min)", 118, HorizontalAlignment.Center);
                crnlistdata.Columns.Add("叉牙速度(m/min)", 118, HorizontalAlignment.Center);
                crnlistdata.Columns.Add("走行距离(Km)", 97, HorizontalAlignment.Center);
                crnlistdata.Columns.Add("升降距离(Km)", 97, HorizontalAlignment.Center);
                crnlistdata.Columns.Add("走行时长(H)", 90, HorizontalAlignment.Center);
                crnlistdata.Columns.Add("升降时长(H)", 90, HorizontalAlignment.Center);
 
                for (int i = 0; i < Common.ci_crn_count; i++)
                {
                    ListViewItem lvi = new ListViewItem();
                    lvi.SubItems[0].Text = Common.crn_i_crnno[i].ToString();
                    lvi.SubItems.Add(Common.crn_i_crn_sts[i].ToString());
                    lvi.SubItems.Add(Common.crn_i_Wrkno[i].ToString());
                    lvi.SubItems.Add(Common.crn_i_fstn[i].ToString());
                    lvi.SubItems.Add(Common.crn_i_tstn[i].ToString());
                    lvi.SubItems.Add(Common.crn_s_Flocno[i]);
                    lvi.SubItems.Add(Common.crn_s_Tlocno[i]);
                    lvi.SubItems.Add(Common.crn_i_Errcod[i].ToString());
                    lvi.SubItems.Add(Common.crn_i_onHP[i].ToString());
                    lvi.SubItems.Add(Common.gs_crncmd[i]);
                    lvi.SubItems.Add(Common.WalkSpeed[i].ToString());
                    lvi.SubItems.Add(Common.LiftSpeed[i].ToString());
                    lvi.SubItems.Add(Common.ForkSpeed[i].ToString());
                    lvi.SubItems.Add(Common.XDistance[i].ToString());
                    lvi.SubItems.Add(Common.YDistance[i].ToString());
                    lvi.SubItems.Add(Common.XDuration[i].ToString());
                    lvi.SubItems.Add(Common.YDuration[i].ToString());
 
                    this.crnlistdata.Items.Add(lvi);
                    Common.gi_crnstn[i] = 1;
                    Common.gs_crn_err_pre[i] = "0";
                }
 
                s1.Style.BackColor1.Color = Color.Green;
                s1.Style.BackColor2.Color = Color.Green;
                s2.Style.BackColor1.Color = Color.Green;
                s2.Style.BackColor2.Color = Color.Green;
 
                s3.Style.BackColor1.Color = Color.Green;
                s3.Style.BackColor2.Color = Color.Green;
                tb_sendtocrn1.Text = "";
                tb_sendtocrn2.Text = "";
 
                for (int i = 0; i < Common.ci_crn_count; i++)
                {
                    Common.gs_crnlastio[i] = "I";
                    Common.gs_crncmd[i] = "";
                    Common.crn_s_commandstr[i] = "";
                    Common.gi_crn_iotype[i] = 0;
                }
            }
            catch (Exception em)
            {
                Common.WriteLogFile("WcsError", "initCrnMap--初始化堆垛机界面失败:" + em.Message);
                toolStripStatusLabel4.Text = "初始化堆垛机界面失败:" + em.Message;
            }
        }
 
        /// <summary>
        /// 初始化PLC显示画面
        /// </summary>
        private void initPLCMap()
        {
            try
            {
                sta_qty.Text = Common.ci_sta_count.ToString();
                //初始化PLC站点信息
                for (int i = 0; i < Common.ci_plc_count; i++)
                {
                    if (i == 0)
                    {
                        for (int j = 1; j <= Common.ci_sta_count; j++)
                        {
                            ListViewItem lvi = new ListViewItem();
                            lvi.SubItems[0].Text = Common.plc_s_dev_no[i, j - 1].ToString();
                            lvi.SubItems.Add(Common.plc_i_Wrk_no[i, j - 1].ToString());
                            lvi.SubItems.Add(Common.plc_s_autoing[i, j - 1].ToString());
                            lvi.SubItems.Add(Common.plc_s_loading[i, j - 1].ToString());
                            lvi.SubItems.Add(Common.plc_s_canining[i, j - 1]);
                            lvi.SubItems.Add(Common.plc_s_canouting[i, j - 1]);
                            lvi.SubItems.Add(Common.plc_s_inreq1[i, j - 1]);
                            lvi.SubItems.Add(Common.plc_s_inreq2[i, j - 1]);
                            //lvi.SubItems.Add(Common.plc_s_loctype[i, j - 1]);
                            lvi.SubItems.Add("");
                            lvi.SubItems.Add(Common.plc_s_next_stn[i, j - 1]);
                            (this.Controls.Find("lv_plcdevsts" + (i + 1).ToString(), true)[0] as ListView).Items.Add(lvi);
                        }
                    }
                    //if (i == 1)
                    //{
                    //    for (int j = 31; j <= Common.ci_sta_count; j++)
                    //    {
                    //        ListViewItem lvi = new ListViewItem();
                    //        lvi.SubItems[0].Text = Common.plc_s_dev_no[i, j - 1].ToString();
                    //        lvi.SubItems.Add(Common.plc_i_Wrk_no[i, j - 1].ToString());
                    //        lvi.SubItems.Add(Common.plc_s_autoing[i, j - 1].ToString());
                    //        lvi.SubItems.Add(Common.plc_s_loading[i, j - 1].ToString());
                    //        lvi.SubItems.Add(Common.plc_s_canining[i, j - 1]);
                    //        lvi.SubItems.Add(Common.plc_s_canouting[i, j - 1]);
                    //        lvi.SubItems.Add(Common.plc_s_inreq1[i, j - 1]);
                    //        lvi.SubItems.Add(Common.plc_s_inreq2[i, j - 1]);
                    //        lvi.SubItems.Add(Common.plc_s_loctype[i, j - 1]);
                    //        lvi.SubItems.Add(Common.plc_s_next_stn[i, j - 1]);
                    //        (this.Controls.Find("lv_plcdevsts" + i.ToString(), true)[0] as ListView).Items.Add(lvi);
                    //    }
                    //}
                }
 
                //初始化PLC错误信息
                try
                {
                    DataView dv1 = Common.ExecAsrsSelect("select error_desc from dbo.asr_bas_plcerror order by error_code");
                    if (dv1 != null && dv1.Count > 0)
                    {
                        //ListViewItem lvi = new ListViewItem();
                        //lv_PlcError.Columns.Add("序号", 50, HorizontalAlignment.Right);
                        //lv_PlcError.Columns.Add("PLC错误描述", 400, HorizontalAlignment.Left);
                        //lv_PlcError.Columns.Add("错误", 50, HorizontalAlignment.Center);
                        int i = 0;
                        Common.ci_plcerrcount = dv1.Count;
                        Common.gs_PlcErrDesc = new string[Common.ci_plcerrcount];
                        Common.plcerr = new string[Common.ci_plcerrcount];
                        foreach (DataRowView drv1 in dv1)
                        {
                            Common.gs_PlcErrDesc[i] = drv1[0].ToString();
                            ListViewItem lvi = lv_PlcAError.Items.Add((lv_PlcAError.Items.Count + 1).ToString());
                            lvi.SubItems.Add(Common.gs_PlcErrDesc[i]);
                            lvi.SubItems.Add("N");
                            i++;
                        }
                        //初始化plc异常
                        for (int j = 0; j < Common.ci_plcerrcount; j++)
                        {
                            Common.plcerr[j] = "N";
                            //Common.s_plc_err_count1[j] = "N";
                            //Class1.s_plc_err_count2[j] = "N";
                        }
                    }
                }
                catch (Exception em)
                {
                    Common.WriteLogFile("WcsError", "initPLCMap--读取dbo.asr_bas_plcerror失败:" + em.Message);
                }
                sendtoplc1.Text = "";
 
            }
            catch (Exception em)
            {
                Common.WriteLogFile("WcsError", "initPLCMap--初始化PLC界面失败:" + em.Message);
                toolStripStatusLabel4.Text = "初始化PLC界面失败:" + em.Message;
            }
        }
 
        /// <summary>
        /// 初始化回报显示画面
        /// </summary>
        private void initUpdateMap()
        {
            try
            {
                //lb_barcode.Text = "";
            }
            catch (Exception em)
            {
                Common.WriteLogFile("WcsError", "initUpdateMap--初始化回报显示画面失败:" + em.Message);
                toolStripStatusLabel4.Text = "初始化回报显示画面失败:" + em.Message;
            }
        }
 
        /// <summary>
        /// 初始化设备线程
        /// </summary>
        private void initThread()
        {
            try
            {
                //初始化堆垛机并启动堆垛机线程
                for (int i = 0; i < Common.ci_crn_count; i++)
                {
                    CraneThread crn = new CraneThread(i + 1, Common.gs_crn_ip[i], 102, this);
                    //crn1.crncmdlist = this.cmdanalysis1;
                    //crn.crnstslist = this.crnstslists;
                    crn.tb = this.responsecrn1;
                    crn.dgv_crnsts = this.dgv_crnsts;
                    crn.tb_sendtocrn = this.Controls.Find("tb_sendtocrn" + (i + 1).ToString(), true)[0] as TextBoxX;
                }
 
                ////初始化并启动plc线程
                PlcAThread plcA = new PlcAThread(1, Common.gs_plc_ip[0], 102, this);
                plcA.plclist = lv_plcdevsts1;
                plcA.tb = plcresponse1;
                plcA.sendtoplc = this.sendtoplc1;
                //PlcBThread plcB = new PlcBThread(2, Common.gs_plc_ip[1], 502, this);
                //plcB.plclist = lv_plcdevsts1;
                //plcB.tb = plcresponse1;
                //plcB.sendtoplc = this.sendtoplc2;
 
                //初始化并启动条码线程
                //for (int i = 0; i < Common.ci_barcode_count; i++)
                //{
                //    BarcodeThread barcode = new BarcodeThread(i + 1, Common.gs_barcode_ip[i], 2111, this);
                //    barcode.lb_barcode = this.lb_barcode;
                //    barcode.barcodedisplay = this.Controls.Find("lv_barcode" + (i + 1).ToString(), true)[0] as ListBox;
                //}
 
                //初始化并启动LED线程
                for (int i = 0; i < Common.ci_led_count; i++)
                {
                    LedThread led = new LedThread(i + 1, Common.gs_led_ip[i], 5005);
                    led.responseled = this.responseled;
                    led.tb_sendtoled = this.Controls.Find("tb_sendtoled" + (i + 1).ToString(), true)[0] as DevComponents.DotNetBar.Controls.TextBoxX;
                    //led.responseled = this.Controls.Find("lv_barcode" + (i + 1).ToString(), true)[0] as ListBox;
                }
 
                ////初始化并启动磅称线程
                //for (int i = 0; i < Common.ci_scale_count; i++)
                //{
                //    ScaleTcpThread scale = new ScaleTcpThread(i + 1, Common.gs_scale_ip[i], 8234, this);
                //    scale.scaledisplay = (this.Controls.Find("lv_scale" + (i + 1).ToString(), true)[0] as ListBox);
                //}
 
                //UpdateThread updateThread = new UpdateThread();
                //updateThread.frmdata = this.frmdata;
            }
            catch (Exception em)
            {
                Common.WriteLogFile("WcsError", "initThreadMap--初始化设备线程出错:" + em.Message);
                toolStripStatusLabel4.Text = "初始化设备线程出错:" + em.Message;
            }
        }
 
        private void main_FormClosing(object sender, FormClosingEventArgs e)
        {
            //try
            //{
            //exit wr = new exit();
            //wr.ShowDialog().ToString();
            //if (Common.sysinfo == true)
            //{
            //    e.Cancel = false;
            //    this.Dispose();
            //    Application.Exit();
            //    Common.sysinfo = false;
            //}
            //else
            //{
            //    e.Cancel = true; 
            //}
 
            //    DialogResult dr = MessageBox.Show("确定要退出吗?", "退出程序", MessageBoxButtons.OKCancel);
            //    if (dr == DialogResult.OK)//如果点击“确定”按钮
            //    {
            //        e.Cancel = false;
            //        this.Dispose();
            //        Application.Exit();
            //    }
            //    else
            //    {
            //        e.Cancel = true;
            //    }
            //}
            //catch (Exception)
            //{
            //}
        }
        #endregion
 
        #region 主控图控件事件,移动至设备,弹出设备显示框
        /// <summary>
        /// 站点鼠标移入事件
        /// </summary>
        private void stnMouseMove(object sender, MouseEventArgs e)
        {
            //Point p = this.PointToClient(Control.MousePosition);// MousePosition;
            //int stnno = 0;
            int seqno = 0;
            int plcno = 0, i_wrkno = 0;
            try
            {
                int stn = Int32.Parse((sender as DevComponents.DotNetBar.LabelX).Tag.ToString());
                seqno = Common.GetStnSeq(stn);
                if (seqno < 50)
                {
                    plcno = 0;
                }
                else
                {
                    plcno = 1;
                }
                i_wrkno = Common.plc_i_Wrk_no[plcno, seqno];
                if (stn > 0)
                {
                    if (Common.form1 == null)
                    {
                        stndisplay stnd = new stndisplay();
                        stnd.TopLevel = false;
                        stnd.Parent = this;
                        stnd.BringToFront();
                        //stnd.Left = (sender as DevComponents.DotNetBar.LabelX).Left - (sender as DevComponents.DotNetBar.LabelX).Width + 100;
                        //stnd.Top = (sender as DevComponents.DotNetBar.LabelX).Top;
                        stnd.Left = 870;
                        stnd.Top = 130;
 
                        stnd.stnno.Text = stn.ToString();
                        stnd.stnid.Text = Common.plc_i_Wrk_no[plcno, seqno].ToString();
                        stnd.autoif.Checked = (Common.plc_s_autoing[plcno, seqno].ToString() == "Y") ? true : false;
                        stnd.loadif.Checked = (Common.plc_s_loading[plcno, seqno].ToString() == "Y") ? true : false;
                        stnd.caninif.Checked = (Common.plc_s_canining[plcno, seqno].ToString() == "Y") ? true : false;
                        stnd.canouif.Checked = (Common.plc_s_canouting[plcno, seqno].ToString() == "Y") ? true : false;
                        DataView dv1 = Common.ExecAsrsSelect("select top 1 wrk_sts,io_type,source_sta_no,sta_no,source_loc_no,loc_no from dbo.asr_wrk_mast where wrk_no=" + i_wrkno + "");
                        if (dv1 != null && dv1.Count > 0)
                        {
                            foreach (System.Data.DataRowView drow in dv1)
                            {
                                stnd.wrksts.Text = Common.Getwrksts(drow[0].ToString());
                                stnd.iotype.Text = Common.Getiotype(drow[1].ToString());
                                stnd.sstn.Text = drow[2].ToString();
                                stnd.dstn.Text = drow[3].ToString();
                                stnd.sloc.Text = drow[4].ToString();
                                stnd.dloc.Text = drow[5].ToString();
                            }
                        }
                        Common.form1 = stnd;
                        stnd.Show();
                    }
                }
            }
            catch (Exception em)
            {
                Common.WriteLogFile("WcsError", "stnMouseMove--站点鼠标移入事件出错:" + em.Message);
                toolStripStatusLabel4.Text = "站点鼠标移入事件出错:" + em.Message;
            }
        }
 
        /// <summary>
        /// 站点鼠标离开事件
        /// </summary>
        private void stnMouseLeave(object sender, EventArgs e)
        {
            try
            {
                //panel_stnShow.Visible = false;
                if (Common.form1 != null)
                {
                    //Common.form1.Hide();
                    Common.form1.Close();
                }
                //Common.form1.Close();
                //this.panelEx6.Refresh();
            }
            catch (Exception em)
            {
                Common.WriteLogFile("WcsError", "stnMouseLeave--站点鼠标离开事件出错:" + em.Message);
                toolStripStatusLabel4.Text = "站点鼠标离开事件出错:" + em.Message;
            }
 
        }
 
        /// <summary>
        /// 堆垛机鼠标移入事件
        /// </summary>
        private void crnMouseMove(object sender, MouseEventArgs e)
        {
            int stano = 0, source_sta_no = 0;
            Point p = MousePosition;
            try
            {
                int ctn = -Int32.Parse((sender as DevComponents.DotNetBar.LabelX).Tag.ToString());
                if (ctn > 0)
                {
                    if (Common.form2 == null)
                    {
                        crndisplay crnd = new crndisplay();
                        crnd.TopLevel = false;
                        crnd.Parent = this;
                        crnd.BringToFront();
                        //crnd.TopMost = true;
                        //crnd.Left = (sender as DevComponents.DotNetBar.LabelX).Left + (sender as DevComponents.DotNetBar.LabelX).Width;
                        //crnd.Top = (sender as DevComponents.DotNetBar.LabelX).Top;
                        crnd.Left = 570;
                        crnd.Top = 130;
                        crnd.crnno.Text = ctn.ToString();
                        crnd.crnid.Text = Common.crn_i_Wrkno[ctn - 1].ToString();
                        crnd.crnsts.Text = Common.GetCrnStsName(Common.crn_i_crn_sts[ctn - 1]);
                        crnd.errinfo.Text = Common.crn_ycmm[ctn - 1].ToString() + ":" + Common.GetErr(Common.crn_ycmm[ctn - 1]);
                        DataView dv = Common.ExecAsrsSelect("select wrk_sts,io_type,sta_no,source_sta_no from dbo.asr_wrk_mast where wrk_no=" + Common.crn_i_Wrkno[ctn - 1]);
                        if (dv != null && dv.Count > 0)
                        {
                            foreach (DataRowView drv in dv)
                            {
                                int wrksts = Int32.Parse(drv[0].ToString());
                                int iotype = Int32.Parse(drv[1].ToString());
                                stano = Int32.Parse(drv[2].ToString());
                                source_sta_no = Int32.Parse(drv[3].ToString());
 
                                DataView dv1 = Common.ExecAsrsSelect("select wrk_desc from dbo.asr_bas_wrk_status where wrk_sts=" + wrksts);
                                if (dv1.Count > 0)
                                {
                                    foreach (DataRowView drv1 in dv1)
                                    {
                                        crnd.wrksts.Text = drv1[0].ToString();
                                    }
                                }
                                DataView dv2 = Common.ExecAsrsSelect("select io_desc from dbo.asr_bas_wrk_iotype where io_type=" + iotype);
                                if (dv2.Count > 0)
                                {
                                    foreach (DataRowView drv2 in dv2)
                                    {
                                        crnd.iotype.Text = drv2[0].ToString();
                                    }
                                }
                            }
                        }
                        crnd.sstn.Text = source_sta_no.ToString();//Class1.crn_i_fstn[ctn - 1].ToString();
                        crnd.dstn.Text = stano.ToString();
                        crnd.sloc.Text = Common.crn_s_Flocno[ctn - 1].ToString();
                        crnd.dloc.Text = Common.crn_s_Tlocno[ctn - 1].ToString();
                        Common.form2 = crnd;
                        crnd.Show();
                    }
                }
            }
            catch (Exception em)
            {
                Common.WriteLogFile("WcsError", "crnMouseMove--堆垛机鼠标移入事件出错:" + em.Message);
                toolStripStatusLabel4.Text = "堆垛机鼠标移入事件出错:" + em.Message;
            }
        }
 
        /// <summary>
        /// 堆垛机鼠标离开事件
        /// </summary>
        private void crnMouseLeave(object sender, EventArgs e)
        {
            try
            {
                if (Common.form2 != null)
                {
                    Common.form2.Close();
                }
            }
            catch (Exception em)
            {
                Common.WriteLogFile("WcsError", "stnMouseLeave--堆垛机鼠标离开事件出错:" + em.Message);
                toolStripStatusLabel4.Text = "堆垛机鼠标离开事件出错:" + em.Message;
            }
        }
 
        /// <summary>
        /// 输送机站点双击事件
        /// </summary>
        private void stn_DoubleClick(object sender, EventArgs e)
        {
            try
            {
                if (Common.f1 == null)
                {
                    plcset pst = new plcset(Int32.Parse((sender as DevComponents.DotNetBar.LabelX).Tag.ToString()));
                    pst.Show();
                    Common.f1 = pst;
                }
                else
                {
                    Common.f1.Close();
                    Common.f1 = null;
                    plcset pst = new plcset(Int32.Parse((sender as DevComponents.DotNetBar.LabelX).Tag.ToString()));
                    pst.Show();
                    Common.f1 = pst;
                }
            }
            catch (Exception em)
            {
                Common.WriteLogFile("WcsError", "stn_DoubleClick--输送机站点双击事件出错:" + em.Message);
                toolStripStatusLabel4.Text = "输送机站点双击事件出错:" + em.Message;
            }
        }
 
        private void pictureBox1_Click(object sender, EventArgs e)
        {
            try
            {
                if (Common.gi_Online_Flag == Common.ch_CMD_PAUSE)
                {
                    pictureBox1.Load(Common.picpath + "stop48.png");
                    Common.gi_Online_Flag = Common.ch_CMD_START;
                    sysmode.Text = "运行中...";
                    sysmode.ForeColor = Color.Wheat;
                    group_command.Enabled = false;
                }
                else
                {
                    pictureBox1.Load(Common.picpath + "start48.png");
                    Common.gi_Online_Flag = Common.ch_CMD_PAUSE;
                    sysmode.Text = "暂停中...";
                    sysmode.ForeColor = Color.Red;
                    group_command.Enabled = true;
                }
            }
            catch (Exception em)
            {
                Common.WriteLogFile("WcsError", "pictureBox1_Click--系统启动暂停事件出错:" + em.Message);
                toolStripStatusLabel4.Text = "系统启动暂停事件出错:" + em.Message;
            }
        }
        #endregion
 
        #region PLC画面控件事件
 
        #endregion
 
        #region 堆垛机画面控件事件
 
 
        private void c3_Click(object sender, EventArgs e)
        {
            warn wr = new warn("你确定要强制3号堆垛机空闲吗?", "警告", 2);
            wr.ShowDialog().ToString();
            if (Common.sysinfo == true)
            {
                ClrCrnCmd(3);
                Common.sysinfo = false;
            }
        }
 
        private void c4_Click(object sender, EventArgs e)
        {
            warn wr = new warn("你确定要强制4号堆垛机空闲吗?", "警告", 2);
            wr.ShowDialog().ToString();
            if (Common.sysinfo == true)
            {
                ClrCrnCmd(4);
                Common.sysinfo = false;
            }
        }
 
        private void ClrCrnCmd(int crnno)
        {
            Common.crn_i_crnno[crnno - 1] = crnno;
            //Common.crn_i_crn_sts[crnno - 1] = Common.ci_CRN_STS_IDLE;
            Common.crn_i_Wrkno[crnno - 1] = 0;
            //Common.crn_i_Errcod[crnno - 1] = 0;
            Common.crn_i_kind[crnno - 1] = 0;
            Common.crn_i_fstn[crnno - 1] = 0;
            Common.crn_i_tstn[crnno - 1] = 0;
            Common.crn_s_Flocno[crnno - 1] = "";
            Common.crn_s_Tlocno[crnno - 1] = "";
            Common.gi_crn_iotype[crnno - 1] = 0;
            Common.crn_s_commandstr[crnno - 1] = "";
            Common.gs_crncmd[crnno - 1] = "";
 
        }
 
        /// <summary>
        /// 手工下发堆垛机命令
        /// </summary>
        /// <param name="value"></param>
        private void setCrnCommand(string value)
        {
            try
            {
                if (rb_crn1.Checked)
                {
                    if (Common.gs_crncmd[0] == "")
                    {
                        Common.gs_crncmd[0] = value;
                        tb_sendtocrn1.Text = value;
                    }
                    else
                    {
                        MessageBox.Show("堆垛机执行命令中");
                        return;
                    }
                }
                else if (rb_crn2.Checked)
                {
                    if (Common.gs_crncmd[1] == "")
                    {
                        Common.gs_crncmd[1] = value;
                        tb_sendtocrn2.Text = value;
                    }
                    else
                    {
                        MessageBox.Show("堆垛机执行命令中");
                        return;
                    }
                }
            }
            catch (Exception em)
            {
                Common.WriteLogFile("WcsError", "setCrnCommand--手工下发堆垛机命令:(" + value + ")" + em.Message);
                toolStripStatusLabel4.Text = "手工下发堆垛机命令:(" + value + ")" + em.Message;
            }
        }
 
        private void b_moveOhp_Click(object sender, EventArgs e)
        {
            string value = "109999" + "0000000" + "0003901";
            setCrnCommand(value);
        }
        #endregion
 
        #region 入出业务处理
        /// <summary>
        /// 界面显示处理
        /// </summary>
        private void t_display_Tick(object sender, EventArgs e)
        {
            try
            {
                Proc_UpdCrnAndStnFile();//更新设备档                    
                DisplayMaps();//显示map状态
                DisplayCrn();
                //ClrCrnNoUpd();
                //displaymode();
 
                //主界面条码阅读器控件的数据显示。
                lb_bar1.Text = Common.gs_barcode_data[0];
                //lb_bar2.Text = Common.gs_barcode_data[1];
 
                lv_PlcAError.Items.Clear();
                for (int i = 0; i < Common.ci_plcerrcount; i++)
                {
                    if (Common.plcerr[i] == "Y")
                    {
                        ListViewItem lvi = lv_PlcAError.Items.Add((lv_PlcAError.Items.Count + 1).ToString());
                        lvi.SubItems[0].ForeColor = Color.Red;
                        //lvi.SubItems[0].ForeColor = (Common.plcerr[i] == "Y") ? Color.Red : Color.Black;
                        lvi.SubItems.Add(Common.gs_PlcErrDesc[i]);
                        lvi.SubItems[1].ForeColor = Color.Red;
                        //lvi.SubItems[1].ForeColor = (Common.plcerr[i] == "Y") ? Color.Red : Color.Black;
                        lvi.SubItems.Add(Common.plcerr[i]);
                        lvi.SubItems[2].ForeColor = Color.Red;
                        //lvi.SubItems[2].ForeColor = (Common.plcerr[i] == "Y") ? Color.Red : Color.Black;
                    }
                }
 
                DateTime dt = DateTime.Now;
                toolStripStatusLabel2.Text = "  当前时间: " + dt.ToLongTimeString() + "  ";
            }
            catch (Exception em)
            {
                Common.WriteLogFile("WcsError", "t_display----" + em.Message);
            }
        }
 
        /// <summary>
        /// 更新堆垛机和站点基本档
        /// </summary>
        private void Proc_UpdCrnAndStnFile()
        {
            int crnsts = 0, wrk_no = 0, frm_sta = 0, to_sta = 0, hp_mk = 0, stn = 0, wrk_no1 = 0, i_buff = 0, i_wrk = 0, plcno = 0;
            double wt = 0;
            string frm_locno = "", s_loctype = "", to_locno = "", s_loading = "", s_autoing = "", s_canining = "", s_canouting = "", s_inreq1 = "", s_inreq2 = "", s_barcode = "", s_empty = "", s_out_mk = "", s_pick_mk = "", crn_err = "";
            //string ls_in_enable = "N", ls_out_enable = "N";           
            //更新站点信息
            for (int sta = 0; sta < Common.ci_sta_count; sta++)
            {
                plcno = Common.g_ari_staion_plc_no[sta] - 1;
                s_autoing = Common.plc_s_autoing[Common.g_ari_staion_plc_no[sta] - 1, sta];
                s_loading = Common.plc_s_loading[Common.g_ari_staion_plc_no[sta] - 1, sta];
                s_canining = Common.plc_s_canining[Common.g_ari_staion_plc_no[sta] - 1, sta];
                s_canouting = Common.plc_s_canouting[Common.g_ari_staion_plc_no[sta] - 1, sta];
                s_inreq1 = Common.plc_s_inreq1[Common.g_ari_staion_plc_no[sta] - 1, sta];
                s_inreq2 = Common.plc_s_inreq2[Common.g_ari_staion_plc_no[sta] - 1, sta];
                wrk_no1 = Common.plc_i_Wrk_no[Common.g_ari_staion_plc_no[sta] - 1, sta];
                s_loctype = Common.plc_s_loctype[Common.g_ari_staion_plc_no[sta] - 1, sta];
                int i_loctype = 0;
                if (s_loctype == "Y")
                {
                    i_loctype = 2;
                }
                else
                {
                    i_loctype = 1;
                }
                stn = Common.g_ari_staion[sta];
                if (stn == 2)
                {
                    wt = Common.gd_gross_wt[0];
                }
                else
                {
                    wt = 0;
                }
                if ((s_autoing + s_loading + s_canining + s_canouting + s_inreq1 + s_inreq2 + wrk_no1.ToString() + s_loctype + wt.ToString()) != Common.gs_plc_data_pre[sta])
                {
                    string sql = "update dbo.asr_bas_devp set autoing ='" + s_autoing + "' ,loading ='" + s_loading + "',canining='" + s_canining + "',canouting='" + s_canouting + "',inreq1='" + s_inreq1 + "',";
                    sql += " inreq2='" + s_inreq2 + "',wrk_no=" + wrk_no1 + ",ctn_type=" + i_loctype + ",gross_wt=" + wt + " where dev_no =" + stn + "";
                    if (Common.ExecAsrsModify(sql) == true)
                    {
                        Common.gs_plc_data_pre[sta] = s_autoing + s_loading + s_canining + s_canouting + s_inreq1 + s_inreq2 + wrk_no1.ToString() + s_loctype + wt.ToString();
                    }
                }
            }
            //更新堆垛机信息
            for (int crn = 0; crn < Common.ci_crn_count; crn++)
            {
                crnsts = Common.crn_i_crn_sts[crn];
                wrk_no = Common.crn_i_Wrkno[crn];
                frm_sta = Common.crn_i_fstn[crn];
                to_sta = Common.crn_i_tstn[crn];
                frm_locno = Common.crn_s_Flocno[crn];
                to_locno = Common.crn_s_Tlocno[crn];
                hp_mk = Common.crn_i_onHP[crn];
                crn_err = Common.crn_ycmm[crn].ToString();
                if ((crnsts.ToString() + wrk_no.ToString() + frm_sta.ToString() + to_sta.ToString() + frm_locno + to_locno + hp_mk.ToString() + crn_err) != Common.gs_crn_data_pre[crn])
                {
                    string sql = "update dbo.asr_bas_crnp set crn_err='" + crn_err + "', crn_sts =" + crnsts + " ,wrk_no =" + wrk_no + ",frm_sta=" + frm_sta + ",to_sta=" + to_sta + ",frm_locno='" + frm_locno + "',";
                    sql += " to_locno='" + to_locno + "',hp_mk=" + hp_mk + " where crn_no =" + (crn + 1) + "";
                    if (Common.ExecAsrsModify(sql) == true)
                    {
                        Common.gs_crn_data_pre[crn] = crnsts.ToString() + wrk_no.ToString() + frm_sta.ToString() + to_sta.ToString() + frm_locno + to_locno + hp_mk.ToString() + crn_err;
                    }
                }
 
            }
        }
 
        /// <summary>
        /// 主控图画面显示
        /// </summary>
        private void DisplayMaps()
        {
            int seq = 0, stnno = 0, ii = 0;
            string stnseq = "";
 
            for (int stn = 0; stn < Common.ci_sta_count; stn++)
            {
                //noauto
                seq = Common.g_ari_staion_plc_no[stn] - 1;
                stnseq = Common.g_ari_staion[stn].ToString();
                stnno = Int32.Parse(stnseq);
                //模拟数据
                // Common.plc_s_autoing[seq, stn] = "Y";
                if (Common.plc_s_autoing[seq, stn] == "N")
                {
                    try
                    {
                        (this.Controls.Find("stn" + stnseq, true)[0] as DevComponents.DotNetBar.LabelX).BackColor = Color.DarkGray;
                        (this.Controls.Find("stn" + stnseq, true)[0] as DevComponents.DotNetBar.LabelX).ForeColor = SystemColors.Window;
                    }
                    catch (Exception)
                    {
 
                    }
                }
                //auto
                if (Common.plc_s_autoing[seq, stn] == "Y" && Common.plc_s_loading[seq, stn] == "N" && Common.plc_i_Wrk_no[seq, stn] == 0)
                {
                    try
                    {
                        (this.Controls.Find("stn" + stnseq, true)[0] as DevComponents.DotNetBar.LabelX).BackColor = Color.Lime;
                        (this.Controls.Find("stn" + stnseq, true)[0] as DevComponents.DotNetBar.LabelX).ForeColor = Color.Black;
                    }
                    catch (Exception)
                    {
 
                    }
                }
                //auto+load+ID
                if (Common.plc_s_autoing[seq, stn] == "Y" && Common.plc_s_loading[seq, stn] == "Y" && Common.plc_i_Wrk_no[seq, stn] > 0)
                {
                    try
                    {
                        (this.Controls.Find("stn" + stnseq, true)[0] as DevComponents.DotNetBar.LabelX).BackColor = Color.Red;
                        (this.Controls.Find("stn" + stnseq, true)[0] as DevComponents.DotNetBar.LabelX).ForeColor = Color.Black;
                    }
                    catch (Exception)
                    {
 
                    }
                }
                //auto+load
                if (Common.plc_s_autoing[seq, stn] == "Y" && Common.plc_s_loading[seq, stn] == "Y" && Common.plc_i_Wrk_no[seq, stn] == 0)
                {
                    try
                    {
                        (this.Controls.Find("stn" + stnseq, true)[0] as DevComponents.DotNetBar.LabelX).BackColor = Color.Fuchsia;
                        (this.Controls.Find("stn" + stnseq, true)[0] as DevComponents.DotNetBar.LabelX).ForeColor = Color.Black;
                    }
                    catch (Exception)
                    {
 
                    }
                }
                //auto+ID
                if (Common.plc_s_autoing[seq, stn] == "Y" && Common.plc_s_loading[seq, stn] == "N" && Common.plc_i_Wrk_no[seq, stn] > 0)
                {
                    try
                    {
                        (this.Controls.Find("stn" + stnseq, true)[0] as DevComponents.DotNetBar.LabelX).BackColor = Color.Yellow;
                        (this.Controls.Find("stn" + stnseq, true)[0] as DevComponents.DotNetBar.LabelX).ForeColor = Color.Black;
                    }
                    catch (Exception)
                    {
 
                    }
                }
 
                if (Common.plc_i_Wrk_no[seq, stn] > 0)
                {
                    (this.Controls.Find("stn" + stnseq, true)[0] as DevComponents.DotNetBar.LabelX).Text = stnseq + "[" + Common.plc_i_Wrk_no[seq, stn] + "]";
                }
                else
                {
                    (this.Controls.Find("stn" + stnseq, true)[0] as DevComponents.DotNetBar.LabelX).Text = stnseq;
                }
            }
 
            for (int i = 0; i < Common.ci_crn_count; i++)
            {
                //Common.crn_dqps[i] = 30;
                //堆垛机位置
                if (Common.crn_dqps[i] < 1)
                {
                    (this.Controls.Find("lb_crn" + (i + 1).ToString(), true)[0] as DevComponents.DotNetBar.LabelX).Left = 1176;
                }
                else
                {
                    (this.Controls.Find("lb_crn" + (i + 1).ToString(), true)[0] as DevComponents.DotNetBar.LabelX).Left = 1176 - 17 * (Common.crn_dqps[i]);
                }
                //堆垛机颜色
                if (Common.Mode[i] != 3 && Common.AlarmCode[i] == 0)
                {
                    if (Common.Mode[i] == 1)
                    {
                        (this.Controls.Find("lb_crn" + (i + 1).ToString(), true)[0] as DevComponents.DotNetBar.LabelX).BackgroundImage = Image.FromFile(Common.picpath + "Crane_manual.png");
                        (this.Controls.Find("crnMode" + (i + 1).ToString(), true)[0] as System.Windows.Forms.Label).Text = "手动模式";
                    }
                    else if (Common.Mode[i] == 0)
                    {
                        (this.Controls.Find("lb_crn" + (i + 1).ToString(), true)[0] as DevComponents.DotNetBar.LabelX).BackgroundImage = Image.FromFile(Common.picpath + "Crane_manual.png");
                        (this.Controls.Find("crnMode" + (i + 1).ToString(), true)[0] as System.Windows.Forms.Label).Text = "离线模式";
                    }
                    else if (Common.Mode[i] == 2)
                    {
                        (this.Controls.Find("lb_crn" + (i + 1).ToString(), true)[0] as DevComponents.DotNetBar.LabelX).BackgroundImage = Image.FromFile(Common.picpath + "Crane_manual.png");
                        (this.Controls.Find("crnMode" + (i + 1).ToString(), true)[0] as System.Windows.Forms.Label).Text = "手动模式";
                    }
                    continue;
                }
                if (Common.AlarmCode[i] > 0)
                {
                    (this.Controls.Find("lb_crn" + (i + 1).ToString(), true)[0] as DevComponents.DotNetBar.LabelX).BackgroundImage = Image.FromFile(Common.picpath + "Crane_error.png");
                    (this.Controls.Find("crnMode" + (i + 1).ToString(), true)[0] as System.Windows.Forms.Label).Text = "出现异常";
                    continue;
                }
                else if (Common.Mode[i] == 3 && Common.CrnState[i] == 0)
                {
                    (this.Controls.Find("lb_crn" + (i + 1).ToString(), true)[0] as DevComponents.DotNetBar.LabelX).BackgroundImage = Image.FromFile(Common.picpath + "Crane_auto.png");
                    (this.Controls.Find("crnMode" + (i + 1).ToString(), true)[0] as System.Windows.Forms.Label).Text = "联机模式";
                    continue;
                }
                else if (Common.Mode[i] == 3 && Common.CrnState[i] > 0 && Common.crn_i_kind[i] == 7)//(Common.crn_rkz[i] == true && Common.crn_dnmsz[i] == true)
                {
                    (this.Controls.Find("lb_crn" + (i + 1).ToString(), true)[0] as DevComponents.DotNetBar.LabelX).BackgroundImage = Image.FromFile(Common.picpath + "Crane_store.png");
                    continue;
                }
                else if (Common.Mode[i] == 3 && Common.CrnState[i] > 0 && Common.crn_i_kind[i] == 8)//(Common.crn_ckz[i] == true && Common.crn_dnmsz[i] == true)
                {
                    (this.Controls.Find("lb_crn" + (i + 1).ToString(), true)[0] as DevComponents.DotNetBar.LabelX).BackgroundImage = Image.FromFile(Common.picpath + "Crane_retrieve.png");
                    continue;
                }
                else if (Common.Mode[i] == 3 && Common.CrnState[i] > 0 && Common.crn_i_kind[i] == 12)
                {
                    (this.Controls.Find("lb_crn" + (i + 1).ToString(), true)[0] as DevComponents.DotNetBar.LabelX).BackgroundImage = Image.FromFile(Common.picpath + "Crane_loctoloc.png");
                    continue;
                }
                else if (Common.Mode[i] == 3 && Common.CrnState[i] > 0 && Common.crn_i_kind[i] == 11)
                {
                    (this.Controls.Find("lb_crn" + (i + 1).ToString(), true)[0] as DevComponents.DotNetBar.LabelX).BackgroundImage = Image.FromFile(Common.picpath + "Crane_stntostn.png");
                    continue;
                }
 
            }
        }
 
        /// <summary>
        /// 更新堆垛机画面显示
        /// </summary>
        private void DisplayCrn()
        {
            for (int k = 0; k < Common.ci_crn_count; k++)
            {
                //this.frmdata.Items[k].SubItems[1].Text = "";
                //this.frmdata.Items[k].SubItems[2].Text = "";
                //s1.BringToFront();
                this.crnlistdata.Items[k].SubItems[1].Text = Common.GetCrnStsName(Common.CrnState[k]);
                this.crnlistdata.Items[k].SubItems[2].Text = Common.TaskNo[k].ToString();
                this.crnlistdata.Items[k].SubItems[3].Text = Common.crn_i_fstn[k].ToString();
                this.crnlistdata.Items[k].SubItems[4].Text = Common.crn_i_tstn[k].ToString();
                this.crnlistdata.Items[k].SubItems[5].Text = Common.crn_s_Flocno[k].ToString();
                this.crnlistdata.Items[k].SubItems[6].Text = Common.crn_s_Tlocno[k].ToString();
                string errmsg = (Common.AlarmCode[k] > 0) ? Common.GetErr(Common.AlarmCode[k]) : "0";
                this.crnlistdata.Items[k].SubItems[7].Text = errmsg;
                this.crnlistdata.Items[k].SubItems[8].Text = Common.crn_i_onHP[k].ToString();
                this.crnlistdata.Items[k].SubItems[9].Text = Common.crn_s_commandstr[k].ToString();
                this.crnlistdata.Items[k].SubItems[10].Text = Common.WalkSpeed[k].ToString("#0.00");
                this.crnlistdata.Items[k].SubItems[11].Text = Common.LiftSpeed[k].ToString("#0.00");
                this.crnlistdata.Items[k].SubItems[12].Text = Common.ForkSpeed[k].ToString("#0.00");
                this.crnlistdata.Items[k].SubItems[13].Text = Common.XDistance[k].ToString("#0.00");
                this.crnlistdata.Items[k].SubItems[14].Text = Common.YDistance[k].ToString("#0.00");
                this.crnlistdata.Items[k].SubItems[15].Text = Common.XDuration[k].ToString("#0.00");
                this.crnlistdata.Items[k].SubItems[16].Text = Common.YDuration[k].ToString("#0.00");
            }
            //for (int kk = 0; kk < Common.ci_crn_count; kk++)
            //{
            //    this.crnstslists.Items[kk].SubItems[1].Text = Common.PosX[kk].ToString();
            //    this.crnstslists.Items[kk].SubItems[2].Text = Common.PosY[kk].ToString();
            //    this.crnstslists.Items[kk].SubItems[3].Text = Common.PosXmm[kk].ToString();
            //    this.crnstslists.Items[kk].SubItems[4].Text = Common.PosYmm[kk].ToString();
            //    this.crnstslists.Items[kk].SubItems[5].Text = Common.AlarmCode[kk].ToString(); ;
            //}
        }
 
        /// <summary>
        /// 堆垛机出库站到出库站
        /// </summary>
        private void Proc_CrnStnToOutStn()
        {
            try
            {
                for (int i = 0; i < 2; i++)
                {
                    int stnno = 0, seqno = 0;
                    string s_slocno = "", s_dlocno = "", s_picking = "N", s_emptymk = "N";
                    int i_wrkno = 0, i_crnno = 0, i_wrksts = 0, i_iotype = 0, plcno = 0;//, ledno = 0;
                    string s_sstano = "", s_dstano = "", ls_mat_no = "";
                    DateTime dt1 = System.DateTime.Now;
                    switch (i)
                    {
                        case 0:
                            stnno = 100;
                            plcno = 0;
                            //ledno = 0;
                            break;
                        case 1:
                            stnno = 200;
                            plcno = 0;
                            //ledno = 0;
                            break;
                    }
                    seqno = Common.GetStnSeq(stnno);
                    string s_autoing = Common.plc_s_autoing[plcno, seqno];
                    string s_loading = Common.plc_s_loading[plcno, seqno];
                    string s_inreq1 = Common.plc_s_inreq1[plcno, seqno];
                    int i_wrk_no = Common.plc_i_Wrk_no[plcno, seqno];
                    string s_next_stn = Common.plc_s_next_stn[plcno, seqno];
 
                    if (s_autoing == "Y" && s_loading == "Y" && (i_wrk_no == 0 || int.Parse(s_next_stn) == 0))
                    {
                        try
                        {
                            string sql = "select top 1 source_loc_no,loc_no,source_sta_no,sta_no,picking,wrk_no,crn_no,wrk_sts,io_type,empty_mk from dbo.asr_wrk_mast where source_sta_no=" + stnno + " and wrk_sts=12 and io_type>100 order by io_pri desc,io_time desc,wrk_no ASC ";
                            DataView dv = Common.ExecAsrsSelect(sql);
                            if (dv.Count <= 0)
                            {
                                lb_CrnStnToOutStn.Text = "查询无待出数据需要处理--wrk_sts=12";
                                continue;
                            }
                            foreach (System.Data.DataRowView drow in dv)
                            {
                                s_slocno = drow[0].ToString();
                                s_dlocno = drow[1].ToString();
                                s_sstano = drow[2].ToString();
                                s_dstano = drow[3].ToString();
                                s_picking = drow[4].ToString();
                                i_wrkno = Convert.ToInt32(drow[5].ToString());
                                i_crnno = Convert.ToInt32(drow[6].ToString());
                                i_wrksts = Convert.ToInt32(drow[7].ToString());
                                i_iotype = Convert.ToInt32(drow[8].ToString());
                                s_emptymk = drow[9].ToString();
                            }
                        }
                        catch (Exception e)
                        {
                            lb_CrnStnToOutStn.Text = "查询出库数据出错-wrk_sts=12-" + e.Message;
                            continue;
                        }
                        //判断工作状态及站号是否符合
                        if (i_iotype < 100 || s_sstano == "" || s_dstano == "")
                        {
                            lb_CrnStnToOutStn.Text = "工作档数据不符合条件--入出/站点";
                            continue;
                        }
                        //////判断吊车是否实际已完成,且电脑状态在move中,以备电脑进行更新工作档
                        //if (Common.Mode[i_crnno - 1] != 3 || Common.CrnState[i_crnno - 1] != 90
                        //    || Common.AlarmCode[i_crnno - 1] != 0 || Common.TaskNo[i_crnno - 1] != i_wrkno)
                        //{
                        //    lb_CrnStnToOutStn.Text = "吊车非空闲状态";
                        //    continue;
                        //}
                        //判断plc队列是否满,最多5个
                        if (Common.GetPlcQuereCount(plcno) >= Common.ci_plc_MAX)
                        {
                            lb_CrnStnToOutStn.Text = "PLC队列已满";
                            continue;
                        }
                        if (Common.Mode[i_crnno - 1] == 3 && Common.AlarmCode[i_crnno - 1] == 0 && (
                            (Common.CrnState[i_crnno - 1] == 90 && Common.TaskNo[i_crnno - 1] == i_wrkno)
                            || (Common.CrnState[i_crnno - 1] == 0 && Common.TaskNo[i_crnno - 1] == 0))
                            && Common.TaskFlag[i_crnno - 1] == 0
                            )
                        {
                            bool result = Common.ExecAsrsModify("update dbo.asr_wrk_mast set wrk_sts =14 ,crn_end_time =getdate() where wrk_no =" + i_wrkno + "");
                            if (result)
                            {
                                Common.crn_i_crnno[i_crnno - 1] = i_crnno;
                                Common.crn_i_Wrkno[i_crnno - 1] = 0;
                                Common.crn_i_crn_sts[i_crnno - 1] = Common.ci_CRN_STS_IDLE;
                                Common.crn_i_Errcod[i_crnno - 1] = 0;
                                Common.crn_i_kind[i_crnno - 1] = 0;
                                Common.crn_i_fstn[i_crnno - 1] = 0;
                                Common.crn_i_tstn[i_crnno - 1] = 0;
                                Common.crn_s_Flocno[i_crnno - 1] = "";
                                Common.crn_s_Tlocno[i_crnno - 1] = "";
                                Common.gi_crn_iotype[i_crnno - 1] = 0;
                                Common.TaskFlag[i_crnno - 1] = 1;
                                Common.AddPlcQuereCmd(plcno, "04" + i_wrkno.ToString("0000") + s_sstano.PadLeft(4, '0') + s_dstano.PadLeft(4, '0'));
                            }
                            else
                            {
                                lb_CrnStnToOutStn.Text = "更新工作档状态为14失败--wrk_sts=14";
                            }
                        }
                    }
                    else
                    {
                        lb_CrnStnToOutStn.Text = "站点不符合条件--要求自动/有物/无ID";
                    }
                }
            }
            catch (Exception em)
            {
                Common.WriteLogFile("WcsError", "Proc_CrnStnToOutStn----" + em.Message);
            }
        }
 
        /// <summary>
        /// 拣料、并板、盘点再入库
        /// </summary>
        private void Proc_StnToCrnStn_pick()
        {
            try
            {
                int stnno = 0, seqno = 0, d_stnno = 0, ledno = 0;
                string s_dlocno = "", s_slocno = "", sql = "";
                int i_wrkno = 0, i_crnno = 0, i_wrksts = 0, i_iotype = 0, plcno = 0;
                string s_sstano = "", s_dstano = "", s_ioTime = "";
                DateTime dt1 = System.DateTime.Now;
 
                for (int i = 0; i < 2; i++)
                {
                    switch (i)
                    {
                        case 0:
                            stnno = 104;
                            d_stnno = 101;
                            plcno = 0;
                            ledno = 0;
                            break;
                        case 1:
                            stnno = 204;
                            d_stnno = 201;
                            plcno = 0;
                            ledno = 1;
                            break;
                    }
                    seqno = Common.GetStnSeq(stnno);
                    string s_autoing = Common.plc_s_autoing[plcno, seqno];
                    string s_loading = Common.plc_s_loading[plcno, seqno];
                    string s_inreq1 = Common.plc_s_canining[plcno, seqno];
                    int i_wrk_no = Common.plc_i_Wrk_no[plcno, seqno];
                    string s_next_stn = Common.plc_s_next_stn[plcno, seqno];
                    if (s_autoing == "Y" && s_loading == "Y" && s_inreq1 == "Y"
                        && i_wrk_no > 0 && (s_next_stn == stnno.ToString() || Common.plc_i_pakmk[plcno, seqno] == 0))
                    {
                        sql = "select top 1 loc_no,source_sta_no,sta_no,wrk_no,crn_no,wrk_sts,io_type,source_loc_no,io_time from asr_wrk_mast where wrk_no=" + i_wrk_no + " and wrk_sts=14 and (io_type=103 or io_type=107 or io_type=104) ";
                        try
                        {
                            DataView dv = Common.ExecAsrsSelect(sql);
                            if (dv == null || dv.Count <= 0)
                            {
                                lb_StnToCrnStn.Text = "无拣料数据处理--wrk_sts=14";
                                continue;
                            }
                            foreach (DataRowView drow in dv)
                            {
                                s_dlocno = drow[0].ToString();
                                s_sstano = drow[1].ToString();
                                s_dstano = drow[2].ToString();
                                i_wrkno = Convert.ToInt32(drow[3].ToString());
                                i_crnno = Convert.ToInt32(drow[4].ToString());
                                i_wrksts = Convert.ToInt32(drow[5].ToString());
                                i_iotype = Convert.ToInt32(drow[6].ToString());
                                s_slocno = drow[7].ToString();
                                s_ioTime = drow[8].ToString();
 
                            }
                        }
                        catch (Exception e)
                        {
                            lb_StnToCrnStn.Text = "查询工作档数据出错--" + e.Message;
                            continue;
                        }
                        if ((i_iotype != 103 && i_iotype != 104 && i_iotype != 107) || s_dstano == "" || s_sstano == "")
                        {
                            lb_StnToCrnStn.Text = "工作档资料不符--入出类型/目标站/入库站";
                            continue;
                        }
                        if (Common.GetPlcQuereCount(plcno) >= Common.ci_plc_MAX)
                        {
                            lb_StnToCrnStn.Text = "PLC命令队列已满";
                            continue;
                        }
                        int i_dstano = Common.GetRestoreStnByPick(i_crnno, stnno);
                        string sqlWrk = " insert into dbo.asr_wrk_mast_log select * from dbo.asr_wrk_mast where wrk_no=" + i_wrkno + "; ";
                        sqlWrk += " insert into dbo.asr_wrk_detl_log select * from dbo.asr_wrk_detl where wrk_no=" + i_wrkno + "; ";
                        sqlWrk += " update dbo.asr_wrk_mast set io_type=io_type-50,source_loc_no='',loc_no='" + s_slocno + "',wrk_sts=2, ";
                        sqlWrk += " source_sta_no=" + d_stnno + ",sta_no=" + i_dstano + ",io_time='" + dt1 + "' where wrk_no=" + i_wrkno + "; ";
                        sqlWrk += " update dbo.asr_wrk_detl set io_time='" + dt1 + "' where wrk_no=" + i_wrkno + "; ";
                        sqlWrk += " update dbo.asr_loc_mast set loc_sts='Q' where loc_no='" + s_slocno + "' and loc_sts='P'; ";
                        if (Common.ExecAsrsModify(sqlWrk) == true)
                        {
                            Common.AddPlcQuereCmd(plcno, "04" + i_wrkno.ToString("0000") + i_dstano.ToString("0000") + i_dstano.ToString("0000"));
                            Common.plc_i_pakmk[plcno, seqno] = 1;
                            Common.plc_i_Wrk_no[plcno, seqno] = i_wrkno;
                            Common.plc_s_next_stn[plcno, seqno] = i_dstano.ToString();
 
                            string ledMsg = "启动拣料入库;库位号" + s_slocno + ";工作号" + i_wrkno;
                            if (Common.gs_led_data_pre[ledno] != ledMsg)
                            {
                                Common.gs_led_data[ledno] = ledMsg;
                                Common.gs_led_data_pre[ledno] = ledMsg;
                            }
                        }
                        else
                        {
                            lb_StnToCrnStn.Text = "更新工作档失败--wrk_sts=2";
                        }
                    }
                    else
                    {
                        lb_StnToCrnStn.Text = "站点不符合条件--要求自动/有物/可入/需求入/有ID";
                    }
                }
            }
            catch (Exception em)
            {
                Common.WriteLogFile("WcsError", "Proc_StnToCrnStn_pick----" + em.Message);
            }
        }
 
        /// <summary>
        /// 库位移转
        /// </summary>
        /// <param name="crnno"></param>
        private void Proc_LoctoLoc(int crnno)
        {
            try
            {
                //int stnno = 0, stnnor = 0, seqno = 0, wrksts = 0, restnno = 0;
                string s_slocno = "", s_dlocno = "", sql = "", locsts = "", locsts1 = "", s_inabled = "", s_outabled = "";
                int i_wrkno = 0, i_crnno = 0, i_wrksts = 0, i_iotype = 0;
 
                if (Common.Mode[crnno] != Common.ci_CRN_ONLINE || Common.CrnState[crnno] != Common.ci_CRN_STS_IDLE || Common.TaskNo[crnno] != 0)
                {
                    return;
                }
                sql = "select TOP 1 source_loc_no,loc_no,wrk_no,crn_no,wrk_sts,io_type from dbo.asr_wrk_mast where wrk_sts=11 and io_type=11 and crn_no=" + (crnno + 1) + " order by io_time,wrk_no";
                //sql = "select TOP 1 source_loc_no,loc_no,wrk_no,crn_no,wrk_sts,io_type from dbo.asr_wrk_mast where wrk_sts=11 and (io_type=11 or io_type=110) and crn_no=" + (crnno + 1) + " order by io_time,wrk_no";
                try
                {
                    DataView dv = Common.ExecAsrsSelect(sql);
                    if (dv.Count <= 0) return;
                    foreach (System.Data.DataRowView dvrow in dv)
                    {
                        s_slocno = dvrow[0].ToString();
                        s_dlocno = dvrow[1].ToString();
                        i_wrkno = Convert.ToInt32(dvrow[2].ToString());
                        i_crnno = Convert.ToInt32(dvrow[3].ToString());
                        i_wrksts = Convert.ToInt32(dvrow[4].ToString());
                        i_iotype = Convert.ToInt32(dvrow[5].ToString());
                    }
                }
                catch (Exception e)
                {
                    //datasts.Text = "工作档信息不正确, 无法进行库位移转 , 请检查!";
                    return;
                }
 
                try
                {
                    DataView dv_locsts = Common.ExecAsrsSelect("select loc_sts from dbo.asr_loc_mast where loc_no='" + s_slocno + "'");
                    if (dv_locsts.Count <= 0) return;
                    foreach (System.Data.DataRowView dvrow in dv_locsts)
                    {
                        locsts = dvrow[0].ToString();
                    }
                }
                catch (Exception e)
                {
                    //datasts.Text = "源库位状态不正确, 无法进行库位移转 , 请检查!";
                    return;
                }
                try
                {
                    DataView dv_locsts1 = Common.ExecAsrsSelect("select loc_sts from dbo.asr_loc_mast where loc_no='" + s_dlocno + "'");
                    if (dv_locsts1.Count <= 0) return;
                    foreach (System.Data.DataRowView dvrow in dv_locsts1)
                    {
                        locsts1 = dvrow[0].ToString();
                    }
                }
                catch (Exception e)
                {
                    //datasts.Text = "目标库位状态不正确, 无法进行库位移转 , 请检查!";
                    return;
                }
                //int crn_no = crnno + 1;
                if (locsts != "R" && locsts1 != "S") return;
                try
                {
                    DataView dv_crnsts = Common.ExecAsrsSelect("select in_enable,out_enable from dbo.asr_bas_crnp where crn_no=" + (crnno + 1) + "");
                    foreach (System.Data.DataRowView dvrow in dv_crnsts)
                    {
                        s_inabled = dvrow[0].ToString();
                        s_outabled = dvrow[1].ToString();
                    }
                }
                catch (Exception e)
                {
                    //datasts.Text = "得到堆垛机状态信息错误, 无法进行库位移转 , 请检查!";
                    return;
                }
                if (s_inabled != "Y" && s_outabled != "Y")
                {
                    //datasts.Text = (crnno + 1).ToString() + " 堆垛机状态信息错误, 无法进行库位移转 , 请检查!";
                    return;
                }
 
                //string srow = "", sbay = "", slev = "", drow = "", dbay = "", dlev = "";
                //srow = s_slocno.Substring(0, 2);
                //sbay = s_slocno.Substring(2, 3);
                //slev = s_slocno.Substring(5, 2);
                //drow = s_dlocno.Substring(0, 2);
                //dbay = s_dlocno.Substring(2, 3);
                //dlev = s_dlocno.Substring(5, 2);
                if (Common.gs_crncmd[crnno] == "")
                {
                    Common.gs_crncmd[crnno] = "12" + i_wrkno.ToString().PadLeft(4, '0') + s_slocno + s_dlocno;
                    return;
                }
            }
            catch (Exception em)
            {
                Common.WriteLogFile("WcsError", "Proc_LoctoLoc----" + em.Message);
            }
        }
 
        /// <summary>
        /// 入库站,根据条码扫描生成入库工作档,工作状态1
        /// </summary>
        private void Proc_GenerateStoreWrkFile()
        {
            try
            {
                for (int i = 0; i < 2; i++)
                {
                    int plcno = 0, seqno = 0, li_wrkno = 0, li_stano = 0, li_crnno = 0;
                    int li_loctype = 0, li_rStano = 0;
                    //double ld_wt = 0;
                    string ls_locno = "", sql = "";
                    string ls_barcode = "";
                    DateTime ldt_date = DateTime.Now;
                    int ledno = 0;
 
                    switch (i)
                    {
                        case 0:
                            li_stano = 104;
                            li_rStano = 103;     //退库站
                            plcno = 0;
                            ledno = 0;
                            break;
                        case 1:
                            li_stano = 204;
                            li_rStano = 203;     //退库站
                            plcno = 0;
                            ledno = 1;
                            break;
                    }
                    //ld_wt = Common.gd_gross_wt[0];
 
                    seqno = Common.GetStnSeq(li_stano);
                    ls_barcode = Common.gs_barcode_data[i];
                    string s_autoing = Common.plc_s_autoing[plcno, seqno];
                    string s_loading = Common.plc_s_loading[plcno, seqno];
                    string s_inreq1 = Common.plc_s_canining[plcno, seqno];
                    int i_wrk_no = Common.plc_i_Wrk_no[plcno, seqno];
                    string s_emptyMk = Common.plc_s_inreq1[plcno, seqno];  //空托盘需求信号
                    string s_next_stn = Common.plc_s_next_stn[plcno, seqno];
                    if (s_autoing == "Y" && s_loading == "Y" && s_inreq1 == "Y" && s_emptyMk == "N"
                         && s_next_stn == li_stano.ToString() && ls_barcode != ""
                         && i_wrk_no == 9998 && Common.plc_i_pakmk[plcno, seqno] == 0)
                    {
                        if (ls_barcode == "" || ls_barcode == null || ls_barcode == "00000000")
                        {   //超重、条码为空
                            lb_AnalyzeScale.Text = "条码为空--条码" + ls_barcode;
                            //toolStripStatusLabel4.Text = "4";
                            continue;
                        }
                        else
                        {
                            //sql = "select top 1 wrk_no,loc_no,source_sta_no,sta_no,crn_no,wrk_sts,io_type from asr_wrk_mast where source_sta_no=" + li_stano + " and wrk_sts=1 and (io_type=1 or io_type=10) order by io_pri desc,io_time,wrk_no ASC ";
                            sql = "select top 1 wrk_no,loc_no,source_sta_no,sta_no,crn_no,wrk_sts,io_type from asr_wrk_mast where source_sta_no=" + li_stano + " and wrk_sts=2 and barcode='" + ls_barcode + "' and (io_type=1 or io_type=10) order by io_pri desc,io_time,wrk_no ASC ";
                            DataView dv_wrk = Common.ExecAsrsSelect(sql);
                            if (dv_wrk != null && dv_wrk.Count > 0)
                            {
                                int lwrkno = 0;
                                int staNo = 0;
                                foreach (DataRowView drow in dv_wrk)
                                {
                                    lwrkno = int.Parse(drow[0].ToString());
                                    staNo = int.Parse(drow[3].ToString());
                                }
                                lb_AnalyzeScale.Text = "工作档中已存在该站状态为1的数据,工作号-" + lwrkno;
                                //Common.AddPlcQuereCmd(plcno, "02" + lwrkno.ToString("0000") + li_stano.ToString("0000") + staNo.ToString("0000"));
                                continue;
                            }
                            string li_barcodetype = ls_barcode.Substring(0, 1);
                            if (li_barcodetype == "8")                                //塑料件,放5,7,9,11
                            {
                                li_loctype = 1;
                            }
                            else if (li_barcodetype == "1")                           //原材料,放1,2,3层
                            {
                                li_loctype = 2;
                            }
                            else if (li_barcodetype == "2" || li_barcodetype == "3")  //冲压件,放4,6,8层
                            {
                                li_loctype = 3;
                            }
                            else
                            {
                                //li_loctype = 1;
                                continue;
                            }
 
                            string postData = "";
                            string url = Common.HttpUrl;
                            JSONObject json = new JSONObject();
                            json.put("ioType", 1);
                            json.put("sourceStaNo", li_stano);
                            json.put("barcode", ls_barcode);
                            json.put("locType1", li_loctype);
                            postData = json.ToString();
                            string responseData = HttpPostHelper.doHttpPost(url, postData);
 
                            JSONObject jsonRes = new JSONObject(responseData);
                            int code = jsonRes.getInt("code");
                            if (code == 200)
                            {
                                JSONObject data = new JSONObject(jsonRes.getString("data"));
                                int e_staNo = data.getInt("staNo");
                                li_crnno = data.getInt("crnNo");
                                ls_locno = data.getString("locNo");
                                li_wrkno = data.getInt("workNo");
 
                                Common.gs_barcode_data[i] = "";
                                Common.AddPlcQuereCmd(plcno, "04" + li_wrkno.ToString("0000") + li_stano.ToString("0000") + e_staNo.ToString("0000"));
                                Common.plc_i_Wrk_no[plcno, seqno] = li_wrkno;
                                Common.plc_s_next_stn[plcno, seqno] = e_staNo.ToString();
                                Common.plc_i_pakmk[plcno, seqno] = 1;
                                Common.plc_s_canining[plcno, seqno] = "N";
                                Common.plc_s_inreq1[plcno, seqno] = "N";
                                toolStripStatusLabel4.Text = "";
 
                                string ledMsg = li_stano + "站入库启动;库位号" + ls_locno + ";工作号" + li_wrkno;
                                if (Common.gs_led_data_pre[ledno] != ledMsg)
                                {
                                    Common.gs_led_data[ledno] = ledMsg;
                                    Common.gs_led_data_pre[ledno] = ledMsg;
                                }
                            }
                            else
                            {
                                string ledMsg = li_stano + "站入库失败;" + jsonRes.getString("msg") + ";";
                                if (Common.gs_led_data_pre[ledno] != ledMsg)
                                {
                                    Common.gs_led_data[ledno] = ledMsg;
                                    Common.gs_led_data_pre[ledno] = ledMsg;
                                }
                                toolStripStatusLabel4.Text = jsonRes.getString("msg");
                                continue;
                            }
 
 
                            #region
                            //int stnType = 1;
                            //if (li_stano > 2000)   
                            //{
                            //    stnType = 2;
                            //}
 
                            //string sqlDetl = "", sqlWaitIn = "";
                            //sql = " select matnr,maktx,werks,anfme,unit from cust_wait_pakin where barcode='" + ls_barcode + "'";
                            //DataView dv_mat = Common.ExecAsrsSelect(sql);
                            //if (dv_mat != null && dv_mat.Count > 0)
                            //{
                            //    li_wrkno = Common.GetWrkno(0);
                            //    if (li_wrkno == 0)
                            //    {
                            //        lb_AnalyzeScale.Text = "生成工作号失败;" + ls_barcode;
                            //        continue;
                            //    }
 
                            //    ls_locno = Common.GetLocNo(1, li_loctype, 0, li_stano, stnType);
                            //    if (ls_locno == "")
                            //    {
                            //        //toolStripStatusLabel4.Text = "磅秤站入库得到工作号和库位号失败";
                            //        lb_AnalyzeScale.Text = "查找库位失败;库位" + ls_locno;
                            //        continue;
                            //    }
 
                            //    foreach (DataRowView drow in dv_mat)
                            //    {
                            //        string matnr = "", maktx = "", werks = "", anfme = "", unit = "";
                            //        matnr = drow[0].ToString();
                            //        maktx = drow[1].ToString();
                            //        maktx = maktx.Replace(';', ',');
                            //        werks = drow[2].ToString();
                            //        anfme = drow[3].ToString();
                            //        unit = drow[4].ToString();
                            //        sqlDetl += " insert into asr_wrk_detl(wrk_no,io_time,matnr,maktx,werks,anfme,unit,barcode) ";
                            //        sqlDetl += " values(" + li_wrkno + ",'" + ldt_date + "','";
                            //        sqlDetl += " '" + matnr + "','" + maktx + "','" + werks + "'," + anfme + ",'" + unit + "','" + ls_barcode + "');";
                            //        sqlWaitIn += " update cust_wait_pakin set loc_no='" + ls_locno + "',status='Y' where barcode='" + ls_barcode + "' and matnr='" + matnr + "';";
                            //        //break;
                            //    }
                            //}
                            //else
                            //{
                            //    lb_AnalyzeScale.Text = "无此入库条码数据--" + ls_barcode;
                            //    ///查询不到数据时退库到出库站
                            //    //Common.AddPlcQuereCmd(plcno, "04" + "9999" + li_stano.ToString().PadLeft(4, '0') + li_rStano.ToString().PadLeft(4, '0'));
                            //    continue;
                            //}
 
                            //int li_crnrow = int.Parse(ls_locno.Substring(0, 2));
                            //li_crnno = (li_crnrow + 1) / 2;
                            //int e_staNo = Common.getIoStaNo(1, li_crnno, li_stano);
 
                            //sql = sqlDetl;
                            //sql += " insert into asr_wrk_mast(wrk_no,wrk_sts,io_time,io_type,crn_no,io_pri,loc_no,sta_no,source_sta_no,barcode,ctn_type) ";
                            //sql += " values(" + li_wrkno + ",2,'" + ldt_date + "',1," + li_crnno + ",10,'" + ls_locno + "'," + e_staNo + "," + li_stano + ",'" + ls_barcode + "'," + li_loctype + "); ";
                            //sql += " update asr_loc_mast set loc_sts='S' where loc_no='" + ls_locno + "';";
                            //sql += sqlWaitIn;
                            //bool result = Common.ExecAsrsModify(sql);
                            //if (result)
                            //{
                            //    Common.gs_barcode_data[i] = "";
                            //    Common.AddPlcQuereCmd(plcno, "04" + li_wrkno.ToString("0000") + li_stano.ToString("0000") + e_staNo.ToString("0000"));
                            //    Common.plc_i_Wrk_no[plcno, seqno] = li_wrkno;
                            //    Common.plc_s_next_stn[plcno, seqno] = e_staNo.ToString();
                            //    Common.plc_i_pakmk[plcno, seqno] = 1;
                            //    Common.plc_s_inreq1[plcno, seqno] = "N";
                            //    toolStripStatusLabel4.Text = "";
                            //}
                            //else
                            //{
                            //    lb_AnalyzeScale.Text = "插入表asr_wrk_mast数据,更新asr_loc_mast表失败";
                            //    //toolStripStatusLabel4.Text = "8";
                            //}
                            //Common.gs_barcode = "";
                            #endregion
                        }
                    }
                    else
                    {
                        if (s_loading == "N")
                        {
                            //Common.gs_barcode_data[i] = "";
                            //lb_bar1.Text = "";
                        }
                        lb_AnalyzeScale.Text = "站点不符合条件--要求自动/有物/可入/有ID";
                        //toolStripStatusLabel4.Text = "3";
                    }
                }
            }
            catch (Exception em)
            {
                //common.Class1.scal = true;
                //toolStripStatusLabel4.Text = "9" + r.Message;
                lb_AnalyzeScale.Text = "Proc_GenerateStoreWrkFile出错--" + em.Message;
                Common.WriteLogFile("WcsError", "Proc_GenerateStoreWrkFile----" + em.Message);
                return;
            }
        }
 
        /// <summary>
        /// 入库站,入库站点至堆垛机入库站
        /// 查找工作档状态为1的资料,下达搬运指令给PLC
        /// 工作状态1-->2
        /// </summary>
        private void Proc_StnToCrnStn()
        {
            try
            {
                int stnno = 0, seqno = 0, ledno = 0;
                string s_dlocno = "", sql = "";
                int i_wrkno = 0, i_crnno = 0, i_wrksts = 0, i_iotype = 0, plcno = 0;
                string s_sstano = "", s_dstano = "";
                DateTime dt1 = System.DateTime.Now;
                for (int i = 0; i < 2; i++)
                {
                    switch (i)
                    {
                        case 0:
                            stnno = 104;
                            plcno = 0;
                            ledno = 0;
                            break;
                        case 1:
                            stnno = 204;
                            plcno = 0;
                            ledno = 1;
                            break;
                    }
                    seqno = Common.GetStnSeq(stnno);
                    //li_wrkno = Common.plc_i_Wrk_no[plcno, seqno];
 
                    string s_autoing = Common.plc_s_autoing[plcno, seqno];
                    string s_loading = Common.plc_s_loading[plcno, seqno];
                    string s_canining = Common.plc_s_canining[plcno, seqno];
                    string s_canouting = Common.plc_s_canouting[plcno, seqno];
                    string s_inreq1 = Common.plc_s_inreq1[plcno, seqno];
                    string s_inreq2 = Common.plc_s_inreq2[plcno, seqno];
                    int i_wrk_no = Common.plc_i_Wrk_no[plcno, seqno];
                    string s_next_stn = Common.plc_s_next_stn[plcno, seqno];
                    if (s_autoing == "Y" && s_loading == "Y"
                        && s_canining == "Y" && s_inreq2 == "Y"
                        && i_wrk_no >= 0 && (s_next_stn == stnno.ToString() || Common.plc_i_pakmk[plcno, seqno] == 1))
                    {
                        sql = "select top 1 loc_no,source_sta_no,sta_no,wrk_no,crn_no,wrk_sts,io_type from asr_wrk_mast where source_sta_no=" + stnno + " and wrk_sts=1 and (io_type=1 or io_type=10) order by io_pri desc,io_time,wrk_no ASC ";
                        //sql = "select top 1 loc_no,source_sta_no,sta_no,wrk_no,crn_no,wrk_sts,io_type from asr_wrk_mast where wrk_no=" + i_wrk_no + " and source_sta_no=" + stnno + " and wrk_sts=1 and (io_type=1 or io_type=10) order by io_pri desc,io_time,wrk_no ASC ";
                        try
                        {
                            DataView dv = Common.ExecAsrsSelect(sql);
                            if (dv.Count <= 0)
                            {
                                lb_StnToCrnStn.Text = "无入库数据处理--wrk_sts=1";
                                continue;
                            }
                            foreach (DataRowView drow in dv)
                            {
                                s_dlocno = drow[0].ToString();
                                s_sstano = drow[1].ToString();
                                s_dstano = drow[2].ToString();
                                i_wrkno = Convert.ToInt32(drow[3].ToString());
                                i_crnno = Convert.ToInt32(drow[4].ToString());
                                i_wrksts = Convert.ToInt32(drow[5].ToString());
                                i_iotype = Convert.ToInt32(drow[6].ToString());
                            }
                        }
                        catch (Exception e)
                        {
                            lb_StnToCrnStn.Text = "查询工作档数据出错--" + e.Message;
                            continue;
                        }
                        if (i_wrksts > 2 || (i_iotype != 1 && i_iotype != 10) || s_dstano == "" || s_sstano == "")
                        {
                            lb_StnToCrnStn.Text = "工作档资料不符--工作状态/入出类型/目标站/入库站";
                            continue;
                        }
                        if (Common.GetPlcQuereCount(plcno) >= Common.ci_plc_MAX)
                        {
                            lb_StnToCrnStn.Text = "PLC命令队列已满";
                            continue;
                        }
                        if (Common.ExecAsrsModify("update dbo.asr_wrk_mast set wrk_sts =2  where wrk_no =" + i_wrkno + "") == true)
                        {
                            Common.AddPlcQuereCmd(plcno, "04" + i_wrkno.ToString("0000") + s_sstano.PadLeft(4, '0') + s_dstano.PadLeft(4, '0'));
                            //Common.plc_i_pakmk[plcno, seqno] = 2;
                            Common.plc_i_Wrk_no[plcno, seqno] = i_wrkno;
                            Common.plc_s_next_stn[plcno, seqno] = s_dstano;
 
                            string ledMsg = "入库启动成功;库位号" + s_dlocno + ";工作号" + i_wrkno;
                            if (Common.gs_led_data_pre[ledno] != ledMsg)
                            {
                                Common.gs_led_data[ledno] = ledMsg;
                                Common.gs_led_data_pre[ledno] = ledMsg;
                            }
                        }
                        else
                        {
                            lb_StnToCrnStn.Text = "更新工作档失败--wrk_sts=2";
                        }
                    }
                    else
                    {
                        lb_StnToCrnStn.Text = "站点不符合条件--要求自动/有物/可入/有ID";
                    }
 
                }
            }
            catch (Exception em)
            {
                Common.WriteLogFile("WcsError", "Proc_StnToCrnStn----" + em.Message);
            }
        }
 
        /// <summary>
        /// 插入物料数据到ASRS基本档
        /// </summary>
        /// <param name="dv_mat"></param>
        private bool insertBasMatCode(DataView dv_mat)
        {
            bool result = false;
            string str1 = "", str2 = "", str3 = "", str4 = "", str5 = "", str6 = "", str7 = "", str8 = "", str9 = "", str10 = "";
            string str11 = "", str12 = "", str13 = "", str14 = "", str15 = "", str16 = "", str17 = "", str18 = "", str19 = "", str20 = "";
            string str21 = "", str22 = "", str23 = "";
            string ls_mat_no = "", ls_mat_name = "", date1 = "";
            double num1 = 0, num2 = 0, num3 = 0, num4 = 0, num5 = 0, num6 = 0;
            try
            {
                if (dv_mat != null && dv_mat.Count > 0)
                {
                    foreach (DataRowView drow in dv_mat)
                    {
                        str1 = drow[0].ToString();
                        str2 = drow[1].ToString();
                        num1 = (drow[2].ToString() != "") ? double.Parse(drow[2].ToString()) : 0;
                        num2 = (drow[3].ToString() != "") ? double.Parse(drow[3].ToString()) : 0;
                        str3 = drow[4].ToString();
                        ls_mat_name = drow[5].ToString();
                        str4 = drow[6].ToString();
                        ls_mat_no = drow[7].ToString();
                        str5 = drow[8].ToString();
                        str6 = drow[9].ToString();
                        date1 = drow[10].ToString();
                        num3 = (drow[11].ToString() != "") ? double.Parse(drow[11].ToString()) : 0;
                        str7 = drow[12].ToString();
                        str8 = drow[13].ToString();
                        num4 = (drow[14].ToString() != "") ? double.Parse(drow[14].ToString()) : 0;
                        str9 = drow[15].ToString();
                        str10 = drow[16].ToString();
                        str11 = drow[17].ToString();
                        str12 = drow[18].ToString();
                        str13 = drow[19].ToString();
                        str14 = drow[20].ToString();
                        str15 = drow[21].ToString();
                        str16 = drow[22].ToString();
                        str17 = drow[23].ToString();
                        num5 = (drow[24].ToString() != "") ? double.Parse(drow[24].ToString()) : 0;
                        str18 = drow[25].ToString();
                        str19 = drow[26].ToString();
                        num6 = (drow[27].ToString() != "") ? double.Parse(drow[27].ToString()) : 0;
                        str20 = drow[28].ToString();
                        str21 = drow[28].ToString();
                        str22 = drow[30].ToString();
                        str23 = drow[31].ToString();
                    }
                    string sql = "insert into bas_mat_code(mat_no,mat_name,str1,str2,str3,str4,str5,str6,str7,str8,str9, ";
                    sql += " str10,str11,str12,str13,str14,str15,str16,str17,str18,str19,str20,str21,str22,str23,date1, ";
                    sql += " num1,num2,num3,num4,num5,num6,status) ";
                    sql += " values('" + ls_mat_no + "','" + ls_mat_name + "','" + str1 + "','" + str2 + "','" + str3 + "','" + str4 + "','" + str5 + "', ";
                    sql += " '" + str6 + "','" + str7 + "','" + str8 + "','" + str9 + "','" + str10 + "','" + str11 + "','" + str12 + "','" + str13 + "', ";
                    sql += " '" + str14 + "','" + str15 + "','" + str16 + "','" + str17 + "','" + str18 + "','" + str19 + "','" + str20 + "','" + str21 + "', ";
                    sql += " '" + str22 + "','" + str23 + "','" + date1 + "'," + num1 + "," + num2 + "," + num3 + "," + num4 + "," + num5 + "," + num6 + ",1)";
                    result = Common.ExecAsrsModify(sql);
                }
            }
            catch (Exception em)
            {
                Common.WriteLogFile("WcsError", "insertBasMatCode----" + em.Message);
            }
            return result;
        }
 
        /// <summary>
        /// 入库站,磅秤称重和条码扫描后,直接生成工作档,并下发指令给PLC
        /// 生成档,工作状态为2
        /// </summary>
        private void Proc_AnalyzeScale()
        {
            try
            {
                for (int i = 0; i < 2; i++)
                {
                    int plcno = 0, seqno = 0, li_wrkno = 0, li_stano = 0, li_crnno = 0;
                    int li_loctype = 0;
                    //double ld_wt = 0;
                    string ls_locno = "", sql = "";
                    string ls_barcode = "", ls_mat_no = "";
 
                    switch (i)
                    {
                        case 0:
                            li_stano = 104;
                            plcno = 0;
                            break;
                        case 1:
                            li_stano = 204;
                            plcno = 0;
                            break;
                    }
                    //ld_wt = Common.gd_gross_wt[0];
                    ls_barcode = Common.gs_barcode_data[i];
                    seqno = Common.GetStnSeq(li_stano);
                    string s_autoing = Common.plc_s_autoing[plcno, seqno];
                    string s_loading = Common.plc_s_loading[plcno, seqno];
                    string s_inreq1 = Common.plc_s_inreq1[plcno, seqno];
                    int i_wrk_no = Common.plc_i_Wrk_no[plcno, seqno];
                    string s_next_stn = Common.plc_s_next_stn[plcno, seqno];
 
                    if (s_autoing == "Y" && s_loading == "Y" && s_inreq1 == "Y" && i_wrk_no == 9999
                         && s_next_stn == li_stano.ToString())// && Common.plc_i_pakmk[plcno, seqno] == 0)
                    {
                        if (ls_barcode == "" || ls_barcode == null)
                        {   //超重、条码为空
                            lb_AnalyzeScale.Text = "磅秤超重或条码为空--条码" + ls_barcode;
                            //toolStripStatusLabel4.Text = "4";
                            continue;
                        }
                        else
                        {
                            sql = " select * from APPS.CUX_INV_ONHAND_HSTORE_V where LPN_NUMBER='" + ls_barcode + "'";
                            DataView dv_mat = Common.ExecErpSelect(sql);
                            if (dv_mat != null && dv_mat.Count > 0)
                            {
                                foreach (DataRowView drow in dv_mat)
                                {
                                    //insertBasMatCode(dv_mat);
                                    ls_mat_no = drow[0].ToString();
                                }
                            }
                            else
                            {
                                lb_AnalyzeScale.Text = "无此入库条码数据--" + ls_barcode;
                                string ledMsg = "入库档无此条码;" + ls_barcode;
                                if (i < 2)
                                {
                                    if (Common.gs_led_data_pre[0] != ledMsg)
                                    {
                                        Common.gs_led_data[0] = ledMsg;
                                        Common.gs_led_data_pre[0] = ledMsg;
                                    }
                                }
                                else
                                {
                                    if (Common.gs_led_data_pre[2] != ledMsg)
                                    {
                                        Common.gs_led_data[2] = ledMsg;
                                        Common.gs_led_data_pre[2] = ledMsg;
                                    }
                                }
                                continue;
                            }
 
                            li_wrkno = Common.GetWrkno(0);
                            if (Common.plc_s_loctype[plcno - 1, i] == "Y")
                            {
                                li_loctype = 2;
                            }
                            else if (Common.plc_s_loctype[plcno - 1, i] == "N")
                            {
                                li_loctype = 1;
                            }
                            else
                            {
                                continue;
                            }
                            int stnType = 1;
                            if (li_stano > 2000)
                            {
                                stnType = 2;
                            }
                            ls_locno = Common.GetLocNo(1, li_loctype, 0, li_stano, stnType);
                            if (li_wrkno == 0 || ls_locno == "")
                            {
                                //toolStripStatusLabel4.Text = "磅秤站入库得到工作号和库位号失败";
                                lb_AnalyzeScale.Text = "生成工作号和库位失败--工作号" + li_wrkno + ";库位" + ls_locno;
                                continue;
                            }
                            int li_crnrow = int.Parse(ls_locno.Substring(0, 2));
                            li_crnno = (li_crnrow + 1) / 2;
                            int e_staNo = Common.getIoStaNo(1, li_crnno, li_stano);
                            DateTime ldt_date = DateTime.Now;
                            sql = " insert into asr_wrk_detl(wrk_no,io_time,mat_no) values(" + li_wrkno + ",'" + ldt_date + "','" + ls_mat_no + "');";
                            sql += " insert into asr_wrk_mast(wrk_no,wrk_sts,io_time,io_type,crn_no,io_pri,loc_no,sta_no,source_sta_no,barcode,ctn_type) ";
                            sql += " values(" + li_wrkno + ",2,'" + ldt_date + "',1," + li_crnno + ",10,'" + ls_locno + "'," + e_staNo + "," + li_stano + ",'" + ls_barcode + "'," + li_loctype + "); ";
                            sql += " update asr_loc_mast set loc_sts='S' where loc_no='" + ls_locno + "';";
                            //sql += " update bas_mat_code set status=1 where barcode='" + ls_barcode + "'";
                            bool result = Common.ExecAsrsModify(sql);
                            if (result)
                            {
                                Common.gs_barcode_data[i] = "";
                                Common.AddPlcQuereCmd(plcno, "04" + li_wrkno.ToString("0000") + li_stano.ToString("0000") + e_staNo.ToString("0000"));
                                Common.plc_i_Wrk_no[plcno, seqno] = li_wrkno;
                                Common.plc_s_next_stn[plcno, seqno] = e_staNo.ToString();
                                //Common.plc_i_pakmk[plcno, seqno] = 1;
                                toolStripStatusLabel4.Text = "";
                                //toolStripStatusLabel4.Text = "";
                                string ledMsg = "库位:" + ls_locno + ";" + ls_mat_no;
                                if (i < 2)
                                {
                                    if (Common.gs_led_data_pre[0] != ledMsg)
                                    {
                                        Common.gs_led_data[0] = ledMsg;
                                        Common.gs_led_data_pre[0] = ledMsg;
                                    }
                                }
                                else
                                {
                                    if (Common.gs_led_data_pre[2] != ledMsg)
                                    {
                                        Common.gs_led_data[2] = ledMsg;
                                        Common.gs_led_data_pre[2] = ledMsg;
                                    }
                                }
                            }
                            else
                            {
                                lb_AnalyzeScale.Text = "插入表asr_wrk_mast数据,更新asr_loc_mast表失败";
                                //toolStripStatusLabel4.Text = "8";
                            }
                            //Common.gs_barcode = "";
                        }
                    }
                    else
                    {
                        lb_AnalyzeScale.Text = "站点不符合条件--要求自动/有物/可入/有ID";
                        //toolStripStatusLabel4.Text = "3";
                    }
                }
            }
            catch (Exception em)
            {
                //common.Class1.scal = true;
                //toolStripStatusLabel4.Text = "9" + r.Message;
                lb_AnalyzeScale.Text = "Proc_AnalyzeScale出错--" + em.Message;
                Common.WriteLogFile("WcsError", "Proc_AnalyzeScale----" + em.Message);
                return;
            }
        }
 
        /// <summary>
        /// 设备出库站,发送出货数据到LED后,更新LED标记OVE_MK
        /// </summary>
        //private void Proc_SendOutDataToLed()
        //{
        //    try
        //    {
        //        int stnno = 0, seqno = 0, li_crnno = 0;
        //        string sql = "", ls_locno = "", s_outabled = "";
        //        string s_slocno = "", s_dlocno = "", s_picking = "N", s_emptymk = "N";
        //        string s_sstano = "", s_dstano = "", ls_matnr = "", ls_maktx = "", ls_anfme = "", ls_altme = "", ls_anfme1 = "";
        //        int i_wrkno = 0, i_crnno = 0, i_wrksts = 0, i_iotype = 0, plcno = 0, ledno = 0;
        //        DateTime dt1 = System.DateTime.Now;
        //        for (int i = 0; i < 3; i++)
        //        {
        //            switch (i)
        //            {
        //                case 0:
        //                    stnno = 6;
        //                    plcno = 0;
        //                    ledno = 0;
        //                    break;
        //                case 1:
        //                    stnno = 8;
        //                    plcno = 0;
        //                    ledno = 1;
        //                    break;
        //                case 2:
        //                    stnno = 13;
        //                    plcno = 0;
        //                    ledno = 2;
        //                    break;
        //            }
        //            seqno = Common.GetStnSeq(stnno);
        //            string s_autoing = Common.plc_s_autoing[plcno, seqno];
        //            string s_loading = Common.plc_s_loading[plcno, seqno];
        //            string s_inreq1 = Common.plc_s_inreq1[plcno, seqno];
        //            int i_wrk_no = Common.plc_i_Wrk_no[plcno, seqno];
        //            string s_next_stn = Common.plc_s_next_stn[plcno, seqno];
 
        //            if (s_loading == "Y" && i_wrk_no > 0)
        //            {
        //                sql = "select top 1 source_loc_no,loc_no,source_sta_no,sta_no,picking,wrk_no,crn_no,wrk_sts,io_type,empty_mk ";
        //                sql += " from asr_wrk_mast where wrk_no=" + i_wrk_no + " and (sta_no=4 or sta_no=13) and io_type>100 ";
        //                //sql += " from asr_wrk_mast where wrk_no=" + i_wrk_no + " and sta_no=" + stnno + " and io_type>100 ";
        //                DataView dv = Common.ExecAsrsSelect(sql);
        //                if (dv.Count <= 0)
        //                {
        //                    lb_CrnStnToOutStn.Text = "查询无资料--wrk_no=" + i_wrk_no;
        //                    continue;
        //                }
        //                foreach (System.Data.DataRowView drow in dv)
        //                {
        //                    s_slocno = drow[0].ToString();
        //                    s_dlocno = drow[1].ToString();
        //                    s_sstano = drow[2].ToString();
        //                    s_dstano = drow[3].ToString();
        //                    s_picking = drow[4].ToString();
        //                    i_wrkno = Convert.ToInt32(drow[5].ToString());
        //                    i_crnno = Convert.ToInt32(drow[6].ToString());
        //                    i_wrksts = Convert.ToInt32(drow[7].ToString());
        //                    i_iotype = Convert.ToInt32(drow[8].ToString());
        //                    s_emptymk = drow[9].ToString();
        //                }
        //                if (i_iotype == 103)    //拣料模式,更新打印需求标记,回报调用SAP打印接口
        //                {
        //                    UpdateWaitOutPrintMk(i_wrkno);
        //                }
        //                if (i_wrksts < 14 || i_iotype < 100) continue;
        //                if (s_emptymk == "Y")
        //                {
        //                    string ledMsg = "空盘出库;库位:" + s_slocno + ";;;;;;";
        //                    if (Common.gs_led_data_pre[ledno] != ledMsg)
        //                    {
        //                        Common.gs_led_data[ledno] = ledMsg;
        //                        Common.gs_led_data_pre[ledno] = ledMsg;
        //                    }
        //                }
        //                else
        //                {
        //                    sql = "select matnr from asr_wrk_detl where wrk_no=" + i_wrk_no + " ";
        //                    DataView dv_detlCnt = Common.ExecAsrsSelect(sql);
        //                    if (dv_detlCnt != null)
        //                    {
        //                        int count = dv_detlCnt.Count;
        //                        int yushu = 0;
        //                        if (dv_detlCnt.Count % 7 > 0)  //有余数时页码加1
        //                        {
        //                            yushu = 1;
        //                        }
        //                        Common.gi_led_PageNumber[ledno] = (int)(dv_detlCnt.Count / 7) + yushu;
        //                    }
 
        //                    string s_type = "";
        //                    if (i_iotype == 101)
        //                    {
        //                        s_type = "出库库位: " + s_slocno;
        //                        //sql = "select matnr,maktx,anfme,altme,anfme from asr_wrk_detl where wrk_no=" + i_wrk_no + " ";
        //                        int index = (Common.gi_led_CurPageNumber[ledno] - 1) * 7 + 1;
        //                        int end = Common.gi_led_CurPageNumber[ledno] * 7;
        //                        sql = " select * from (select matnr,maktx,anfme,altme,anfme as anfme1,ROW_NUMBER() OVER(Order by modi_time,matnr) as rowid ";
        //                        sql += " from asr_wrk_detl where wrk_no=" + i_wrk_no + " ) a ";
        //                        sql += " where rowid between (" + index + ") and (" + end + ")";
        //                    }
        //                    else if (i_iotype == 103)
        //                    {
        //                        s_type = "拣料库位: " + s_slocno;
        //                    }
        //                    else if (i_iotype == 104)
        //                    {
        //                        s_type = "并板库位: " + s_slocno;
        //                    }
        //                    if (i_iotype == 107)
        //                    {
        //                        s_type = "盘点库位: " + s_slocno;
        //                    }
        //                    //sql = "select matnr,maktx,anfme,altme from asr_wrk_detl where wrk_no=" + i_wrk_no + " ";
        //                    if (i_iotype != 101)
        //                    {
        //                        int index = (Common.gi_led_CurPageNumber[ledno] - 1) * 7 + 1;
        //                        int end = Common.gi_led_CurPageNumber[ledno] * 7;
        //                        sql = "select * from (select a.matnr,a.maktx,a.anfme,a.altme,b.anfme as anfme1,ROW_NUMBER() OVER(Order by a.modi_time,a.matnr) as rowid  ";
        //                        sql += " from asr_wrk_detl a,asr_loc_detl b,asr_wrk_mast c where a.wrk_no=" + i_wrk_no + " ";
        //                        sql += " and a.wrk_no=c.wrk_no and a.matnr=b.matnr and c.source_loc_no=b.loc_no ) a";
        //                        sql += " where rowid between (" + index + ") and (" + end + ") ";
        //                    }
        //                    DataView dv_detl = Common.ExecAsrsSelect(sql);
        //                    if (dv_detl.Count <= 0)
        //                    {
        //                        lb_CrnStnToOutStn.Text = "查询无资料--wrk_no=" + i_wrk_no;
        //                        continue;
        //                    }
 
        //                    string ls_ledData = s_type + ";";
        //                    double li_anfme = 0, li_anfme1 = 0;
        //                    foreach (System.Data.DataRowView drow in dv_detl)
        //                    {
        //                        ls_matnr = drow[0].ToString();
        //                        ls_maktx = drow[1].ToString();
        //                        if (ls_maktx.Length > 4)
        //                        {
        //                            ls_maktx = ls_maktx.Substring(0, 5) + ".";
        //                        }
        //                        ls_maktx = ls_maktx.Replace(',', ' ');
        //                        ls_maktx = ls_maktx.Replace(';', ' ');
        //                        //ls_maktx = "";
        //                        ls_anfme = drow[2].ToString();
        //                        if (ls_anfme != "")
        //                        {
        //                            li_anfme = double.Parse(ls_anfme);
        //                        }
        //                        ls_altme = drow[3].ToString();
        //                        ls_anfme1 = drow[4].ToString();
        //                        if (ls_anfme1 != "")
        //                        {
        //                            li_anfme1 = double.Parse(ls_anfme1);
        //                        }
        //                        if (i_iotype == 107)
        //                        {
        //                            ls_ledData += ls_matnr + " " + ls_maktx + ";";
        //                            //ls_ledData += ls_matnr + " " + ls_maktx + " QTY:" + li_anfme + "/STK:" + li_anfme1 + ";";
        //                        }
        //                        else
        //                        {
        //                            ls_ledData += ls_matnr + " " + ls_maktx + " 数量:" + li_anfme + "/库存:" + li_anfme1 + ";";
        //                        }
        //                    }
        //                    ls_ledData = ls_ledData.Substring(0, ls_ledData.Length - 1);
        //                    switch (ls_ledData.Split(';').Length)
        //                    {
        //                        case 1:
        //                            ls_ledData += ";;;;;;;";
        //                            break;
        //                        case 2:
        //                            ls_ledData += ";;;;;;";
        //                            break;
        //                        case 3:
        //                            ls_ledData += ";;;;;";
        //                            break;
        //                        case 4:
        //                            ls_ledData += ";;;;";
        //                            break;
        //                        case 5:
        //                            ls_ledData += ";;;";
        //                            break;
        //                        case 6:
        //                            ls_ledData += ";;";
        //                            break;
        //                        case 7:
        //                            ls_ledData += ";";
        //                            break;
        //                        default:
        //                            break;
        //                    }
 
        //                    if (Common.gs_led_data_pre[ledno] != ls_ledData)
        //                    {
        //                        if (Common.gi_led_PageNumber[ledno] == 1 ||
        //                            (Common.gi_led_PageNumber[ledno] > 1 && (Common.gi_led_Counts[ledno] % 8) == 0))
        //                        {
        //                            Common.gs_led_data[ledno] = ls_ledData;
        //                            Common.gs_led_data_pre[ledno] = ls_ledData;
        //                            Common.gi_led_CurPageNumber[ledno]++;
        //                            if (Common.gi_led_CurPageNumber[ledno] > Common.gi_led_PageNumber[ledno])
        //                            {
        //                                Common.gi_led_CurPageNumber[ledno] = 1;
        //                            }
        //                        }
        //                        if (Common.gi_led_PageNumber[ledno] > 1)
        //                        {
        //                            Common.gi_led_Counts[ledno]++;
        //                            if (Common.gi_led_Counts[ledno] > 8)
        //                            {
        //                                Common.gi_led_Counts[ledno] = 1;
        //                            }
        //                        }
        //                    }
        //                }
 
        //                sql = "update asr_wrk_mast set ove_mk='Y' where wrk_no =" + i_wrkno + "";
        //                Common.ExecAsrsModify(sql);
        //            }
        //            else
        //            {
        //                string ledMsg = ";;;;;;;";
        //                if (Common.gs_led_data_pre[ledno] != ledMsg)
        //                {
        //                    Common.gi_led_PageNumber[ledno] = 1;
        //                    Common.gi_led_CurPageNumber[ledno] = 1;
        //                    Common.gi_led_Counts[ledno] = 0;
        //                    //Common.gi_led_Pages[ledno] = 1;
        //                    Common.gs_led_data[ledno] = ledMsg;
        //                    Common.gs_led_data_pre[ledno] = ledMsg;
        //                }
        //            }
        //        }
        //    }
        //    catch (Exception em)
        //    {
        //        Common.WriteLogFile("WcsError", "Proc_SendOutDataToLed----" + em.Message);
        //    }
        //}
 
        #region LED显示,已注释
        ///// <summary>
        ///// 设备出库站,发送出货数据到LED后,更新LED标记OVE_MK
        ///// </summary>
        //private void Proc_SendOutDataToLed()
        //{
        //    try
        //    {
        //        int stnno = 0, seqno = 0, li_crnno = 0;
        //        string sql = "", ls_locno = "", s_outabled = "";
        //        string s_slocno = "", s_dlocno = "", s_picking = "N", s_emptymk = "N";
        //        string s_sstano = "", s_dstano = "", ls_matnr = "", ls_maktx = "", ls_anfme = "", ls_altme = "", ls_anfme1 = "";
        //        int i_wrkno = 0, i_crnno = 0, i_wrksts = 0, i_iotype = 0, plcno = 0, ledno = 0;
        //        DateTime dt1 = System.DateTime.Now;
        //        for (int i = 0; i < 3; i++)
        //        {
        //            switch (i)
        //            {
        //                case 0:
        //                    stnno = 6;
        //                    plcno = 0;
        //                    ledno = 0;
        //                    break;
        //                case 1:
        //                    stnno = 8;
        //                    plcno = 0;
        //                    ledno = 1;
        //                    break;
        //                case 2:
        //                    stnno = 13;
        //                    plcno = 0;
        //                    ledno = 2;
        //                    break;
        //            }
        //            seqno = Common.GetStnSeq(stnno);
        //            string s_autoing = Common.plc_s_autoing[plcno, seqno];
        //            string s_loading = Common.plc_s_loading[plcno, seqno];
        //            string s_inreq1 = Common.plc_s_inreq1[plcno, seqno];
        //            int i_wrk_no = Common.plc_i_Wrk_no[plcno, seqno];
        //            string s_next_stn = Common.plc_s_next_stn[plcno, seqno];
 
        //            //if (s_autoing == "Y" && s_loading == "Y" && i_wrk_no > 0)
        //            if (s_loading == "Y" && i_wrk_no > 0)
        //            {
        //                sql = "select top 1 source_loc_no,loc_no,source_sta_no,sta_no,picking,wrk_no,crn_no,wrk_sts,io_type,empty_mk ";
        //                sql += " from asr_wrk_mast where wrk_no=" + i_wrk_no + " and (sta_no=4 or sta_no=13) and io_type>100 ";
        //                //sql += " from asr_wrk_mast where wrk_no=" + i_wrk_no + " and sta_no=" + stnno + " and io_type>100 ";
        //                DataView dv = Common.ExecAsrsSelect(sql);
        //                if (dv.Count <= 0)
        //                {
        //                    lb_CrnStnToOutStn.Text = "查询无资料--wrk_no=" + i_wrk_no;
        //                    continue;
        //                }
        //                foreach (System.Data.DataRowView drow in dv)
        //                {
        //                    s_slocno = drow[0].ToString();
        //                    s_dlocno = drow[1].ToString();
        //                    s_sstano = drow[2].ToString();
        //                    s_dstano = drow[3].ToString();
        //                    s_picking = drow[4].ToString();
        //                    i_wrkno = Convert.ToInt32(drow[5].ToString());
        //                    i_crnno = Convert.ToInt32(drow[6].ToString());
        //                    i_wrksts = Convert.ToInt32(drow[7].ToString());
        //                    i_iotype = Convert.ToInt32(drow[8].ToString());
        //                    s_emptymk = drow[9].ToString();
        //                }
        //                if (i_iotype == 103)    //拣料模式,更新打印需求标记,回报调用SAP打印接口
        //                {
        //                    UpdateWaitOutPrintMk(i_wrkno);
        //                }
        //                if (i_wrksts < 14 || i_iotype < 100) continue;
        //                if (s_emptymk == "Y")
        //                {
        //                    string ledMsg = "空盘出库;库位:" + s_slocno + ";;";
        //                    if (Common.gs_led_data_pre[ledno] != ledMsg)
        //                    {
        //                        Common.gi_led_PageSize[ledno] = 4;
        //                        Common.gs_led_data[ledno] = ledMsg;
        //                        Common.gs_led_data_pre[ledno] = ledMsg;
        //                    }
        //                }
        //                else
        //                {
        //                    string s_type = "";
        //                    if (i_iotype == 101)
        //                    {
        //                        s_type = "出库库位: " + s_slocno;
        //                        sql = "select matnr,maktx,anfme,altme,anfme from asr_wrk_detl where wrk_no=" + i_wrk_no + " ";
        //                    }
        //                    else if (i_iotype == 103)
        //                    {
        //                        s_type = "拣料库位: " + s_slocno;
        //                    }
        //                    else if (i_iotype == 104)
        //                    {
        //                        s_type = "并板库位: " + s_slocno;
        //                    }
        //                    if (i_iotype == 107)
        //                    {
        //                        s_type = "盘点库位: " + s_slocno;
        //                    }
        //                    //sql = "select matnr,maktx,anfme,altme from asr_wrk_detl where wrk_no=" + i_wrk_no + " ";
        //                    if (i_iotype != 101)
        //                    {
        //                        sql = "select a.matnr,a.maktx,a.anfme,a.altme,b.anfme from asr_wrk_detl a,asr_loc_detl b,asr_wrk_mast c ";
        //                        sql += " where a.wrk_no=" + i_wrk_no + " and a.wrk_no=c.wrk_no";
        //                        sql += " and a.matnr=b.matnr and c.source_loc_no=b.loc_no";
        //                    }
        //                    DataView dv_detl = Common.ExecAsrsSelect(sql);
        //                    if (dv_detl.Count <= 0)
        //                    {
        //                        lb_CrnStnToOutStn.Text = "查询无资料--wrk_no=" + i_wrk_no;
        //                        continue;
        //                    }
        //                    int li_1 = 1, li_2 = 1;
        //                    if (dv_detl.Count < 4)
        //                    {
        //                        Common.gi_led_PageSize[ledno] = 4;
        //                    }
        //                    else if (dv_detl.Count >= 4 && dv_detl.Count < 7)
        //                    {
        //                        Common.gi_led_PageSize[ledno] = 8;
        //                        li_1 = 1;
        //                    }
        //                    else
        //                    {
        //                        Common.gi_led_PageSize[ledno] = 8;
        //                        li_1 = 2;
        //                    }
        //                    //else if (dv_detl.Count > 8)
        //                    //{
        //                    //    li_1 = 3;
        //                    //}
        //                    string ls_ledData = s_type + ";";
        //                    int li_anfme = 0, li_anfme1 = 0;
        //                    foreach (System.Data.DataRowView drow in dv_detl)
        //                    {
        //                        ls_matnr = drow[0].ToString();
        //                        ls_maktx = drow[1].ToString();
        //                        if (ls_maktx.Length > 4)
        //                        {
        //                            ls_maktx = ls_maktx.Substring(0, 5) + ".";
        //                        }
        //                        ls_maktx = ls_maktx.Replace(',',' ');
        //                        ls_maktx = ls_maktx.Replace(';', ' ');
        //                        ls_anfme = drow[2].ToString();
        //                        if (ls_anfme != "")
        //                        {
        //                            li_anfme = (int)double.Parse(ls_anfme);
        //                        }
        //                        ls_altme = drow[3].ToString();
        //                        ls_anfme1 = drow[4].ToString();
        //                        if (ls_anfme1 != "")
        //                        {
        //                            li_anfme1 = (int)double.Parse(ls_anfme1);
        //                        }
        //                        if (i_iotype == 107)
        //                        {
        //                            if (li_2 % li_1 == 0)
        //                            {
        //                                ls_ledData += ls_matnr + " " + ls_maktx + ";";
        //                            }
        //                            else
        //                            {
        //                                ls_ledData += ls_matnr + " " + ls_maktx + ",   ";
        //                            }
        //                        }
        //                        else
        //                        {
        //                            if (li_2 % li_1 == 0)
        //                            {
        //                                ls_ledData += ls_matnr + " " + ls_maktx + " Q:" + li_anfme + "/" + li_anfme1 + ";";
        //                            }
        //                            else
        //                            {
        //                                ls_ledData += ls_matnr + " " + ls_maktx + " Q:" + li_anfme + "/" + li_anfme1 + ",  ";
        //                            }
        //                        }
        //                        li_2++;
        //                    }
        //                    switch (ls_ledData.Split(';').Length)
        //                    {
        //                        case 1:
        //                            if (Common.gi_led_PageSize[ledno] == 4) ls_ledData += ";;;";
        //                            else ls_ledData += ";;;;;;;";
        //                            break;
        //                        case 2:
        //                            if (Common.gi_led_PageSize[ledno] == 4) ls_ledData += ";;";
        //                            else ls_ledData += ";;;;;;";
        //                            break;
        //                        case 3:
        //                            if (Common.gi_led_PageSize[ledno] == 4) ls_ledData += ";";
        //                            else ls_ledData += ";;;;;";
        //                            break;
        //                        case 4:
        //                            if (Common.gi_led_PageSize[ledno] == 4) ls_ledData += "";
        //                            else ls_ledData += ";;;;";
        //                            break;
        //                        case 5:
        //                            Common.gi_led_PageSize[ledno] = 8;
        //                            ls_ledData += ";;;";
        //                            break;
        //                        case 6:
        //                            Common.gi_led_PageSize[ledno] = 8;
        //                            ls_ledData += ";;";
        //                            break;
        //                        case 7:
        //                            Common.gi_led_PageSize[ledno] = 8;
        //                            ls_ledData += ";";
        //                            break;
        //                        default:
        //                            break;
        //                    }
        //                    //switch (dv_detl.Count)
        //                    //{
        //                    //    case 1:
        //                    //        if (Common.gi_led_PageSize[ledno] == 4) ls_ledData += ";";
        //                    //        else ls_ledData += ";;;;;";
        //                    //        break;
        //                    //    case 2:
        //                    //        if (Common.gi_led_PageSize[ledno] == 4) ls_ledData += "";
        //                    //        else ls_ledData += ";;;;";
        //                    //        break;
        //                    //    case 3:
        //                    //        ls_ledData += ";;;";
        //                    //        break;
        //                    //    case 4:
        //                    //        ls_ledData += ";;";
        //                    //        break;
        //                    //    case 5:
        //                    //        ls_ledData += ";";
        //                    //        break;
        //                    //    case 6:
        //                    //        ls_ledData += "";
        //                    //        break;
        //                    //    default:
        //                    //        break;
        //                    //}
 
        //                    if (Common.gs_led_data_pre[ledno] != ls_ledData)
        //                    {
        //                        Common.gs_led_data[ledno] = ls_ledData;
        //                        Common.gs_led_data_pre[ledno] = ls_ledData;
        //                    }
        //                }
 
        //                sql = "update asr_wrk_mast set ove_mk='Y' where wrk_no =" + i_wrkno + "";
        //                Common.ExecAsrsModify(sql);
        //            }
        //            else
        //            {
        //                string ledMsg = ";;;";
        //                if (Common.gs_led_data_pre[ledno] != ledMsg)
        //                {
        //                    Common.gi_led_PageSize[ledno] = 4;
        //                    Common.gs_led_data[ledno] = ledMsg;
        //                    Common.gs_led_data_pre[ledno] = ledMsg;
        //                }
        //            }
        //        }
        //    }
        //    catch (Exception em)
        //    {
        //        Common.WriteLogFile("WcsError", "Proc_SendOutDataToLed----" + em.Message);
        //    }
        //}
        #endregion
 
        /// <summary>
        /// 拣料模式,更新打印需求标记,回报调用SAP打印接口
        /// </summary>
        /// <param name="wrk_no">工作号</param>
        private void UpdateWaitOutPrintMk(int wrk_no)
        {
            try
            {
                string sql = "select lgnum,tbnum,tbpos,zmatid,matnr,maktx,werks,anfme,altme,zpallet,bname from asr_wrk_detl where wrk_no=" + wrk_no;
                DataView dv_wrkdet = Common.ExecAsrsSelect(sql);
                if (dv_wrkdet == null || dv_wrkdet.Count < 1)
                {
                    return;
                }
                string sqlDetl = "";
                foreach (DataRowView drow in dv_wrkdet)
                {
                    string lgnum = "", tbnum = "", tbpos = "", zmatid = "", matnr = "", maktx = "", werks = "", anfme = "", altme = "", zpallet = "", bname = "";
                    lgnum = drow[0].ToString();
                    tbnum = drow[1].ToString();
                    tbpos = drow[2].ToString();
                    zmatid = drow[3].ToString();
                    matnr = drow[4].ToString();
                    maktx = drow[5].ToString();
                    werks = drow[6].ToString();
                    anfme = drow[7].ToString();
                    altme = drow[8].ToString();
                    zpallet = drow[9].ToString();
                    bname = drow[10].ToString();
                    sqlDetl += " update cust_wait_pakout set prnstatus=1 where lgnum='" + lgnum + "' and tanum=" + tbnum;
                    sqlDetl += " and tapos=" + tbpos + " and matnr=" + matnr + " and action=2 and prnstatus=0;";
                }
                bool result = Common.ExecAsrsModify(sqlDetl);
            }
            catch (Exception em)
            {
                Common.WriteLogFile("WcsError", "UpdateWaitOutPrintMk----" + em.Message);
            }
        }
 
        /// <summary>
        /// 空栈板初始化入库,叉车入库站放货
        /// 根据站点信号,启动入库,下发命令给PLC
        /// </summary>
        private void Proc_StoreEmptyPlt()
        {
            try
            {
                for (int i = 0; i < 2; i++)
                {
                    int plcno = 0, seqno = 0, li_wrkno = 0, li_stano = 0, li_crnno = 0, ledno = 0;
                    int li_loctype = 1, li_rStano = 0;
                    //double ld_wt = 0;
                    string ls_locno = "", sql = "";
                    string ls_barcode = "";
                    DateTime ldt_date = DateTime.Now;
 
                    switch (i)
                    {
                        case 0:
                            li_stano = 104;
                            li_rStano = 101;     //退库站
                            ledno = 0;
                            plcno = 0;
                            break;
                        case 1:
                            li_stano = 104;
                            li_rStano = 113;     //退库站
                            ledno = 1;
                            plcno = 0;
                            break;
                        case 2:
                            li_stano = 104;
                            li_rStano = 127;     //退库站
                            ledno = 1;
                            plcno = 1;
                            break;
 
 
 
 
 
 
                    }
 
                    seqno = Common.GetStnSeq(li_stano);
                    ls_barcode = Common.gs_barcode_data[i];
                    string s_autoing = Common.plc_s_autoing[plcno, seqno];
                    string s_loading = Common.plc_s_loading[plcno, seqno];
                    string s_canining = Common.plc_s_canining[plcno, seqno];
                    string s_emptyMk = Common.plc_s_inreq1[plcno, seqno];
                    int i_wrk_no = Common.plc_i_Wrk_no[plcno, seqno];
                    string s_next_stn = Common.plc_s_next_stn[plcno, seqno];
 
                    if (s_autoing == "Y" && s_loading == "Y" && s_canining == "Y"
                         && s_next_stn == li_stano.ToString() && s_emptyMk == "Y"
                         && i_wrk_no == 9999 && Common.plc_i_pakmk[plcno, seqno] == 0)
                    {
                        #region  生成工作档
                        //int stnType = 1;
 
                        //ls_locno = Common.GetLocNo(10, li_loctype, 0, li_stano, stnType);
                        //if (ls_locno == "")
                        //{
                        //    //toolStripStatusLabel4.Text = "磅秤站入库得到工作号和库位号失败";
                        //    lb_AnalyzeScale.Text = "查找库位失败;库位" + ls_locno;
                        //    continue;
                        //}
                        //li_wrkno = Common.GetWrkno(0);
                        //if (li_wrkno == 0)
                        //{
                        //    lb_AnalyzeScale.Text = "生成工作号失败;" + ls_barcode;
                        //    continue;
                        //}
 
                        //int li_crnrow = int.Parse(ls_locno.Substring(0, 2));
                        //li_crnno = (li_crnrow + 1) / 2;
                        //int e_staNo = Common.getIoStaNo(1, li_crnno, li_stano);
 
                        //sql = " insert into asr_wrk_mast(wrk_no,wrk_sts,io_time,io_type,crn_no,io_pri,loc_no,sta_no,source_sta_no,empty_mk,ctn_type,barcode) ";
                        //sql += " values(" + li_wrkno + ",2,'" + ldt_date + "',10," + li_crnno + ",10,'" + ls_locno + "'," + e_staNo + "," + li_stano + ",'Y',1,'" + ls_barcode + "'); ";
                        //sql += " update asr_loc_mast set loc_sts='S' where loc_no='" + ls_locno + "';";
                        //bool result = Common.ExecAsrsModify(sql);
                        //if (result)
                        //{
                        //    Common.gs_barcode_data[i] = "";
                        //    Common.AddPlcQuereCmd(plcno, "04" + li_wrkno.ToString("0000") + li_stano.ToString("0000") + e_staNo.ToString("0000"));
                        //    Common.plc_i_Wrk_no[plcno, seqno] = li_wrkno;
                        //    Common.plc_s_next_stn[plcno, seqno] = e_staNo.ToString();
                        //    Common.plc_i_pakmk[plcno, seqno] = 1;
                        //    Common.plc_s_inreq1[plcno, seqno] = "N";
                        //    toolStripStatusLabel4.Text = "";
                        //}
                        //else
                        //{
                        //    lb_AnalyzeScale.Text = "插入表asr_wrk_mast数据,更新asr_loc_mast表失败";
                        //    //toolStripStatusLabel4.Text = "8";
                        //}
                        #endregion
 
                        string postData = "";
                        string url = Common.HttpUrl;
                        JSONObject json = new JSONObject();
                        json.put("ioType", 10);
                        json.put("sourceStaNo", li_stano);
                        json.put("barcode", ls_barcode);
                        json.put("locType1", li_loctype);
 
                        postData = json.ToString();
                        string responseData = HttpPostHelper.doHttpPost(url, postData);
 
                        JSONObject jsonRes = new JSONObject(responseData);
                        int code = jsonRes.getInt("code");
                        if (code == 200)
                        {
                            JSONObject data = new JSONObject(jsonRes.getString("data"));
                            int e_staNo = data.getInt("staNo");
                            li_crnno = data.getInt("crnNo");
                            ls_locno = data.getString("locNo");
                            li_wrkno = data.getInt("workNo");
 
                            Common.gs_barcode_data[i] = "";
                            Common.AddPlcQuereCmd(plcno, "04" + li_wrkno.ToString("0000") + li_stano.ToString("0000") + e_staNo.ToString("0000"));
                            Common.plc_i_Wrk_no[plcno, seqno] = li_wrkno;
                            Common.plc_s_next_stn[plcno, seqno] = e_staNo.ToString();
                            Common.plc_i_pakmk[plcno, seqno] = 1;
                            Common.plc_s_canining[plcno, seqno] = "N";
                            Common.plc_s_inreq1[plcno, seqno] = "N";
                            toolStripStatusLabel4.Text = "";
 
                            string ledMsg = "启动空板入库;库位号" + ls_locno + ";工作号" + li_wrkno;
                            if (Common.gs_led_data_pre[ledno] != ledMsg)
                            {
                                Common.gs_led_data[ledno] = ledMsg;
                                Common.gs_led_data_pre[ledno] = ledMsg;
                            }
                        }
                        else
                        {
                            string ledMsg = "启动空板入库失败;失败;" + jsonRes.getString("msg");
                            if (Common.gs_led_data_pre[ledno] != ledMsg)
                            {
                                Common.gs_led_data[ledno] = ledMsg;
                                Common.gs_led_data_pre[ledno] = ledMsg;
                            }
                            toolStripStatusLabel4.Text = jsonRes.getString("msg");
                            continue;
                        }
                    }
                    else
                    {
 
                        lb_AnalyzeScale.Text = "站点不符合条件--要求自动/有物/可入/有ID";
                        //toolStripStatusLabel4.Text = "3";
                    }
                }
            }
            catch (Exception em)
            {
                //common.Class1.scal = true;
                //toolStripStatusLabel4.Text = "9" + r.Message;
                lb_AnalyzeScale.Text = "Proc_GenerateStoreWrkFile出错--" + em.Message;
                Common.WriteLogFile("WcsError", "Proc_GenerateStoreWrkFile----" + em.Message);
                return;
            }
        }
 
        /// <summary>
        /// 主程序入口,启动设备入出库操作
        /// </summary>
        private void t_run_Tick(object sender, EventArgs e)
        {
            //DateTime dt = DateTime.Now;
            //DateTime dt1 = DateTime.Parse("2020-05-31");
            //int ret = DateTime.Compare(dt1, dt);
            //if (ret < 0)
            //{
            //    return;
            //}
            try
            {
                string s_inenabled = "N";
                string s_outenabled = "N";
                if (Common.gi_Online_Flag == Common.ch_CMD_START)
                {
                    //Proc_AnalyzeScale();         //入库站直接生成工作状态为2的任务,并下发命令到PLC
                    Proc_GenerateStoreWrkFile();   //入库站,根据条码扫描生成入库工作档
                    Proc_StnToCrnStn();            //入库站至堆垛机入库站,工作状态1->2,下发命令到PLC
                    Proc_StnToCrnStn_pick();
 
                    Proc_CrnStnToOutStn();
                    for (int crn = 0; crn < Common.ci_crn_count; crn++)
                    {
                        if (Common.crn_s_commandstr[crn] != "") continue;
                        //this.Proc_LoctoLoc1();
                        if (Common.gb_crn_status[crn] == true)
                        {
                            try
                            {
                                DataView dv = Common.ExecAsrsSelect("select in_enable,out_enable from dbo.asr_bas_crnp where crn_no=" + (crn + 1));
                                foreach (DataRowView drow in dv)
                                {
                                    s_inenabled = drow[0].ToString();
                                    s_outenabled = drow[1].ToString();
                                }
                            }
                            catch (Exception)
                            {
                                goto IL_212;
                            }
                            //Proc_LoctoLoc(crn);
                            if (Common.crn_i_crn_sts[crn] == Common.ci_CRN_STS_IDLE || Common.crn_i_Wrkno[crn] == 0)
                            {
                                if (Common.gs_crnlastio[crn] == "I")
                                {
                                    if (s_inenabled == "Y")
                                    {
                                        this.Proc_CrnStnToLoc(crn);
                                        Common.gs_crnlastio[crn] = "O";
                                    }
                                    else if (s_outenabled == "Y")
                                    {
                                        this.Proc_LocToCrnStn(crn);
                                        Common.gs_crnlastio[crn] = "I";
                                    }
                                }
                                else if (Common.gs_crnlastio[crn] == "O")
                                {
                                    if (s_outenabled == "Y")
                                    {
                                        this.Proc_LocToCrnStn(crn);
                                        Common.gs_crnlastio[crn] = "I";
                                    }
                                    else if (s_inenabled == "Y")
                                    {
                                        this.Proc_CrnStnToLoc(crn);
                                        Common.gs_crnlastio[crn] = "O";
                                    }
                                }
                            }
                        }
                        Proc_LoctoLoc(crn);
                    IL_212: ;
                    }
                    //this.proc_stntostn();
                }
                Proc_StoreFinished();
                //Proc_UpdateCrnMove();
                Proc_RecCrnErr();
            }
            catch (Exception em)
            {
                Common.WriteLogFile("WcsError", "t_run----" + em.Message);
            }
        }
 
        /// <summary>
        /// 处理演示功能
        /// </summary>
        private void Proc_Yanshi()
        {
            try
            {
                //1#堆垛机演示
                if (Common.gi_Yanshi_Flag[0] == true)
                {
                    int wrk_no = 0;
                    string s_slocno = "", s_dlocno = "", sql = "", locsts = "", locsts1 = "";
                    sql = "select * from dbo.asr_wrk_mast where wrk_sts in (11,12,3,4) and (io_type=11) and crn_no= 1 order by io_time,wrk_no";
                    DataView dv = Common.ExecAsrsSelect(sql);
                    if (dv != null && dv.Count <= 0)
                    {
                        int loc_type1 = 0;      //库位类型
                        string loc_sts = "";    //库位状态
                        string sql1 = "select top 1 loc_no,loc_type1,loc_sts from asr_loc_mast where loc_sts in ('D')  and crn_no = 1 and row1 not in  (2,1)  ORDER BY NEWID()";
                        DataView dv1 = Common.ExecAsrsSelect(sql1);
                        if (dv1 != null && dv1.Count > 0)
                        {
                            foreach (System.Data.DataRowView dvrow in dv1)
                            {
                                s_slocno = dvrow[0].ToString();
                                loc_type1 = int.Parse(dvrow[1].ToString());
                                loc_sts = dvrow[2].ToString();
                            }
                        }
 
                        //在库库位查询库存明细
                        string matnr = "";
                        if (s_slocno != "" && loc_sts == "F")
                        {
                            string sqlDetl = "select top 1 matnr from asr_loc_detl where loc_no='" + s_slocno + "';";
                            DataView dvDetl = Common.ExecAsrsSelect(sqlDetl);
                            if (dvDetl != null && dvDetl.Count > 0)
                            {
                                foreach (System.Data.DataRowView dvrow in dvDetl)
                                {
                                    matnr = dvrow[0].ToString();
                                }
                            }
                        }
 
                        string sql2 = "select top 1 loc_no from asr_loc_mast where loc_sts = 'O' and crn_no = 1 and loc_type1 = " + loc_type1 + " and row1 not in  (2,1) order BY NEWID() ";
                        DataView dv2 = Common.ExecAsrsSelect(sql2);
                        if (dv2 != null && dv2.Count > 0)
                        {
                            foreach (System.Data.DataRowView dvrow in dv2)
                            {
                                s_dlocno = dvrow[0].ToString();
                            }
                        }
                        if (s_slocno != "" && s_dlocno != "")
                        {
                            wrk_no = Common.GetWrkno(0);
                            DateTime dt = DateTime.Now;
                            string emptyMk = loc_sts == "D" ? "Y" : "N";
                            string insertSql = " insert into asr_wrk_mast(wrk_no,wrk_sts,io_type,crn_no,io_pri,wrk_date,loc_no,source_loc_no,empty_mk,io_time) ";
                            insertSql += " values(" + wrk_no + ",11,11,1,13,'" + dt + "','" + s_dlocno + "','" + s_slocno + "','" + emptyMk + "','" + dt + "');";
 
                            if (loc_sts == "F" && matnr != "")
                            {
                                insertSql += " insert into asr_wrk_detl(wrk_no,io_time,matnr,anfme) ";
                                insertSql += " values(" + wrk_no + ",'" + dt + "','" + matnr + "',1); ";
                            }
 
                            insertSql += " update asr_loc_mast set loc_sts='R' where loc_no='" + s_slocno + "'; ";
                            insertSql += " update asr_loc_mast set loc_sts='S' where loc_no='" + s_dlocno + "'; ";
                            bool ret = Common.ExecAsrsModify(insertSql);
                        }
                    }
                }
 
                //2#堆垛机演示
                if (Common.gi_Yanshi_Flag[1] == true)
                {
                    int wrk_no = 0;
                    string s_slocno = "", s_dlocno = "", sql = "", locsts = "", locsts1 = "";
                    sql = "select * from dbo.asr_wrk_mast where wrk_sts in (11,12,3,4) and (io_type=11) and crn_no= 2 order by io_time,wrk_no";
                    DataView dv = Common.ExecAsrsSelect(sql);
                    if (dv != null && dv.Count <= 0)
                    {
                        int loc_type1 = 0;
                        string loc_sts = "";    //库位状态
                        string sql1 = "select top 1 loc_no,loc_type1,loc_sts from asr_loc_mast where loc_sts in ('D') and crn_no = 2 ORDER BY NEWID()";
                        DataView dv1 = Common.ExecAsrsSelect(sql1);
                        if (dv1 != null && dv1.Count > 0)
                        {
                            foreach (System.Data.DataRowView dvrow in dv1)
                            {
                                s_slocno = dvrow[0].ToString();
                                loc_type1 = int.Parse(dvrow[1].ToString());
                                loc_sts = dvrow[2].ToString();
                            }
                        }
 
                        //在库库位查询库存明细
                        string matnr = "";
                        if (s_slocno != "" && loc_sts == "F")
                        {
                            string sqlDetl = "select top 1 matnr from asr_loc_detl where loc_no='" + s_slocno + "';";
                            DataView dvDetl = Common.ExecAsrsSelect(sqlDetl);
                            if (dvDetl != null && dvDetl.Count > 0)
                            {
                                foreach (System.Data.DataRowView dvrow in dvDetl)
                                {
                                    matnr = dvrow[0].ToString();
                                }
                            }
                        }
 
                        string sql2 = "select top 1 loc_no from asr_loc_mast where loc_sts = 'O' and crn_no = 2 and loc_type1 = " + loc_type1 + " order BY NEWID() ";
                        DataView dv2 = Common.ExecAsrsSelect(sql2);
                        if (dv2 != null && dv2.Count > 0)
                        {
                            foreach (System.Data.DataRowView dvrow in dv2)
                            {
                                s_dlocno = dvrow[0].ToString();
                            }
                        }
                        if (s_slocno != "" && s_dlocno != "")
                        {
                            wrk_no = Common.GetWrkno(0);
                            DateTime dt = DateTime.Now;
                            string emptyMk = loc_sts == "D" ? "Y" : "N";
                            string insertSql = " insert into asr_wrk_mast(wrk_no,wrk_sts,io_type,crn_no,io_pri,wrk_date,loc_no,source_loc_no,empty_mk,io_time) ";
                            insertSql += " values(" + wrk_no + ",11,11,2,13,'" + dt + "','" + s_dlocno + "','" + s_slocno + "','" + emptyMk + "','" + dt + "');";
 
                            if (loc_sts == "F" && matnr != "")
                            {
                                insertSql += " insert into asr_wrk_detl(wrk_no,io_time,matnr,anfme) ";
                                insertSql += " values(" + wrk_no + ",'" + dt + "','" + matnr + "',1); ";
                            }
 
                            insertSql += " update asr_loc_mast set loc_sts='R' where loc_no='" + s_slocno + "'; ";
                            insertSql += " update asr_loc_mast set loc_sts='S' where loc_no='" + s_dlocno + "'; ";
                            bool ret = Common.ExecAsrsModify(insertSql);
                        }
                    }
 
                }
 
            }
            catch (Exception em)
            {
                Common.WriteLogFile("WcsError", "演示失败----" + em.Message);
            }
        }
 
        private void timer1_Tick(object sender, EventArgs e)
        {
            Proc_SendOutDataToLed();
            Proc_StoreEmptyPlt();
            Proc_Yanshi();
 
        }
 
        /// <summary>
        /// 设备出库站,发送出货数据到LED后,更新LED标记OVE_MK
        /// </summary>
        private void Proc_SendOutDataToLed()
        {
            try
            {
                int stnno = 0, seqno = 0, li_crnno = 0, seqno1 = 0;
                string sql = "", ls_locno = "", s_outabled = "";
                string s_slocno = "", s_dlocno = "", s_picking = "N", s_emptymk = "N";
                string s_sstano = "", s_dstano = "", ls_matnr = "", ls_maktx = "", ls_anfme = "", ls_altme = "", ls_anfme1 = "";
                int i_wrkno = 0, i_crnno = 0, i_wrksts = 0, i_iotype = 0, plcno = 0, ledno = 0;
                DateTime dt1 = System.DateTime.Now;
                int stnno1 = 0;
                string plcError = "";
                for (int i = 0; i < 6; i++)
                {
                    switch (i)
                    {
                        case 0:
                            stnno = 101;
                            plcno = 0;
                            ledno = 0;
                            stnno1 = 104;
                            break;
                        case 1:
                            stnno = 201;
                            plcno = 0;
                            ledno = 1;
                            stnno1 = 204;
                            break;
                    }
                    seqno1 = Common.GetStnSeq(stnno1);
                    string s_loading1 = Common.plc_s_loading[plcno, seqno1];
 
                    seqno = Common.GetStnSeq(stnno);
                    string s_autoing = Common.plc_s_autoing[plcno, seqno];
                    string s_loading = Common.plc_s_loading[plcno, seqno];
                    string s_inreq1 = Common.plc_s_inreq1[plcno, seqno];
                    int i_wrk_no = Common.plc_i_Wrk_no[plcno, seqno];
                    string s_next_stn = Common.plc_s_next_stn[plcno, seqno];
 
                    if (s_loading == "Y" && i_wrk_no > 0)
                    {
                        sql = "select top 1 source_loc_no,loc_no,source_sta_no,sta_no,picking,wrk_no,crn_no,wrk_sts,io_type,empty_mk ";
                        //sql += " from asr_wrk_mast where wrk_no=" + i_wrk_no + " and (sta_no=4 or sta_no=13) and io_type>100 ";
                        sql += " from asr_wrk_mast where wrk_no=" + i_wrk_no + " and sta_no=" + stnno + " and io_type>100 ";
                        DataView dv = Common.ExecAsrsSelect(sql);
                        if (dv.Count <= 0)
                        {
                            lb_CrnStnToOutStn.Text = "查询无资料--wrk_no=" + i_wrk_no;
                            continue;
                        }
                        foreach (System.Data.DataRowView drow in dv)
                        {
                            s_slocno = drow[0].ToString();
                            s_dlocno = drow[1].ToString();
                            s_sstano = drow[2].ToString();
                            s_dstano = drow[3].ToString();
                            s_picking = drow[4].ToString();
                            i_wrkno = Convert.ToInt32(drow[5].ToString());
                            i_crnno = Convert.ToInt32(drow[6].ToString());
                            i_wrksts = Convert.ToInt32(drow[7].ToString());
                            i_iotype = Convert.ToInt32(drow[8].ToString());
                            s_emptymk = drow[9].ToString();
                        }
                        //if (i_iotype == 103)    //拣料模式,更新打印需求标记,回报调用SAP打印接口
                        //{
                        //    UpdateWaitOutPrintMk(i_wrkno);
                        //}
                        if (i_wrksts < 14 || i_iotype < 100) continue;
                        if (s_emptymk == "Y")
                        {
                            string ledMsg = "空盘出库;库位:" + s_slocno + ";";
                            if (Common.gs_led_data_pre[ledno] != ledMsg)
                            {
                                Common.gs_led_data[ledno] = ledMsg;
                                Common.gs_led_data_pre[ledno] = ledMsg;
                            }
                        }
                        else
                        {
                            //sql = "select matnr from asr_wrk_detl where wrk_no=" + i_wrk_no + " ";
                            //DataView dv_detlCnt = Common.ExecAsrsSelect(sql);
                            //if (dv_detlCnt!=null)
                            //{
                            //int count = dv_detlCnt.Count;
                            //int yushu = 0;
                            //if (dv_detlCnt.Count % 7 > 0)  //有余数时页码加1
                            //{
                            //    yushu = 1;
                            //}
                            //Common.gi_led_PageNumber[ledno] = (int)(dv_detlCnt.Count / 7) + yushu ;
                            //}
 
                            string s_type = "";
                            if (i_iotype == 101)
                            {
                                s_type = "出库库位: " + s_slocno;
                                //sql = "select matnr,maktx,anfme,altme,anfme from asr_wrk_detl where wrk_no=" + i_wrk_no + " ";
                                //int index = (Common.gi_led_CurPageNumber[ledno] - 1) * 7 + 1;
                                //int end = Common.gi_led_CurPageNumber[ledno] * 7;
                                //sql = " select * from (select matnr,maktx,anfme,altme,anfme as anfme1,ROW_NUMBER() OVER(Order by modi_time,matnr) as rowid ";
                                //sql += " from asr_wrk_detl where wrk_no=" + i_wrk_no + " ) a ";
                                //sql += " where rowid between (" + index + ") and (" + end + ")";
                            }
                            else if (i_iotype == 103)
                            {
                                s_type = "拣料库位: " + s_slocno;
                            }
                            else if (i_iotype == 104)
                            {
                                s_type = "并板库位: " + s_slocno;
                            }
                            if (i_iotype == 107)
                            {
                                s_type = "盘点库位: " + s_slocno;
                            }
                            sql = "select top 1 mat_no,mat_name,qty from asr_wrk_detl where wrk_no=" + i_wrk_no + " ";
                            //if (i_iotype != 101)
                            //{
                            //int index = (Common.gi_led_CurPageNumber[ledno] - 1) * 7 + 1;
                            //int end = Common.gi_led_CurPageNumber[ledno] * 7;
                            //sql = "select * from (select a.matnr,a.maktx,a.anfme,a.altme,b.anfme as anfme1,ROW_NUMBER() OVER(Order by a.modi_time,a.matnr) as rowid  ";
                            //sql += " from asr_wrk_detl a,asr_loc_detl b,asr_wrk_mast c where a.wrk_no=" + i_wrk_no + " ";
                            //sql += " and a.wrk_no=c.wrk_no and a.matnr=b.matnr and c.source_loc_no=b.loc_no ) a";
                            //sql += " where rowid between (" + index + ") and (" + end + ") ";
                            //}
                            DataView dv_detl = Common.ExecAsrsSelect(sql);
                            if (dv_detl.Count <= 0)
                            {
                                lb_CrnStnToOutStn.Text = "查询无资料--wrk_no=" + i_wrk_no;
                                continue;
                            }
 
                            string ls_ledData = s_type + ";";
                            double li_anfme = 0;//, li_anfme1 = 0;
                            foreach (System.Data.DataRowView drow in dv_detl)
                            {
                                ls_matnr = drow[0].ToString();
                                ls_matnr = ls_maktx.Replace(',', ' ');
                                ls_matnr = ls_maktx.Replace(';', ' ');
                                ls_matnr = ls_matnr.Substring(0, 12);
                                ls_maktx = drow[1].ToString();
                                //if (ls_maktx.Length > 4)
                                //{
                                //    ls_maktx = ls_maktx.Substring(0, 5) + ".";
                                //}
                                ls_maktx = ls_maktx.Replace(',', ' ');
                                ls_maktx = ls_maktx.Replace(';', ' ');
                                //ls_maktx = "";
                                ls_anfme = drow[2].ToString();
                                if (ls_anfme != "")
                                {
                                    li_anfme = double.Parse(ls_anfme);
                                }
                                //ls_altme = drow[3].ToString();
                                //ls_anfme1 = drow[4].ToString();
                                //if (ls_anfme1 != "")
                                //{
                                //    li_anfme1 = double.Parse(ls_anfme1);
                                //}
                                //if (i_iotype == 107)
                                //{
                                //    ls_ledData += ls_matnr + " " + ls_maktx + ";";
                                //    //ls_ledData += ls_matnr + " " + ls_maktx + " QTY:" + li_anfme + "/STK:" + li_anfme1 + ";";
                                //}
                                //else
                                //{
                                ls_ledData += ls_matnr + " ;数量:" + li_anfme + ";";
                                //    //ls_ledData += ls_matnr + " " + ls_maktx + " 数量:" + li_anfme + "/库存:" + li_anfme1 + ";";
                                //}
                            }
                            ls_ledData = ls_ledData.Substring(0, ls_ledData.Length - 1);
                            switch (ls_ledData.Split(';').Length)
                            {
                                case 1:
                                    ls_ledData += ";;;;;;;";
                                    break;
                                case 2:
                                    ls_ledData += ";;;;;;";
                                    break;
                                case 3:
                                    ls_ledData += ";;;;;";
                                    break;
                                case 4:
                                    ls_ledData += ";;;;";
                                    break;
                                case 5:
                                    ls_ledData += ";;;";
                                    break;
                                case 6:
                                    ls_ledData += ";;";
                                    break;
                                case 7:
                                    ls_ledData += ";";
                                    break;
                                default:
                                    break;
                            }
 
                            if (Common.gs_led_data_pre[ledno] != ls_ledData)
                            {
                                Common.gs_led_data[ledno] = ls_ledData;
                                Common.gs_led_data_pre[ledno] = ls_ledData;
                            }
 
                        }
 
                        //sql = "update asr_wrk_mast set ove_mk='Y' where wrk_no =" + i_wrkno + "";
                        //Common.ExecAsrsModify(sql);
                    }
                    else if (s_loading1 == "N")
                    {
                        string ledMsg = ";;";
                        if (Common.gs_led_data_pre[ledno] != ledMsg)
                        {
                            //Common.gi_led_PageNumber[ledno] = 1;
                            //Common.gi_led_CurPageNumber[ledno] = 1;
                            //Common.gi_led_Counts[ledno] = 0;
                            //Common.gi_led_Pages[ledno] = 1;
                            Common.gs_led_data[ledno] = ledMsg;
                            Common.gs_led_data_pre[ledno] = ledMsg;
                        }
                    }
                }
            }
            catch (Exception em)
            {
                Common.WriteLogFile("WcsError", "Proc_SendOutDataToLed----" + em.Message);
            }
        }
 
        /// <summary>
        /// 执行对工作档的入库完成
        /// </summary>
        private void Proc_StoreFinished()
        {
            try
            {
                int wrk_no = 0, wrk_sts = 0, io_type = 0;
                DateTime dt1 = System.DateTime.Now;
                for (int crn = 0; crn < Common.ci_crn_count; crn++)
                {
                    if (Common.Mode[crn] == Common.ci_CRN_ONLINE && (Common.crn_i_kind[crn] == 7 || Common.crn_i_kind[crn] == 12)
                    && Common.CrnState[crn] == Common.ci_CRN_STS_TASK_FINISH && Common.TaskNo[crn] > 0
                    && Common.TaskFinish[crn] == 1 && Common.TaskFlag[crn] == 0)
                    {
                        wrk_no = Common.TaskNo[crn];
                        if (wrk_no == 0)
                        {
                            continue;
                        }
                        try
                        {
                            DataView dv = Common.ExecAsrsSelect("select wrk_sts,io_type from dbo.asr_wrk_mast where wrk_no=" + wrk_no + "");
                            foreach (System.Data.DataRowView drow in dv)
                            {
                                wrk_sts = Convert.ToInt32(drow[0].ToString());
                                io_type = Convert.ToInt32(drow[1].ToString());
                            }
                        }
                        catch (Exception e)
                        {
                            continue;
                        }
                        if (wrk_sts == 3 && (io_type == 1 || io_type == 10 || io_type == 53 || io_type == 54 || io_type == 57 || io_type == 11))
                        {
                            if (Common.ExecAsrsModify("update dbo.asr_wrk_mast set wrk_sts =4,crn_end_time ='" + dt1 + "' where wrk_no =" + wrk_no + "") == true)
                            {
                                Common.TaskFlag[crn] = 1;
                            }
                        }
                    }
                }
            }
            catch (Exception em)
            {
                Common.WriteLogFile("WcsError", "Proc_StoreFinished----" + em.Message);
            }
        }
 
        /// <summary>
        /// 记录堆垛机异常信息
        /// </summary>
        private void Proc_RecCrnErr()
        {
            try
            {
                int wrkno = 0;
                string locno = "";
                string crnno = "";
                int tag = 0;
                DateTime dt1 = System.DateTime.Now, dt2 = System.DateTime.Now;
                for (int crn = 0; crn < Common.ci_crn_count; crn++)
                {
                    //堆垛机产生异常
                    wrkno = Common.crn_i_Wrkno[crn];
                    if (wrkno == 0)
                    {
                        wrkno = Common.gi_crn_wrkno[crn];
                    }
                    if (Common.crn_i_kind[crn] == 7)
                    {
                        locno = Common.crn_s_Tlocno[crn];
                        int row = 0, bay = 0, lev = 0;
                        row = int.Parse(locno.Substring(0, 2));
                        bay = int.Parse(locno.Substring(2, 3)) - 1;
                        lev = int.Parse(locno.Substring(5, 2));
                        locno = row.ToString().PadLeft(2, '0') + bay.ToString().PadLeft(3, '0') + lev.ToString().PadLeft(2, '0');
                    }
                    else if (Common.crn_i_kind[crn] == 8)
                    {
                        locno = Common.crn_s_Flocno[crn];
                        int row1 = 0, bay1 = 0, lev1 = 0;
                        row1 = int.Parse(locno.Substring(0, 2));
                        bay1 = int.Parse(locno.Substring(2, 3)) - 1;
                        lev1 = int.Parse(locno.Substring(5, 2));
                        locno = row1.ToString().PadLeft(2, '0') + bay1.ToString().PadLeft(3, '0') + lev1.ToString().PadLeft(2, '0');
                    }
                    else
                    {
                        locno = "";
                    }
                    crnno = "C" + (crn + 1).ToString();
                    try
                    {
                        DataView dv = Common.ExecAsrsSelect("select top 1 io_time from dbo.asr_wrk_mast where wrk_no=" + wrkno + "");
                        foreach (System.Data.DataRowView drow in dv)
                        {
                            dt2 = Convert.ToDateTime(drow[0].ToString());
                        }
                    }
                    catch (Exception e)
                    {
 
                    }
                    if (Common.Mode[crn] == 1)
                    {
                        tag = 1;
                    }
                    else
                    {
                        tag = 0;
                    }
 
                    if (Common.AlarmCode[crn] > 0 && Common.gs_crn_err_pre[crn] == "0")
                    {
                        Common.ExecAsrsModify("insert into dbo.asr_stk_plcm(io_time,wrk_no,s_location,s_station,o_location,dev_no,modi_user,modi_time,wrk_time,tag) values('" + dt1 + "'," + wrkno + ",'" + Common.AlarmCode[crn].ToString() + "','Y','" + locno + "','" + crnno + "','Online','" + dt1 + "','" + dt2 + "'," + tag + ")");
                    }
                    //堆垛机恢复异常
                    else if (Common.AlarmCode[crn] == 0 && Common.gs_crn_err_pre[crn] != "0")
                    {
                        Common.ExecAsrsModify("insert into dbo.asr_stk_plcm(io_time,wrk_no,s_location,s_station,o_location,dev_no,modi_user,modi_time,wrk_time,tag) values('" + dt1 + "'," + wrkno + ",'" + Common.gs_crn_err_pre[crn] + "','N','" + locno + "','" + crnno + "','Online','" + dt1 + "','" + dt2 + "'," + tag + ")");
                    }
                    Common.gs_crn_err_pre[crn] = Common.AlarmCode[crn].ToString();
                }
            }
            catch (Exception em)
            {
                Common.WriteLogFile("WcsError", "Proc_RecCrnErr----" + em.Message);
            }
        }
 
        /// <summary>
        /// 更新堆垛机移动时工作档状态
        /// </summary>
        private void Proc_UpdateCrnMove()
        {
            try
            {
                int wrk_no = 0, wrk_sts = 0, iotype = 0;
                DateTime dt1 = System.DateTime.Now;
                for (int crn = 0; crn < Common.ci_crn_count; crn++)
                {
                    if (Common.crn_i_crn_sts[crn] == Common.ci_CRN_STS_STORE_MOVE
                        || Common.crn_i_crn_sts[crn] == Common.ci_CRN_STS_STORE_OK)
                    {
                        wrk_no = Common.crn_i_Wrkno[crn];
                        if (wrk_no == 0)
                        {
                            wrk_no = Common.gi_crn_wrkno[crn];
                        }
                        try
                        {
                            DataView dv = Common.ExecAsrsSelect("select wrk_sts,io_type from dbo.asr_wrk_mast where wrk_no=" + wrk_no + "");
                            foreach (System.Data.DataRowView drow in dv)
                            {
                                wrk_sts = Convert.ToInt32(drow[0].ToString());
                            }
                        }
                        catch (Exception e)
                        {
                            continue;
                        }
                        if (wrk_sts < 3 || wrk_sts == 7)
                        {
                            if (Common.ExecAsrsModify("update dbo.asr_wrk_mast set wrk_sts =3 ,crn_str_time ='" + dt1 + "' where wrk_no =" + wrk_no + "") == true)
                            {
                                Common.gs_crnlastio[crn] = "O";
                            }
                        }
                    }
                    else if (Common.crn_i_crn_sts[crn] == Common.ci_CRN_STS_RETRIEVE_MOVE
                        || Common.crn_i_crn_sts[crn] == Common.ci_CRN_STS_RETRIEVE_OK
                        || Common.crn_i_crn_sts[crn] == Common.ci_CRN_STS_LOCATION_MOVE)
                    {
                        wrk_no = Common.crn_i_Wrkno[crn];
                        if (wrk_no == 0)
                        {
                            wrk_no = Common.gi_crn_wrkno[crn];
                        }
                        try
                        {
                            DataView dv = Common.ExecAsrsSelect("select top 1 wrk_sts,io_type from dbo.asr_wrk_mast where wrk_no=" + wrk_no + "");
                            foreach (System.Data.DataRowView drow in dv)
                            {
                                wrk_sts = Convert.ToInt32(drow[0].ToString());
                                iotype = Convert.ToInt32(drow[1].ToString());
                            }
                        }
                        catch (Exception e)
                        {
                            continue;
                        }
                        if ((wrk_sts < 12 && (iotype == 104 || iotype == 107 || iotype == 103)) || (wrk_sts < 12 && (iotype == 101 || iotype == 110)) || (wrk_sts < 12 && iotype == 11))
                        {
                            if (Common.ExecAsrsModify("update dbo.asr_wrk_mast set wrk_sts =12 ,crn_str_time ='" + dt1 + "' where wrk_no =" + wrk_no + "") == true)
                            {
                                Common.gs_crnlastio[crn] = "I";
                            }
                        }
 
                    }
                    else if (Common.crn_i_crn_sts[crn] == Common.ci_CRN_STS_STNCHG_MOVE)
                    {
                        wrk_no = Common.crn_i_Wrkno[crn];
                        if (wrk_no == 0)
                        {
                            wrk_no = Common.gi_crn_wrkno[crn];
                        }
                        try
                        {
                            DataView dv = Common.ExecAsrsSelect("select top 1 wrk_sts,io_type from dbo.asr_wrk_mast where wrk_no=" + wrk_no + "");
                            foreach (System.Data.DataRowView drow in dv)
                            {
                                wrk_sts = Convert.ToInt32(drow[0].ToString());
                                iotype = Convert.ToInt32(drow[1].ToString());
                            }
                        }
                        catch (Exception e)
                        {
                            continue;
                        }
                        if ((wrk_sts == 2 && iotype == 1))
                        {
                            if (Common.ExecAsrsModify("update dbo.asr_wrk_mast set wrk_sts =6 ,crn_str_time ='" + dt1 + "' where wrk_no =" + wrk_no + "") == true)
                            {
                                Common.gs_crnlastio[crn] = "I";
                            }
                        }
                        if ((wrk_sts == 8 && (iotype == 101 || iotype == 110)))
                        {
                            if (Common.ExecAsrsModify("update dbo.asr_wrk_mast set wrk_sts =6  where wrk_no =" + wrk_no + "") == true)
                            {
                                Common.gs_crnlastio[crn] = "I";
                            }
                        }
 
                    }
 
                    //解决空出库更新工作档
                    if (Common.crn_ycmm[crn].ToString() != "0" && Common.crn_yc[crn] == true)
                    {
                        if (Common.crn_ycmm[crn].ToString() == "39")
                        {
                            wrk_no = Common.crn_i_Wrkno[crn];
                            if (wrk_no > 0)
                            {
                                Common.ExecAsrsModify("update dbo.asr_wrk_mast set wrk_sts =13,upd_mk='X',error_time='" + dt1 + "',error_memo= '空出库异常' where wrk_no =" + wrk_no + " and wrk_sts=12 and crn_no=" + crn + 1 + "");
                                Common.gi_crn_iotype[crn] = 0;
                            }
                        }
                    }
                }
            }
            catch (Exception em)
            {
                Common.WriteLogFile("WcsError", "Proc_UpdateCrnMove----" + em.Message);
            }
        }
 
        /// <summary>
        /// 入库,堆垛机入库站 --> 库位
        /// </summary>
        /// <param name="crnno"></param>
        private void Proc_CrnStnToLoc(int crnno)
        {
            int stnno = 0, seqno = 0;
            string s_slocno = "", s_dlocno = "", s_picking = "N", sql = "", locsts = "", s_inabled = "";
            int i_sstano = 0, i_dstano = 0, i_wrkno = 0, i_crnno = 0, i_wrksts = 0, i_iotype = 0, plcno = 0; ;
            string s_wrknos = "";
            bool flag = false;
            if (Common.Mode[crnno] != Common.ci_CRN_ONLINE || Common.CrnState[crnno] != Common.ci_CRN_STS_IDLE || Common.TaskNo[crnno] != 0
                || Common.gs_crncmd[crnno] != "")
            {
                lb_CrnStnToLoc.Text = "堆垛机不符合条件--要求空闲/无ID/无命令";
                return;
            }
            try
            {
                ////判断堆垛机是否禁用
                try
                {
                    DataView dv_crnsts = Common.ExecAsrsSelect("select in_enable from dbo.asr_bas_crnp where crn_no=" + (crnno + 1) + "");
                    foreach (System.Data.DataRowView drow in dv_crnsts)
                    {
                        s_inabled = drow[0].ToString();
                    }
                }
                catch (Exception e)
                {
                    lb_CrnStnToLoc.Text = "查询堆垛机是否可用出错" + e.Message;
                    return;
                }
                if (s_inabled != "Y")
                {
                    lb_CrnStnToLoc.Text = "堆垛机已禁用";
                    return;
                }
 
                s_wrknos = " wrk_no in (";
                for (int i = 0; i < 2; i++)
                {
                    switch (i)
                    {
                        case 0:
                            stnno = 104;
                            plcno = 0;
                            i_crnno = 1;
                            break;
                        case 1:
                            stnno = 204;
                            plcno = 0;
                            i_crnno = 2;
                            break;
                    }
                    if (i_crnno != (crnno + 1)) continue;
                    seqno = Common.GetStnSeq(stnno);
                    string s_autoing = Common.plc_s_autoing[plcno, seqno];
                    string s_loading = Common.plc_s_loading[plcno, seqno];
                    string s_canining = Common.plc_s_canining[plcno, seqno];
                    //string s_inreq1 = Common.plc_s_inreq1[plcno, seqno];
                    int i_wrk_no = Common.plc_i_Wrk_no[plcno, seqno];
                    //string s_next_stn = Common.plc_s_next_stn[plcno, seqno];
                    if (s_autoing == "Y" && s_loading == "Y" && i_wrk_no > 0 && s_canining == "Y")
                    {
                        flag = true;
                        s_wrknos += i_wrk_no.ToString() + ",";
                    }
                }
                if (flag == false) return;
                s_wrknos = s_wrknos.Substring(0, s_wrknos.Length - 1) + ") ";
 
                sql = "select TOP 1 source_loc_no,loc_no,source_sta_no,sta_no,picking,wrk_no,crn_no,wrk_sts,io_type from dbo.asr_wrk_mast "
                    + " where wrk_sts=2 and crn_no=" + (crnno + 1) + " and " + s_wrknos
                    + " and (io_type=1 or io_type=10 or io_type=53 or io_type=54 or io_type=57) order by io_pri desc,io_time,wrk_no ASC ";
                DataView dv = Common.ExecAsrsSelect(sql);
                if (dv.Count <= 0)
                {
                    lb_CrnStnToLoc.Text = "查询无待入库数据--wrk_sts=2";
                    return;
                }
 
                foreach (DataRowView drow in dv)
                {
                    s_slocno = drow[0].ToString();
                    s_dlocno = drow[1].ToString();
                    i_sstano = Convert.ToInt32(drow[2].ToString());
                    i_dstano = Convert.ToInt32(drow[3].ToString());
                    s_picking = drow[4].ToString();
                    i_wrkno = Convert.ToInt32(drow[5].ToString());
                    i_crnno = Convert.ToInt32(drow[6].ToString());
                    i_wrksts = Convert.ToInt32(drow[7].ToString());
                    i_iotype = Convert.ToInt32(drow[8].ToString());
 
                    /////////////目标库位是深库位时,判断浅库位状态  2022-2-11
                    string row = "", row2 = "";
                    row = s_dlocno.Substring(0, 2);
                    if (row == "01")
                    {
                        row2 = "02";
                        string locno = row2 + s_dlocno.Substring(2, 5);
                        bool flag1 = Proc_ShallowLoctoLoc(locno, i_wrkno, crnno);
                        if (flag1)
                        {
                            return;
                        }
                    }
                    ////////////////////////////////////////////
 
 
                    switch (i_dstano)
                    {
                        case 104:
                            stnno = 104;
                            plcno = 0;
                            i_crnno = 1;
                            break;
                        case 204:
                            stnno = 204;
                            plcno = 0;
                            i_crnno = 2;
                            break;
                    }
 
                    if ((i_iotype > 100) || (i_crnno != crnno + 1) || (s_dlocno == ""))// || (stnno != i_dstano))
                    {
                        lb_CrnStnToLoc.Text = "工作档数据不符合条件--入出类型/堆垛机号/站点";
                        continue;
                    }
                    ///判断库位状态是否正常
                    try
                    {
                        DataView dv_locsts = Common.ExecAsrsSelect("select loc_sts from dbo.asr_loc_mast where loc_no='" + s_dlocno + "'");
                        if (dv_locsts.Count <= 0)
                        {
                            lb_CrnStnToLoc.Text = "查询库存无数据--库位号" + s_dlocno;
                            continue;
                        }
                        foreach (System.Data.DataRowView drow1 in dv_locsts)
                        {
                            locsts = drow1[0].ToString();
                        }
                    }
                    catch (Exception e)
                    {
                        lb_CrnStnToLoc.Text = "查询库位状态数据出错--" + e.Message;
                        continue;
                    }
                    if (locsts != "S" && locsts != "Q")
                    {
                        lb_CrnStnToLoc.Text = "库位状态不符合--状态" + locsts;
                        continue;
                    }
 
                    seqno = Common.GetStnSeq(i_dstano);
                    string autoing = Common.plc_s_autoing[plcno, seqno];
                    string loading = Common.plc_s_loading[plcno, seqno];
                    int wrk_no0 = Common.plc_i_Wrk_no[plcno, seqno];
                    if (Common.Mode[crnno] != Common.ci_CRN_ONLINE || Common.gs_crncmd[crnno] != "" || Common.TaskNo[crnno] != 0 || Common.CrnState[crnno] != 0)
                    {
                        continue;
                    }
 
                    //string row = "", bay = "", lev = "", row1 = "";
                    ////int stn = 0;
                    //int bay1 = 0;
                    //row1 = s_dlocno.Substring(0, 2);
                    //if (row1 == "" || row1 == null)
                    //{
                    //    lb_CrnStnToLoc.Text = "根据库位得到row出错--库位号" + s_dlocno;
                    //    return;
                    //}
                    //row = row1;//(int.Parse(row1).ToString();
                    //bay1 = Int32.Parse(s_dlocno.Substring(2, 3));
                    //bay = bay1.ToString();
                    //lev = s_dlocno.Substring(5, 2);
                    //stn = Common.GetCrnStnSeq(i_crnno);
                    //if (stn == 0)
                    //{
                    //    lb_CrnStnToLoc.Text = "得到吊车入库站编号出错--入库站" + i_crnno;
                    //    return;
                    //}
 
                    if (autoing == "Y" && loading == "Y" && wrk_no0 > 0)
                    {
                        Common.gs_crncmd[crnno] = "07" + i_wrkno.ToString().PadLeft(4, '0') + Common.GetLocByStn(i_dstano) + s_dlocno;
                        Common.gs_crnlastio[crnno] = "O";
                        Common.gi_crn_wrkno[crnno] = i_wrkno;
 
 
                        break;
                    }
                }
 
            }
            catch (Exception em)
            {
                lb_CrnStnToLoc.Text = "Proc_CrnStnToLoc出错--" + em.Message;
                Common.WriteLogFile("WcsError", "Proc_CrnStnToLoc----" + em.Message);
            }
        }
 
        /// <summary>
        /// 出库,库位 --> 堆垛机出库站
        /// </summary>
        /// <param name="crnno"></param>
        private void Proc_LocToCrnStn(int crnno)
        {
            int seqno = 0, seqno1 = 0, wrksts = 0, restnno = 0, ledno = 0, bay1 = 0;
            string s_slocno = "", s_dlocno = "", s_picking = "N", s_emptymk = "N", sql = "", locsts = "", s_outabled = "", ls_sheetno = "", row = "", bay = "", lev = "", row1 = "";
            int i_sstano = 0, i_dstano = 0, i_wrkno = 0, i_crnno = 0, i_wrksts = 0, i_iotype = 0, plcno = 0;
            //Common.Mode[crnno] = 3;
            //Common.CrnState[crnno] = 0;
            //Common.TaskNo[crnno] = 0;
            if (Common.Mode[crnno] != Common.ci_CRN_ONLINE || Common.CrnState[crnno] != Common.ci_CRN_STS_IDLE || Common.TaskNo[crnno] != 0)
            {
                Common.gs_crnlastio[crnno] = "I";
                lb_LocToCrnStn.Text = "堆垛机不符合条件--要求空闲/无ID";
                return;
            }
            try
            {
                DataView dv_crnsts = Common.ExecAsrsSelect("select out_enable from dbo.asr_bas_crnp where crn_no=" + (crnno + 1) + "");
                foreach (System.Data.DataRowView drow in dv_crnsts)
                {
                    s_outabled = drow[0].ToString();
                }
            }
            catch (Exception e)
            {
                lb_LocToCrnStn.Text = "堆垛机堆垛机出库是否禁用出错--" + e.Message;
                return;
            }
            if (s_outabled != "Y")
            {
                lb_LocToCrnStn.Text = "堆垛机出库已禁用";
                return;
            }
 
            sql = "select TOP 1 source_loc_no,loc_no,source_sta_no,sta_no,picking,wrk_no,crn_no,wrk_sts,io_type,sheet_no,io_pri,packed from asr_wrk_mast where crn_no=" + (crnno + 1) + " and wrk_sts=11 and io_type>100 order by io_pri desc,io_time,wrk_no asc";
            try
            {
                DataView dv = Common.ExecAsrsSelect(sql);
                if (dv.Count <= 0)
                {
                    lb_LocToCrnStn.Text = "查询无待出库数据--wrk_sts=11";
                    return;
                }
                foreach (System.Data.DataRowView drow00 in dv)
                {
                    s_slocno = drow00[0].ToString();
                    s_dlocno = drow00[1].ToString();
                    i_sstano = Convert.ToInt32(drow00[2].ToString());
                    i_dstano = Convert.ToInt32(drow00[3].ToString());
                    s_picking = drow00[4].ToString();
                    i_wrkno = Convert.ToInt32(drow00[5].ToString());
                    i_crnno = Convert.ToInt32(drow00[6].ToString());
                    i_wrksts = Convert.ToInt32(drow00[7].ToString());
                    i_iotype = Convert.ToInt32(drow00[8].ToString());
                    ls_sheetno = drow00[9].ToString();
 
 
                    //判断深库位,浅库位有货时执行移库任务
                    row1 = s_slocno.Substring(0, 2);
                    if (row1 == "01")
                    {
                        string row2 = "02";
                        string s_slocno1 = row2 + s_slocno.Substring(2, 5);
                        bool flag = Proc_ShallowLoctoLoc(s_slocno1, i_wrkno, crnno);
                        if (flag)
                        {
                            return;
                        }
                    }
 
                    if ((i_iotype < 100) || (i_crnno != crnno + 1) || (s_slocno == "") || (i_dstano == 0) || (i_dstano.ToString() == null) || (i_sstano == 0) || (i_sstano.ToString() == null))
                    {
                        lb_LocToCrnStn.Text = "查询工作档数据不符合条件--入出类型/堆垛机/站点";
                        continue;
                    }
                    try
                    {
                        DataView dv_locsts = Common.ExecAsrsSelect("select loc_sts from dbo.asr_loc_mast where loc_no='" + s_slocno + "'");
                        foreach (System.Data.DataRowView drow in dv_locsts)
                        {
                            locsts = drow[0].ToString();
                        }
                    }
                    catch (Exception e)
                    {
                        lb_LocToCrnStn.Text = "查询库存库位状态出错--" + e.Message;
                        continue;
                    }
                    if (locsts != "R" && locsts != "P")
                    {
                        lb_LocToCrnStn.Text = "库位状态不符合条件--库位" + s_slocno + "状态" + locsts;
                        continue;
                    }
 
                    switch (i_sstano)
                    {
                        case 100:
                            plcno = 0;
                            i_crnno = 1;
                            ledno = 0;
                            break;
                        case 200:
                            plcno = 0;
                            i_crnno = 2;
                            ledno = 1;
                            break;
                    }
                    if (i_crnno != (crnno + 1)) continue;
                    seqno = Common.GetStnSeq(i_sstano);
                    string s_autoing = Common.plc_s_autoing[plcno, seqno];
                    string s_loading = Common.plc_s_loading[plcno, seqno];
                    string s_canouting = Common.plc_s_canouting[plcno, seqno];
                    //string s_inreq1 = Common.plc_s_inreq1[plcno, seqno];
                    int i_wrk_no = Common.plc_i_Wrk_no[plcno, seqno];
                    if (s_autoing == "Y" && s_loading == "N" && s_canouting == "Y" && Common.plc_i_pakmk[plcno, seqno] == 0
                        && i_wrk_no == 0 && Common.gs_crncmd[crnno] == "")
                    {
                        Common.gs_crncmd[crnno] = "08" + i_wrkno.ToString().PadLeft(4, '0') + s_slocno + Common.GetLocByStn(i_sstano);
                        Common.gs_crnlastio[crnno] = "I";
                        Common.plc_i_pakmk[plcno, seqno] = 1;
                        Common.plc_s_canouting[plcno, seqno] = "N";
                    }
                }
            }
            catch (Exception e)
            {
                lb_LocToCrnStn.Text = "Proc_LocToCrnStn出错" + e.Message;
                return;
            }
        }
        /// <summary>
        /// 深库位出库,浅库位有货
        /// </summary>
        /// <param name="s_slocno">源库位</param>
        /// <returns></returns>
        private bool Proc_ShallowLoctoLoc(string s_slocno, int wrk_no, int crnno)
        {
            bool flag = false;
            try
            {
                int i_sstano = 0, i_dstano = 0, i_wrkno = 0, i_crnno = 0, i_wrksts = 0, i_iotype = 0, plcno = 0;
                string s_dlocno = "", s_picking = "N", s_locsts = "O", s_dlocsts = "", s_loctype = "", s_barcode = "", s_qty = "";
                i_crnno = crnno + 1;
                DataView dvloc_sts = Common.ExecAsrsSelect("select loc_sts,loc_type1,barcode from dbo.asr_loc_mast where  loc_no='" + s_slocno + "'");
                foreach (System.Data.DataRowView drow_locsts in dvloc_sts)
                {
                    s_locsts = drow_locsts[0].ToString();
                    s_loctype = drow_locsts[1].ToString();
                    s_barcode = drow_locsts[2].ToString();
 
                }
                if (s_locsts == "R")
                {
                    string sql = " select source_loc_no,loc_no,source_sta_no,sta_no,picking,wrk_no,crn_no,wrk_sts,io_type,sheet_no,io_pri from asr_wrk_mast where crn_no = 1 and wrk_sts=11 and source_loc_no =" + s_slocno + "";
                    DataView dv1 = Common.ExecAsrsSelect(sql);
                    if (dv1.Count > 0 && dv1 != null)
                    {
                        foreach (System.Data.DataRowView drow00 in dv1)
                        {
                            s_slocno = drow00[0].ToString();
                            s_dlocno = drow00[1].ToString();
                            i_sstano = Convert.ToInt32(drow00[2].ToString());
                            i_dstano = Convert.ToInt32(drow00[3].ToString());
                            s_picking = drow00[4].ToString();
                            i_wrkno = Convert.ToInt32(drow00[5].ToString());
                            i_crnno = Convert.ToInt32(drow00[6].ToString());
                            i_wrksts = Convert.ToInt32(drow00[7].ToString());
                            i_iotype = Convert.ToInt32(drow00[8].ToString());
                        }
                        int seqno = Common.GetStnSeq(i_sstano);
                        string s_autoing = Common.plc_s_autoing[plcno, seqno];
                        string s_loading = Common.plc_s_loading[plcno, seqno];
                        string s_canouting = Common.plc_s_canouting[plcno, seqno];
                        int i_wrk_no = Common.plc_i_Wrk_no[plcno, seqno];
                        //string s_inreq1 = Common.plc_s_inreq1[plcno, seqno];
                        //try
                        //{
                        //    string sql1 = "select loc_sts from dbo.asr_loc_mast where loc_no='" + s_slocno + "'";
                        //    DataView dv_sloc = Common.ExecAsrsSelect(sql1);
                        //    foreach (System.Data.DataRowView drow1 in dv_sloc)
                        //    {
                        //        s_locsts = drow1[0].ToString();
                        //    }
                        //}
                        //catch (Exception e)
                        //{
                        //    lb_ShallowLocToLoc.Text = "查询库存库位状态出错--" + e.Message;
                        //    return flag;
                        //}
                        try
                        {
                            string sql2 = "select loc_sts from dbo.asr_loc_mast where loc_no='" + s_dlocno + "'";
                            DataView dv_tloc = Common.ExecAsrsSelect(sql2);
                            foreach (System.Data.DataRowView drow2 in dv_tloc)
                            {
                                s_dlocsts = drow2[0].ToString();
                            }
                        }
                        catch (Exception e)
                        {
                            //lb_ShallowLocToLoc.Text = "查询库存库位状态出错--" + e.Message;
                            return flag;
                        }
 
                        if (i_iotype > 100 && s_locsts == "R")                               //i_iotype>100时执行出库任务
                        {
                            if (s_autoing == "Y" && s_loading == "N" && s_canouting == "Y" && Common.plc_i_pakmk[plcno, seqno] == 0
                            && i_wrk_no == 0 && Common.gs_crncmd[crnno] == "")
                            {
                                Common.gs_crncmd[0] = "08" + i_wrkno.ToString().PadLeft(4, '0') + s_slocno + Common.GetLocByStn(i_sstano);
                                Common.gs_crnlastio[crnno] = "I";
                                Common.plc_i_pakmk[plcno, seqno] = 1;
                                Common.plc_s_canouting[plcno, seqno] = "N";
                                flag = true;
                            }
                        }
                        else if (i_iotype == 11 && s_locsts == "R" && s_dlocsts == "S")                          //i_iotype=11时执行移库任务  
                        {
                            if (Common.gs_crncmd[crnno] == "")
                            {
                                Common.gs_crncmd[crnno] = "12" + i_wrkno.ToString().PadLeft(4, '0') + s_slocno + s_dlocno;
                                flag = true;
                            }
                        }
                    }
                    else
                    {
                        //lb_ShallowLocToLoc.Text = "深库位出库,浅库位:" + s_slocno + ";库位状态为R,但没有工作档";
                        Common.WriteLogFile("WcsLog", "深库位出库,浅库位:" + s_slocno + ";库位状态为R,但没有工作档");
                        return flag;
                    }
                }
                //浅库位没有移/出库任务,自动生成移库任务。
                else if (s_locsts == "D" || s_locsts == "F")
                {
                    string sqlDetl = "";
                    string sql = "select top 1 loc_no from asr_loc_mast where row1 in (1,3)  and loc_sts  = 'O' and loc_type1 = " + s_loctype;
                    DataView dvd_locno = Common.ExecAsrsSelect(sql);
                    if (dvd_locno.Count > 0 && dvd_locno != null)
                    {
                        i_wrkno = Common.GetWrkno(1);
                        if (i_wrkno == 0)
                        {
                            //lb_ShallowLocToLoc.Text = "生成工作号失败";
                            flag = true;
                        }
                        foreach (System.Data.DataRowView dloc in dvd_locno)
                        {
                            s_dlocno = dloc[0].ToString();
                        }
                        DateTime dt = DateTime.Now;
                        if (s_locsts == "D")
                        {
                            sqlDetl = "insert into asr_wrk_mast(wrk_no,wrk_sts,io_type,io_pri,crn_no,source_loc_no,loc_no,full_plt,picking,exit_mk,empty_mk,barcode,link_mis,appe_user,modi_user,io_time)";
                            sqlDetl += "values (" + i_wrkno + ",11,11,15," + i_crnno + ",'" + s_slocno + "','" + s_dlocno + "','N','N','N','Y','" + s_barcode + "','N','9527','9527','" + dt + "');";
                            sqlDetl += "update asr_loc_mast set loc_sts = 'R' where loc_no = " + s_slocno + ";";
                            sqlDetl += "update asr_loc_mast set loc_sts = 'S' where loc_no = " + s_dlocno + ";";
                        }
                        else if (s_locsts == "F")
                        {
                            sqlDetl = "insert into asr_wrk_mast(wrk_no,wrk_sts,io_type,io_pri,crn_no,source_loc_no,loc_no,full_plt,picking,exit_mk,empty_mk,barcode,link_mis,appe_user,modi_user,io_time)";
                            sqlDetl += "values (" + i_wrkno + ",11,11,15," + i_crnno + ",'" + s_slocno + "','" + s_dlocno + "','Y','N','N','N','" + s_barcode + "','N','9527','9527','" + dt + "');";
 
                            sqlDetl += " INSERT INTO asr_wrk_detl(wrk_no,mat_no,mat_name,specs,size,color,weight,qty,unit,zpallet,io_time,supplier) ";
                            sqlDetl += " SELECT " + i_wrkno + ",mat_no,mat_name,specs,size,color,weight,qty,unit,zpallet,'" + dt + "',supplier ";
                            sqlDetl += " FROM asr_loc_detl where loc_no ='" + s_slocno + "';";
 
                            sqlDetl += " update asr_loc_mast set loc_sts = 'R' where loc_no = " + s_slocno + ";";
                            sqlDetl += " update asr_loc_mast set loc_sts = 'S' where loc_no = " + s_dlocno + ";";
                        }
                        bool result = Common.ExecAsrsModify(sqlDetl);
                        if (result)
                        {
                            Common.gs_crncmd[crnno] = "12" + i_wrkno.ToString().PadLeft(4, '0') + s_slocno + s_dlocno;
                            flag = true;
                        }
                    }
                    else
                    {
                        //lb_ShallowLocToLoc.Text = "库位移转没有空库位可用";
                        Common.WriteLogFile("WcsLog", "库位移转错误:没有空库位可用");
                        flag = true;
                    }
                }
                else
                {
                    return flag;
                }
            }
            catch (Exception em)
            {
                //lb_ShallowLocToLoc.Text = "深库位出库浅库位有货,处理失败:" + em.Message;
                Common.WriteLogFile("WcsError", "深库位出库浅库位有货,处理失败:" + em.Message);
                return flag = true;
            }
            return flag;
        }
        #endregion
 
        #region 异常维护
        //private void buttonX3_Click(object sender, EventArgs e)
        //{
        //    Common.AddPlcQuereCmd(0, "05000000000000");   //清空给PLC有出库资料信号
        //    //Common.AddPlcQuereCmd(0, "06000009990000");
        //}
 
        //private void tb_wrkno_Leave(object sender, EventArgs e)
        //{
        //    try
        //    {
        //        if (tb_wrkno.Text.Trim() != "")
        //        {
        //            if (Common.ChkStrtoInt(tb_wrkno.Text.Trim()))
        //            {
        //                int wrkno = int.Parse(tb_wrkno.Text.Trim());
        //                string sql = "select wrk_sts from asr_wrk_mast where wrk_no=" + wrkno;
        //                DataView dv = Common.ExecAsrsSelect(sql);
        //                if (dv.Count <= 0)
        //                {
        //                    MessageBox.Show("工作号在工作档中不存在", "提示");
        //                    tb_wrkno.Focus();
        //                    //tb_wrkno.SelectAll();
        //                    return;
        //                }
        //                foreach (DataRowView drow in dv)
        //                {
        //                    int sts = int.Parse(drow[0].ToString());
        //                    switch (sts)
        //                    {
        //                        case 1:
        //                            tb_wrksts.Text = "1.生成入库ID";
        //                            break;
        //                        case 2:
        //                            tb_wrksts.Text = "2.设备上走";
        //                            break;
        //                        case 3:
        //                            tb_wrksts.Text = "3.堆垛机入库中";
        //                            break;
        //                        case 4:
        //                            tb_wrksts.Text = "4.入库完成";
        //                            break;
        //                        case 5:
        //                            tb_wrksts.Text = "5.库存更新完成";
        //                            break;
        //                        case 11:
        //                            tb_wrksts.Text = "11.生成出库ID";
        //                            break;
        //                        case 12:
        //                            tb_wrksts.Text = "12.堆垛机出库中";
        //                            break;
        //                        case 13:
        //                            tb_wrksts.Text = "13.堆垛机空出库错误";
        //                            break;
        //                        case 14:
        //                            tb_wrksts.Text = "14.出库完成";
        //                            break;
        //                        case 15:
        //                            tb_wrksts.Text = "15.出库更新完成";
        //                            break;
        //                    }
        //                    btnWrkSts.Enabled = true;
        //                }
        //            }
        //            else
        //            {
        //                MessageBox.Show("请输入正确的工作号(只能为数字)", "提示");
        //                tb_wrksts.Focus();
        //                //tb_wrksts.SelectAll();
        //                return;
        //            }
        //        }
        //    }
        //    catch (Exception em)
        //    {
        //        MessageBox.Show(em.Message);
        //    }
        //}
 
        //private void btnWrkSts_Click(object sender, EventArgs e)
        //{
        //    try
        //    {
        //        if (cb_wrksts.SelectedIndex < 0)
        //        {
        //            MessageBox.Show("请选择新工作状态", "提示");
        //            return;
        //        }
        //        int wrkno = int.Parse(tb_wrkno.Text.Trim());
        //        string sql = "select * from asr_wrk_mast where wrk_no=" + wrkno;
        //        if (Common.ExecAsrsSelect1(sql) > 0)
        //        {
        //            DialogResult dr = MessageBox.Show("确定更新工作状态吗?请谨慎操作", "提示", MessageBoxButtons.OKCancel);
        //            if (dr == DialogResult.OK)
        //            {
        //                int wrksts = 0;
        //                switch (cb_wrksts.SelectedIndex)
        //                {
        //                    case 0:
        //                        wrksts = 1;
        //                        break;
        //                    case 1:
        //                        wrksts = 2;
        //                        break;
        //                    case 2:
        //                        wrksts = 3;
        //                        break;
        //                    case 3:
        //                        wrksts = 4;
        //                        break;
        //                    case 4:
        //                        wrksts = 5;
        //                        break;
        //                    case 5:
        //                        wrksts = 11;
        //                        break;
        //                    case 6:
        //                        wrksts = 12;
        //                        break;
        //                    case 7:
        //                        wrksts = 13;
        //                        break;
        //                    case 8:
        //                        wrksts = 14;
        //                        break;
        //                    case 9:
        //                        wrksts = 15;
        //                        break;
        //                }
        //                if (wrksts > 0)
        //                {
        //                    sql = "update asr_wrk_mast set wrk_sts=" + wrksts + " where wrk_no=" + wrkno;
        //                    SqlConnection sqlconn = new SqlConnection(Common.sqlcon);
        //                    sqlconn.Open();
        //                    SqlTransaction sqltrans = sqlconn.BeginTransaction();
        //                    SqlCommand sqlcmd = new SqlCommand(sql, sqlconn);
        //                    sqlcmd.Transaction = sqltrans;
        //                    try
        //                    {
        //                        sqlcmd.ExecuteNonQuery();
        //                        sqltrans.Commit();
        //                        MessageBox.Show("工作状态更新成功", "提示");
        //                        btnWrkSts.Enabled = false;
        //                        tb_wrkno.Text = "";
        //                        tb_wrksts.Text = "";
        //                        cb_wrksts.SelectedIndex = -1;
        //                    }
        //                    catch (SqlException em)
        //                    {
        //                        sqltrans.Rollback();
        //                        MessageBox.Show("更新工作状态失败:" + em.Message);
        //                    }
        //                    finally
        //                    {
        //                        sqlcmd.Dispose();
        //                        sqlconn.Dispose();
        //                    }
        //                }
        //                else
        //                {
        //                    MessageBox.Show("请重新选择新工作状态", "提示");
        //                    return;
        //                }
        //            }
        //        }
        //        else
        //        {
        //            MessageBox.Show("工作号在工作档中不存在", "提示");
        //            return;
        //        }
        //    }
        //    catch (Exception em)
        //    {
        //        MessageBox.Show(em.Message);
        //    }
        //}
 
        //private void tb_locno_Leave(object sender, EventArgs e)
        //{
        //    try
        //    {
        //        if (tb_locno.Text.Trim() != "")
        //        {
        //            if (tb_locno.Text.Trim().Length == 7)
        //            {
        //                string locno = tb_locno.Text.Trim();
        //                string sql = "select loc_sts from asr_loc_mast where loc_no='" + locno + "'";
        //                DataView dv = Common.ExecAsrsSelect(sql);
        //                if (dv.Count <= 0)
        //                {
        //                    MessageBox.Show("库位号在库存档中不存在", "提示");
        //                    tb_locno.Focus();
        //                    return;
        //                }
        //                foreach (DataRowView drow in dv)
        //                {
        //                    string sts = drow[0].ToString();
        //                    switch (sts)
        //                    {
        //                        case "D":
        //                            tb_locsts.Text = "D.周转箱在库";
        //                            break;
        //                        case "O":
        //                            tb_locsts.Text = "O.空库位";
        //                            break;
        //                        case "R":
        //                            tb_locsts.Text = "R.出库预约";
        //                            break;
        //                        case "S":
        //                            tb_locsts.Text = "S.入库预约";
        //                            break;
        //                        case "X":
        //                            tb_locsts.Text = "X.库位禁用";
        //                            break;
        //                    }
        //                    btnLocSts.Enabled = true;
        //                }
        //            }
        //            else
        //            {
        //                MessageBox.Show("库位号长度是7位", "提示");
        //                tb_locno.Focus();
        //                return;
        //            }
        //        }
        //    }
        //    catch (Exception em)
        //    {
        //        MessageBox.Show(em.Message);
        //    }
        //}
 
        //private void btnLocSts_Click(object sender, EventArgs e)
        //{
        //    try
        //    {
        //        if (cb_locsts.SelectedIndex < 0)
        //        {
        //            MessageBox.Show("请选择新库位状态", "提示");
        //            return;
        //        }
        //        string locno = tb_locno.Text.Trim();
        //        string sql = "select * from asr_loc_mast where loc_no='" + locno + "'";
        //        if (Common.ExecAsrsSelect1(sql) > 0)
        //        {
        //            DialogResult dr = MessageBox.Show("确定更新库位状态吗?请谨慎操作", "提示", MessageBoxButtons.OKCancel);
        //            if (dr == DialogResult.OK)
        //            {
        //                string locsts = "";
        //                switch (cb_locsts.SelectedIndex)
        //                {
        //                    case 0:
        //                        locsts = "D";
        //                        break;
        //                    case 1:
        //                        locsts = "O";
        //                        break;
        //                    case 2:
        //                        locsts = "R";
        //                        break;
        //                    case 3:
        //                        locsts = "S";
        //                        break;
        //                    case 4:
        //                        locsts = "X";
        //                        break;
        //                }
        //                if (locsts != "")
        //                {
        //                    sql = "update asr_loc_mast set loc_sts='" + locsts + "' where loc_no=" + locno;
        //                    SqlConnection sqlconn = new SqlConnection(Common.sqlcon);
        //                    sqlconn.Open();
        //                    SqlTransaction sqltrans = sqlconn.BeginTransaction();
        //                    SqlCommand sqlcmd = new SqlCommand(sql, sqlconn);
        //                    sqlcmd.Transaction = sqltrans;
        //                    try
        //                    {
        //                        sqlcmd.ExecuteNonQuery();
        //                        sqltrans.Commit();
        //                        MessageBox.Show("库位状态更新成功", "提示");
        //                        btnLocSts.Enabled = false;
        //                        tb_locno.Text = "";
        //                        tb_locsts.Text = "";
        //                        cb_locsts.SelectedIndex = -1;
        //                    }
        //                    catch (SqlException em)
        //                    {
        //                        sqltrans.Rollback();
        //                        MessageBox.Show("更新库位状态失败:" + em.Message);
        //                    }
        //                    finally
        //                    {
        //                        sqlcmd.Dispose();
        //                        sqlconn.Dispose();
        //                    }
        //                }
        //                else
        //                {
        //                    MessageBox.Show("请重新选择新库位状态", "提示");
        //                    return;
        //                }
        //            }
        //        }
        //        else
        //        {
        //            MessageBox.Show("库位号在库存档中不存在", "提示");
        //            return;
        //        }
        //    }
        //    catch (Exception em)
        //    {
        //        MessageBox.Show(em.Message);
        //    }
        //}
 
        //private void buttonX4_Click(object sender, EventArgs e)
        //{
        //    try
        //    {
        //        string sql = "select wrk_no,wrk_sts from asr_wrk_mast where wrk_sts=2 or wrk_sts=3";
        //        DataView dv = Common.ExecAsrsSelect(sql);
        //        if (dv.Count > 0)
        //        {
        //            foreach (DataRowView drow in dv)
        //            {
        //                int wrkno = int.Parse(drow[0].ToString());
        //                int wrksts = int.Parse(drow[1].ToString());
        //                if (Common.plc_i_Wrk_no[0, 0] == wrkno || Common.plc_i_Wrk_no[0, 1] == wrkno || Common.crn_i_Wrkno[0] == wrkno)
        //                {
        //                    DialogResult dr = MessageBox.Show("设备上还存在该工作号[" + wrkno + "]对应料盒,确定手工完结?请谨慎操作", "提示", MessageBoxButtons.OKCancel);
        //                    if (dr == DialogResult.Cancel) continue;
        //                }
        //                else
        //                {
        //                    DialogResult dr = MessageBox.Show("确定手工完结[工作号:" + wrkno + ";工作状态:" + wrksts + "]?请谨慎操作", "提示", MessageBoxButtons.OKCancel);
        //                    if (dr == DialogResult.Cancel) continue;
        //                }
        //                sql = "update asr_wrk_mast set wrk_sts=4 where wrk_no=" + wrkno;
        //                SqlConnection sqlconn = new SqlConnection(Common.sqlcon);
        //                sqlconn.Open();
        //                SqlTransaction sqltrans = sqlconn.BeginTransaction();
        //                SqlCommand sqlcmd = new SqlCommand(sql, sqlconn);
        //                sqlcmd.Transaction = sqltrans;
        //                try
        //                {
        //                    sqlcmd.ExecuteNonQuery();
        //                    sqltrans.Commit();
        //                    MessageBox.Show("入库手工完结成功", "提示");
        //                }
        //                catch (SqlException em)
        //                {
        //                    sqltrans.Rollback();
        //                    MessageBox.Show("入库手工完结失败:" + em.Message);
        //                }
        //                finally
        //                {
        //                    sqlcmd.Dispose();
        //                    sqlconn.Dispose();
        //                }
        //            }
        //        }
        //        else
        //        {
        //            MessageBox.Show("工作档中不存在入库待完结资料", "提示");
        //            return;
        //        }
        //    }
        //    catch (Exception em)
        //    {
        //        MessageBox.Show(em.Message);
        //    }
        //}
 
        //private void buttonX5_Click(object sender, EventArgs e)
        //{
        //    try
        //    {
        //        string sql = "select wrk_no,wrk_sts from asr_wrk_mast where wrk_sts=11 or wrk_sts=12";
        //        DataView dv = Common.ExecAsrsSelect(sql);
        //        if (dv.Count > 0)
        //        {
        //            foreach (DataRowView drow in dv)
        //            {
        //                int wrkno = int.Parse(drow[0].ToString());
        //                int wrksts = int.Parse(drow[1].ToString());
        //                if (Common.plc_i_Wrk_no[0, 0] == wrkno || Common.plc_i_Wrk_no[0, 1] == wrkno || Common.crn_i_Wrkno[0] == wrkno)
        //                {
        //                    DialogResult dr = MessageBox.Show("设备上还存在该工作号[" + wrkno + "]对应料盒,确定出库手工完结?请谨慎操作", "提示", MessageBoxButtons.OKCancel);
        //                    if (dr == DialogResult.Cancel) continue;
        //                }
        //                else
        //                {
        //                    DialogResult dr = MessageBox.Show("确定出库手工完结[工作号:" + wrkno + ";工作状态:" + wrksts + "]?请谨慎操作", "提示", MessageBoxButtons.OKCancel);
        //                    if (dr == DialogResult.Cancel) continue;
        //                }
        //                sql = "update asr_wrk_mast set wrk_sts=14 where wrk_no=" + wrkno;
        //                SqlConnection sqlconn = new SqlConnection(Common.sqlcon);
        //                sqlconn.Open();
        //                SqlTransaction sqltrans = sqlconn.BeginTransaction();
        //                SqlCommand sqlcmd = new SqlCommand(sql, sqlconn);
        //                sqlcmd.Transaction = sqltrans;
        //                try
        //                {
        //                    sqlcmd.ExecuteNonQuery();
        //                    sqltrans.Commit();
        //                    MessageBox.Show("出库手工完结成功", "提示");
        //                }
        //                catch (SqlException em)
        //                {
        //                    sqltrans.Rollback();
        //                    MessageBox.Show("出库手工完结失败:" + em.Message);
        //                }
        //                finally
        //                {
        //                    sqlcmd.Dispose();
        //                    sqlconn.Dispose();
        //                }
        //            }
        //        }
        //        else
        //        {
        //            MessageBox.Show("工作档中不存在出库待完结资料", "提示");
        //            return;
        //        }
        //    }
        //    catch (Exception em)
        //    {
        //        MessageBox.Show(em.Message);
        //    }
        //}
        #endregion
 
        #region  手动发送LED
        //private void b_ledSend_Click(object sender, EventArgs e)
        //{
        //    try
        //    {
        //        //if (tb_ledtext1.Text == "" || tb_ledtext2.Text == "" || tb_ledtext3.Text == "" || tb_ledtext4.Text == "")
        //        if (tb_ledtext1.Text == "" || tb_ledtext2.Text == "" || tb_ledtext3.Text == "")
        //        {
        //            MessageBox.Show("请输入发布内容");
        //            return;
        //        }
        //        //string data = tb_ledtext1.Text + ";" + tb_ledtext2.Text + ";" + tb_ledtext3.Text + ";" + tb_ledtext4.Text;
        //        string data = tb_ledtext1.Text + ";" + tb_ledtext2.Text + ";" + tb_ledtext3.Text;
        //        if (rb_led1.Checked)
        //        {
        //            //Common.gi_led_Pages[0] = 4;
        //            Common.gs_led_data[0] = data;
        //            tb_sendtoled1.Text = data;
        //        }
        //        else if (rb_led2.Checked)
        //        {
        //            //Common.gi_led_Pages[1] = 4;
        //            Common.gs_led_data[1] = data;
        //            tb_sendtoled2.Text = data;
        //        }
        //    }
        //    catch (Exception em)
        //    {
        //        MessageBox.Show("发送失败" + em.Message);
        //    }
        //}
        #endregion
 
 
        /// <summary>
        /// 字体变色
        /// </summary>
        /// <param name="a"></param>
        private void fontColorSwitch(int a)
        {
            try
            {
                switch (a)
                {
                    case 0:
                        break;
                    case 1:
                        this.button_main.ForeColor = Color.SandyBrown;
                        this.button_plc.ForeColor = Color.White;
                        this.button_crn.ForeColor = Color.White;
                        break;
                    case 2:
                        this.button_plc.ForeColor = Color.SandyBrown;
                        this.button_main.ForeColor = Color.White;
                        this.button_crn.ForeColor = Color.White;
                        break;
                    case 3:
                        this.button_crn.ForeColor = Color.SandyBrown;
                        this.button_main.ForeColor = Color.White;
                        this.button_plc.ForeColor = Color.White;
                        break;
                }
            }
            catch
            {
 
            }
        }
 
        /// <summary>
        /// 主控界面置顶
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void button_main_Click(object sender, EventArgs e)
        {
            //panel_left.Parent = panel_plc_top;
            //panel_barcode.Parent = this;
            //panel_led.Parent = this;
            //panel_crn_top.Parent = this;
            //panel_plc_top.Parent = this;
            //panel_main.Parent = this;
            //panel_menu.Parent = panel_min_map;
            //panel_main.BringToFront();
            //panel_main.Dock = DockStyle.Fill;
            //int value = 1;
            //fontColorSwitch(value);
 
            panel_left.Parent = panel_plc_top;
            panel_menu.Parent = panel_min_map;
            this.tc_main.SelectedTab = tp_map;
            int value = 1;
            fontColorSwitch(value);
        }
        /// <summary>
        /// 输送设备界面按钮
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void button_plc_Click(object sender, EventArgs e)
        {
            //panel_left.Parent = panel_plc_top;
            //panel_left.Dock = DockStyle.Left;
            //panel_barcode.Parent = this;
            //panel_led.Parent = this;
            //panel_crn_top.Parent = this;
            //panel_plc_top.Parent = this;
            //panel_main.Parent = this;
            //panel_menu.Parent = panel_left;
            //panel_plc_top.BringToFront();
            //panel_plc_top.Dock = DockStyle.Fill;
            //int value = 2;
            //fontColorSwitch(value);
            panel_left.Parent = panel_plc_top;
            panel_menu.Parent = panel_left;
            this.tc_main.SelectedTab = tp_plc;
            int value = 2;
            fontColorSwitch(value);
        }
        /// <summary>
        /// 堆垛机界面按钮
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void button_crn_Click(object sender, EventArgs e)
        {
            //panel_left.Parent = panel_crn_top;
            //panel_left.Dock = DockStyle.Left;
            //panel_barcode.Parent = this;
            //panel_led.Parent = this;
            //panel_crn_top.Parent = this;
            //panel_plc_top.Parent = this;
            //panel_main.Parent = this;
            //panel_menu.Parent = panel_left;
            //panel_crn_top.BringToFront();
            //panel_crn_top.Dock = DockStyle.Fill;
            //int value = 3;
            //fontColorSwitch(value);
            panel_left.Parent = panel_crn_top;
            panel_menu.Parent = panel_left;
            this.tc_main.SelectedTab = tp_crn;
            int value = 3;
            fontColorSwitch(value);
        }
        /// <summary>
        /// 关闭键
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void button59_Click(object sender, EventArgs e)
        {
            timer2.Start();
        }
 
        /// <summary>
        /// 拖动
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void panel_plc_head_MouseDown(object sender, MouseEventArgs e)
        {
            if (e.Button == MouseButtons.Left)
            {
                mouseOff = new Point(-e.X, -e.Y);//获得当前鼠标的坐标
                leftFlag = true;
            }
        }
 
        private void panel_plc_head_MouseMove(object sender, MouseEventArgs e)
        {
            if (leftFlag)
            {
                WindowState = FormWindowState.Normal;
                //this.button78.BackgroundImage = Image.FromFile(Common.picpath + "全屏.png");
                Point mouseSet = Control.MousePosition;//获得移动后鼠标的坐标
                mouseSet.Offset(mouseOff.X, mouseOff.Y);//设置移动后的位置
                Location = mouseSet;
            }
        }
 
        private void panel_plc_head_MouseUp(object sender, MouseEventArgs e)
        {
            if (leftFlag)
            {
                leftFlag = false;
            }
        }
 
        /// <summary>
        /// 渐隐关闭控件
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void timer2_Tick(object sender, EventArgs e)
        {
            if (this.Opacity >= 0.025)
            {
                this.Opacity -= 0.025;
            }
            else
            {
                timer2.Stop();
                this.Close();
            }
        }
 
        /// <summary>
        /// 最大化按钮
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void button78_Click_1(object sender, EventArgs e)
        {
            if (WindowState == FormWindowState.Normal)
            {
                this.WindowState = FormWindowState.Maximized;
                //this.button78.BackgroundImage = Image.FromFile(Common.picpath + "取消全屏.png");
            }
            else
            {
                this.WindowState = FormWindowState.Normal;
                //this.button78.BackgroundImage = Image.FromFile(Common.picpath + "全屏.png");
            }
        }
        /// <summary>
        /// 最小化按钮
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void button79_Click(object sender, EventArgs e)
        {
            this.WindowState = FormWindowState.Minimized;
        }
 
     
 
        private void YanShi1_Click(object sender, EventArgs e)
        {
            try
            {
                if (Common.gi_Yanshi_Flag[0] == false)
                {
                    Common.gi_Yanshi_Flag[0] = true;
                    YanShi1.Text = "1#暂停";
                    YanShi1.ForeColor = Color.Blue;
                }
                else
                {
                    Common.gi_Yanshi_Flag[0] = false;
                    YanShi1.Text = "1#演示";
                    YanShi1.ForeColor = Color.Red;
                }
 
            }
            catch (Exception em)
            {
                Common.WriteLogFile("WcsError", "YanShi1_Click--1#演示功能出错:" + em.Message);
                toolStripStatusLabel4.Text = "1#演示功能出错:" + em.Message;
            }
        }
        private void YanShi2_Click(object sender, EventArgs e)
        {
            try
            {
                if (Common.gi_Yanshi_Flag[1] == false)
                {
                    Common.gi_Yanshi_Flag[1] = true;
                    YanShi2.Text = "2#暂停";
                    YanShi2.ForeColor = Color.Blue;
                }
                else
                {
                    Common.gi_Yanshi_Flag[1] = false;
                    YanShi2.Text = "2#演示";
                    YanShi2.ForeColor = Color.Red;
                }
 
            }
            catch (Exception em)
            {
                Common.WriteLogFile("WcsError", "YanShi2_Click--2#演示功能出错:" + em.Message);
                toolStripStatusLabel4.Text = "2#演示功能出错:" + em.Message;
            }
        }
      
 
        private void YanShi3_Click(object sender, EventArgs e)
        {
            {
                try
                {
                    if (Common.gi_Yanshi_Flag[2] == false)
                    {
                        Common.gi_Yanshi_Flag[2] = true;
                        YanShi3.Text = "3#暂停";
                        YanShi3.ForeColor = Color.Blue;
                    }
                    else
                    {
                        Common.gi_Yanshi_Flag[2] = false;
                        YanShi3.Text = "3#演示";
                        YanShi3.ForeColor = Color.Red;
                    }
 
                }
                catch (Exception em)
                {
                    Common.WriteLogFile("WcsError", "YanShi3_Click--3#演示功能出错:" + em.Message);
                    toolStripStatusLabel4.Text = "3#演示功能出错:" + em.Message;
                }
            }
        }
 
        private void button334_Click(object sender, EventArgs e)
        {
            timer2.Start();
        }
 
        private void button333_Click(object sender, EventArgs e)
        {
            if (WindowState == FormWindowState.Normal)
            {
                this.WindowState = FormWindowState.Maximized;
                this.button333.BackgroundImage = Image.FromFile(Common.picpath + "取消全屏.png");
            }
            else
            {
                this.WindowState = FormWindowState.Normal;
                this.button333.BackgroundImage = Image.FromFile(Common.picpath + "全屏.png");
            }
        }
 
        private void button332_Click(object sender, EventArgs e)
        {
            this.WindowState = FormWindowState.Minimized;
        }
 
        private void button337_Click(object sender, EventArgs e)
        {
            timer2.Start();
        }
 
        private void button79_Click_1(object sender, EventArgs e)
        {
            timer2.Start();
        }
 
        private void button340_Click(object sender, EventArgs e)
        {
            timer2.Start();
        }
 
        private void button339_Click(object sender, EventArgs e)
        {
            if (WindowState == FormWindowState.Normal)
            {
                this.WindowState = FormWindowState.Maximized;
                this.button339.BackgroundImage = Image.FromFile(Common.picpath + "取消全屏.png");
            }
            else
            {
                this.WindowState = FormWindowState.Normal;
                this.button339.BackgroundImage = Image.FromFile(Common.picpath + "全屏.png");
            }
        }
 
        private void button78_Click(object sender, EventArgs e)
        {
            if (WindowState == FormWindowState.Normal)
            {
                this.WindowState = FormWindowState.Maximized;
                this.button78.BackgroundImage = Image.FromFile(Common.picpath + "取消全屏.png");
            }
            else
            {
                this.WindowState = FormWindowState.Normal;
                this.button78.BackgroundImage = Image.FromFile(Common.picpath + "全屏.png");
            }
        }
 
        private void button336_Click(object sender, EventArgs e)
        {
            if (WindowState == FormWindowState.Normal)
            {
                this.WindowState = FormWindowState.Maximized;
                this.button336.BackgroundImage = Image.FromFile(Common.picpath + "取消全屏.png");
            }
            else
            {
                this.WindowState = FormWindowState.Normal;
                this.button336.BackgroundImage = Image.FromFile(Common.picpath + "全屏.png");
            }
        }
 
        private void button335_Click(object sender, EventArgs e)
        {
            this.WindowState = FormWindowState.Minimized;
        }
 
        private void button59_Click_1(object sender, EventArgs e)
        {
            this.WindowState = FormWindowState.Minimized;
        }
 
        private void button338_Click(object sender, EventArgs e)
        {
            this.WindowState = FormWindowState.Minimized;
        }
 
    
 
     
 
    
 
   
 
 
 
 
    }
}