schangxiang@126.com
2025-11-04 f5ed29dc26c7cd952d56ec5721a2efc43cd25992
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
using DataEntity;
using DataEntity.Share;
using DataRWDAL;
using DriverLib.Engine;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Xml;
using XCommon;
using XCommon.Log;
using XCore;
using XCoreBLL;
using XHandler.Controls.Run.Com;
using XHandler.View;
using XImagingXhandler.XDAL;
using DataCalcDAL;
using System.Configuration;
using HxEnum;
using XHandler.Class.DataEx;
using NPOI.SS.Formula.Eval;
using DataEntity.Rack;
using static HxEnum.OperationTypeEnum;
using System.Reflection;
using XHandler.View.MethodProperty;
using MySqlX.XDevAPI.Common;
using XImaging.Automation.Service.Interface;
using System.Windows;
using System.Collections.ObjectModel;
 
namespace XHandler.Controls
{
    /// <summary>
    /// 文件转板执行
    /// </summary>
    public class FileMoveLabwareControl
    {
        string strCurrentCulture = "";
        WellCalc wellCalc = new WellCalc();
        LatticeBll latticeBll = new LatticeBll();
        FileMoveLabwareBll fileMoveLabwareBll = new FileMoveLabwareBll();
        public RunWnd launchView = null;
        LiquidAccuracyBll liquidAccuracyBll = new LiquidAccuracyBll();
        WellCalcOfGripper wellCalcOfGripper= new WellCalcOfGripper();
        GripTransportBll gripTransportBll=new GripTransportBll();
 
        public FileMoveLabwareControl(string strCurrentCulture)
        {
            this.strCurrentCulture = strCurrentCulture;
        }
 
        #region 执行文件转板,返回结果字符串
        /// <summary>
        /// 执行文件转板,返回结果字符串
        /// </summary>
        /// <param name="xmlEnv">板位节点信息</param>
        /// <param name="methodNode">装载方法属性节点对象</param>
        /// <param name="zAxisVal">z轴安全距离</param>
        /// <param name="isSimulator">0:连接谁;1:仿真</param>
        /// <returns></returns>
        public bool ExecuteFileMoveLabware(XmlNode xmlEnv, XmlNode methodNode, float zAxisVal, bool isSimulator)
        {
            bool result = true;
            HxResult ret = new HxResult();
            if (launchView._cancelSource.IsCancellationRequested)
            {
                result = false;
                return result;
            }
 
            #region Start Log
            if (strCurrentCulture.Equals("zh-CN"))
            {
                launchView.AddLogs("【" + DateTime.Now.ToString("HH:mm:ss:fff") + "】> Xhandler: 【" + methodNode.SelectSingleNode("name").InnerText + "】" + Properties.MachineRunResource.strStart.ToString());
            }
            else
            {
                launchView.AddLogs("【" + DateTime.Now.ToString("HH:mm:ss:fff") + "】> Xhandler: 【" + methodNode.SelectSingleNode("name").InnerText + "】start:");
            }
            #endregion
 
            #region 数据准备 
            var platformNodeList = xmlEnv.SelectNodes("platform");
            MethodFileMoveLabware methodFileMoveLabware = fileMoveLabwareBll.GenerateMethodFileMoveLabwareDataByXmlNode(methodNode);
            int recordAllCount = methodFileMoveLabware.transferDataTable.Rows.Count;     // 文件记录总数
            int recordIndex = 0;                    // 循环控制总的切分次数
            TipsTable tipsTable = new TipsTable();  // 执行的孔数据对象
            #endregion
 
            #region 数据检查
            //只有选择夹爪臂才可以执行转板
            if (methodFileMoveLabware == null)
            {
                launchView.AddLogs("【" + DateTime.Now.ToString("HH:mm:ss:fff") + "】> Xhandler: 【" + methodNode.SelectSingleNode("name").InnerText + "】" + Properties.RunFileMoveLiquidResource.strFileMoveLiquidDataCheckError.ToString());
                result = false;
                return result;
            }
            else
            {
                if (methodFileMoveLabware.armText.Equals("夹爪臂"))
                {
                }
                else
                {
                    if (strCurrentCulture.Equals("zh-CN"))
                    {
                        launchView.AddLogs("【" + DateTime.Now.ToString("HH:mm:ss:fff") + "】>Xhandler: 【" + methodFileMoveLabware.name + "】" + Properties.RunFileMoveLabwareResource.strFileMoveLabwareArmError.ToString());
                        LoggerRunHelper.InfoLog("【" + DateTime.Now.ToString("HH:mm:ss:fff") + "】>Xhandler: 【" + methodFileMoveLabware.name + "】" + Properties.RunFileMoveLabwareResource.strFileMoveLabwareArmError.ToString());
                    }
                    else
                    {
                        launchView.AddLogs("【" + DateTime.Now.ToString("HH:mm:ss:fff") + "】>Xhandler: 【" + methodFileMoveLabware.name + "】selected arm of device isn't support pick board.");
                        LoggerRunHelper.InfoLog("【" + DateTime.Now.ToString("HH:mm:ss:fff") + "】>Xhandler: 【" + methodFileMoveLabware.name + "】selected arm of device isn't support pick board.");
                    }
                    result = false;
                    return result;
                }
            }
            #endregion
            bool shakerExecuteFinish=false;// 震荡位是否执行过
 
            #region 数据执行
            while (recordIndex < recordAllCount)
            {
                #region 抓板处理过程
                string sourceLattice = methodFileMoveLabware.transferDataTable.Rows[recordIndex][methodFileMoveLabware.pickLattice].ToString();
                string globalVariableValue = "";
                globalVariableValue = ControlCom.SearchValueOfGlobalVariable(launchView, sourceLattice);
                if (!string.IsNullOrEmpty(globalVariableValue))
                {
                    sourceLattice = globalVariableValue;
                }
                XmlNode srcPlatformNode = ComUtility.GetXmlNodeByBoardName(xmlEnv.SelectNodes("platform"), sourceLattice);
                if (srcPlatformNode == null&& !sourceLattice.Equals("P0"))
                {
                    if (strCurrentCulture.Equals("zh-CN"))
                    {
                        launchView.AddLogs("【" + DateTime.Now.ToString("HH:mm:ss:fff") + "】> Xhandler: 【" + methodFileMoveLabware.name + "】" + Properties.MachineRunResource.strProgress.ToString() + Properties.RunFileMoveLabwareResource.strFileMoveLabwareOfLatticeError.ToString());
                    }
                    else
                    {
                        launchView.AddLogs("【" + DateTime.Now.ToString("HH:mm:ss:fff") + "】> Xhandler: 【" + methodFileMoveLabware.name + "】progress: the lattice of pick board is wrong! please check!");
                    }
                    result = false;
                    return result;
                }
                else
                {
                    string sourceWell = methodFileMoveLabware.transferDataTable.Rows[recordIndex][methodFileMoveLabware.pickWell].ToString();
                    string sourceColumn = methodFileMoveLabware.transferDataTable.Rows[recordIndex][methodFileMoveLabware.pickColumn].ToString();
                    globalVariableValue = "";
                    globalVariableValue = ControlCom.SearchValueOfGlobalVariable(launchView, sourceWell);
                    if (!string.IsNullOrEmpty(globalVariableValue))
                    {
                        sourceWell = globalVariableValue;
                    }
 
                    globalVariableValue = "";
                    globalVariableValue = ControlCom.SearchValueOfGlobalVariable(launchView, sourceColumn);
                    if (!string.IsNullOrEmpty(globalVariableValue))
                    {
                        sourceColumn = globalVariableValue;
                    }
 
                    // 获取当前台面的夹爪坐标
                    List<GripperCoordinate> gripperCoordinates = new List<GripperCoordinate>();
                    GripperCoordinate gripperCoordinate = new GripperCoordinate();
 
                    Labware labwares = new Labware();
                    Lattice slattice = new Lattice();
                    string srcLatticeId = "0";
                    if (sourceColumn == "请选择" && sourceWell == "请选择")
                    {
                        if (strCurrentCulture.Equals("zh-CN"))
                        {
                            launchView.AddLogs("【" + DateTime.Now.ToString("HH:mm:ss:fff") + "】> Xhandler: 【" + methodFileMoveLabware.name + "】" + Properties.MachineRunResource.strProgress.ToString() + Properties.RunFileMoveLabwareResource.strFileMoveLabwareSettingPickCol.ToString());
                        }
                        else
                        {
                            launchView.AddLogs("【" + DateTime.Now.ToString("HH:mm:ss:fff") + "】> Xhandler: 【" + methodFileMoveLabware.name + "】progress: the column or well on picking lattice is wrong! please check!");
                        }
                        result = false;
                        return result;
                    }
                    else
                    {
                        Labware centrifugalLabware = new Labware();
                        if (sourceLattice.Equals("P0"))
                        {
                            gripperCoordinates = DataRWDAL.GripperCoordinateDB.GetAGripperCoordinateFromdb(Shared.SoftwareInformation.software_information_id, Convert.ToInt32(methodFileMoveLabware.armValue), sourceLattice);
                            gripperCoordinate = gripperCoordinates.SingleOrDefault(x => x.lattice_num.Equals(sourceLattice));
                            string srcLabwareId = DataRWDAL.GripperCoordinateDB.GetAGripperCoordinateLabwareFromdb(gripperCoordinate.gripper_lattice_id).labware_id.ToString();//获取夹爪关联的耗材Id;
                            labwares = LabwareDB.GetLabware(srcLabwareId);
                            slattice.lattice_num = "P0";
                            //关联孔位的耗材对象
                            ObservableCollection<LabwareWellInfo> labwareWellInfoList = DataRWDAL.LabwareDB.GetSpecialLabwareWellInfo(labwares.labware_id);
                            var targetWellOnLattice = labwareWellInfoList.SingleOrDefault(x => x.labware_well_name.Equals(sourceWell));
                            if (targetWellOnLattice != null)
                            {
                                centrifugalLabware = LabwareDB.GetLabware(targetWellOnLattice.well_labware_id);
                            }
                        }
                        else
                        {
                            XmlNode srcXml = srcPlatformNode.SelectSingleNode("labware[@id='" + srcPlatformNode.SelectNodes("labware").Count + "']");
                            string srcLabwareId = srcXml.SelectSingleNode("labware_id").InnerText;
                            srcLatticeId = srcPlatformNode.SelectSingleNode("lattice_id").InnerText;//被截掉"P"的板位编号名
                            if (srcLatticeId == "1")
                            {
                                MethodShake methodShake = new MethodShake();
                                methodShake.modeVal = 1;
                                methodShake.shakeMoveSpeed = 50;
                                methodShake.shakeMoveAngle = 230;
 
                                launchView.SetWaitOne();//暂停
                                if (!shakerExecuteFinish)
                                {
                                    ret = new ShakerBll().ExecuteShake(methodShake, isSimulator);
                                    if (ret.Result != ResultType.Success)
                                    {
                                        if (strCurrentCulture.Equals("zh-CN"))
                                        {
                                            launchView.AddLogs("【" + DateTime.Now.ToString("HH:mm:ss:fff") + "】>Xhandler: 【" + methodFileMoveLabware.name + "】" + Properties.MachineRunResource.strProgress.ToString() + Properties.RunShakeResource.strShakeMoveFailed.ToString() + ret.AlarmInfo);
                                            LoggerRunHelper.InfoLog("【" + DateTime.Now.ToString("HH:mm:ss:fff") + "】>Xhandler: 【" + methodFileMoveLabware.name + "】" + Properties.MachineRunResource.strProgress.ToString() + Properties.RunShakeResource.strShakeMoveFailed.ToString() + ret.AlarmInfo);
                                        }
                                        else
                                        {
                                            launchView.AddLogs("【" + DateTime.Now.ToString("HH:mm:ss:fff") + "】>Xhandler: 【" + methodFileMoveLabware.name + "】progress: shake was failed! Error info:" + ret.AlarmInfo);
                                            LoggerRunHelper.InfoLog("【" + DateTime.Now.ToString("HH:mm:ss:fff") + "】>Xhandler: 【" + methodFileMoveLabware.name + "】progress: shake was failed! Error info:" + ret.AlarmInfo);
                                        }
                                        result = false;
                                        return result;
                                    }
                                    shakerExecuteFinish = true;
                                }
                            }
 
                            Lattice srcLattice = null;
                            TabletopTemplate tabletopTemplate = TabletopTemplateDB.GetCurrentAppTabletopTemplateCollectionFromdb();  //增加台面模板判断
                            int armId = Shared.DeviceArmList.FirstOrDefault(x => x.arm_type.Equals(1)).device_arm_id;
                            if (tabletopTemplate == null)
                            {
                                srcLattice = LatticeDB.GetLatticeDataByIdFromdb("P" + srcLatticeId, Convert.ToInt32(armId), Shared.SoftwareInformation.software_device_number);
                            }
                            else
                            {
                                srcLattice = LatticeDB.GetLatticeDataByLatticeNumAndTempIdFromdb("P" + srcLatticeId, Convert.ToInt32(armId), Shared.SoftwareInformation.software_device_number, tabletopTemplate.tabletopid);
                            }
 
                            labwares = LabwareDB.GetLabware(srcLabwareId);
 
                            // 获取当前台面的板子的坐标
                            slattice = DataRWDAL.LatticeDB.GetLatticeDataByIdFromdb(srcLattice.lattice_id);
                            List<TipsTable> dtWells = ControlCom.GenerateWellCoordinate(labwares, slattice);     //板位孔坐标数据集
                                                                                                                 // 获取当前台面的夹爪坐标
                            gripperCoordinates = DataRWDAL.GripperCoordinateDB.GetAGripperCoordinateFromdb(Shared.SoftwareInformation.software_information_id, Convert.ToInt32(methodFileMoveLabware.armValue), srcLattice.lattice_num);
 
                            gripperCoordinate = gripperCoordinates.SingleOrDefault(x => x.lattice_num.Equals(slattice.lattice_num));
                            //离心管耗材对象
                            if (labwares.labware_tubeshelf_type == 1)
                            {
                                //关联孔位的耗材对象
                                ObservableCollection<LabwareWellInfo> labwareWellInfoList = DataRWDAL.LabwareDB.GetSpecialLabwareWellInfo(labwares.labware_id);
                                var targetWellOnLattice = labwareWellInfoList.SingleOrDefault(x => x.labware_well_name.Equals(sourceWell));
                                if (targetWellOnLattice != null)
                                {
                                    centrifugalLabware = LabwareDB.GetLabware(targetWellOnLattice.well_labware_id);
                                }
                            }
                            else
                            {
                                centrifugalLabware = ControlCom.GetCentrifugalLabwer(labwares.piled_script);
                            }
                        }
 
                        //以孔位为目标抓取
                        if (sourceWell != "请选择")
                        {
                            //转化成夹爪板位
                            List<GripperCoordinateForWell> gripperCoordinateForWells = wellCalcOfGripper.GetReallyWellsLabwareCoordinatesOnLattice(labwares, gripperCoordinate);
                            GripperCoordinateForWell gripperPickCoordinateForWell = null;
                            gripperPickCoordinateForWell = gripperCoordinateForWells.SingleOrDefault(t => t.lattice_num.Equals(slattice.lattice_num)
                                                                && t.gripper_model.Equals(Convert.ToInt32(methodFileMoveLabware.transferDataTable.Rows[recordIndex][methodFileMoveLabware.pickDirect]))
                                                                && t.wellname.Equals(sourceWell));
                            int pickPart = 0;
                            pickPart = Convert.ToInt32(methodFileMoveLabware.transferDataTable.Rows[recordIndex][methodFileMoveLabware.pickPart]);
 
                            GripTransportMParam gripTransportMParam = new GripTransportMParam();
 
 
                            // 判断当前的形式和角度
                            gripTransportMParam.xAxisVal = (float)gripperPickCoordinateForWell.lattice_X + (float)labwares.gripper_x_offset;
                            gripTransportMParam.yAxisVal = (float)gripperPickCoordinateForWell.lattice_Y + (float)labwares.gripper_y_offset;
                            gripTransportMParam.zAxisVal = (float)gripperPickCoordinateForWell.lattice_Z + (float)labwares.gripper_z_offset;
 
                            #region 耗材总高度
                            float labwareMainHeight = 0.0f;
                            
                            float heightOfBottomLabware = 0f;//要抓的那层的底部离板位的平面距离
 
                            //按设定的层次抓耗材
                            if (methodFileMoveLabware.transportMode == (int)GripTransportModeEnum.TransportAll)
                            {
                                if (labwares.labware_tubeshelf_type == 0)
                                {
                                    if (centrifugalLabware.lid_in_radius < 10d)
                                    {
                                        labwareMainHeight = (float)Convert.ToDouble(centrifugalLabware.labware_height);
                                    }
                                    else
                                    {
                                        labwareMainHeight = (float)Convert.ToDouble(centrifugalLabware.labware_height);
                                    }
                                }
                                else
                                {
                                    labwareMainHeight = (float)Convert.ToDouble(centrifugalLabware.labware_height);
                                }
                            }
                            else if (methodFileMoveLabware.transportMode == (int)GripTransportModeEnum.TransportExceptOne)//总高度要增加最底层的高度
                            {
                                var latticeDes = xmlEnv.SelectSingleNode("platform[lattice_id=" + ControlCom.GetLatticeId(Convert.ToInt32(slattice.lattice_num), false) + "]/labware[@id=1]");
                                Labware bottomLabware = new Labware();
                                if (latticeDes != null)
                                {
                                    bottomLabware = LabwareDB.GetLabware(latticeDes.SelectSingleNode("labware_id").InnerText);
                                    heightOfBottomLabware = (float)Convert.ToDouble(bottomLabware.piled_height);
                                }
                                if (labwares.labware_tubeshelf_type == 0)
                                {
                                    if (centrifugalLabware.lid_in_radius < 10d)
                                    {
                                        labwareMainHeight = (float)Convert.ToDouble(centrifugalLabware.labware_height) + heightOfBottomLabware;
                                    }
                                    else
                                    {
                                        labwareMainHeight = (float)Convert.ToDouble(centrifugalLabware.labware_height) + heightOfBottomLabware;
                                    }
                                }
                                else
                                {
                                    labwareMainHeight = (float)Convert.ToDouble(labwares.labware_height) + heightOfBottomLabware;
                                }
 
                            }
                            else if (methodFileMoveLabware.transportMode == (int)GripTransportModeEnum.TransportCount)
                            {
 
                                XmlNodeList labwareNode = xmlEnv.SelectNodes("platform[lattice_id=" + ControlCom.GetLatticeId(Convert.ToInt32(slattice.lattice_num), false) + "]/labware");
                                int countOfLabware = labwareNode.Count;
                                int loopCount = countOfLabware - methodFileMoveLabware.transportCount + 1;
                                for (int i = 1; i <= loopCount; i++)
                                {
                                    Labware bottomLabware = new Labware();
                                    var latticeDes = xmlEnv.SelectSingleNode("platform[lattice_id=" + ControlCom.GetLatticeId(Convert.ToInt32(slattice.lattice_num), false) + "]/labware[@id=" + (i).ToString() + "]");
 
                                    if (latticeDes != null)
                                    {
                                        bottomLabware = LabwareDB.GetLabware(latticeDes.SelectSingleNode("labware_id").InnerText);
                                        heightOfBottomLabware += (float)Convert.ToDouble(bottomLabware.piled_height);
                                    }
                                }
                                if (labwares.labware_tubeshelf_type == 0)
                                {
                                    if (centrifugalLabware.lid_in_radius < 10d)
                                    {
                                        labwareMainHeight = (float)Convert.ToDouble(centrifugalLabware.labware_height) + heightOfBottomLabware;
                                    }
                                    else
                                    {
                                        labwareMainHeight = (float)Convert.ToDouble(centrifugalLabware.labware_height) + heightOfBottomLabware;
                                    }
                                }
                                else
                                {
                                    labwareMainHeight = (float)Convert.ToDouble(labwares.labware_height) + heightOfBottomLabware;
                                }
                            }
                            #endregion
 
                            if (pickPart == 0) //抓底部
                            {
                                gripTransportMParam.zAxisVal = (float)gripperPickCoordinateForWell.lattice_Z - heightOfBottomLabware;
                                gripTransportMParam.zAxisVal = gripTransportMParam.zAxisVal - heightOfBottomLabware - 1f;
                            }
                            else if (pickPart == 1) //抓顶部
                            {
                                if (srcLatticeId == "1")
                                {
                                    if (centrifugalLabware.lid_in_radius < 10d)
                                    {
                                        if (sourceLattice.Equals("P0"))
                                        {
                                            gripTransportMParam.zAxisVal = (float)gripperPickCoordinateForWell.lattice_Z - labwareMainHeight + (float)centrifugalLabware.gripper_z_offset + 8f;
                                        }
                                        else
                                        {
                                            gripTransportMParam.zAxisVal = (float)gripperPickCoordinateForWell.lattice_Z + (float)labwares.gripper_z_offset - labwareMainHeight + (float)centrifugalLabware.gripper_z_offset + 13f;
                                        }
                                    }
                                    else
                                    {
                                        gripTransportMParam.zAxisVal = (float)gripperPickCoordinateForWell.lattice_Z + (float)labwares.gripper_z_offset - labwareMainHeight + (float)centrifugalLabware.gripper_z_offset;
                                    }
                                }
                                else
                                {
                                    if (centrifugalLabware.lid_in_radius < 10d)
                                    {
                                        if (sourceLattice.Equals("P0"))
                                        {
                                            gripTransportMParam.zAxisVal = (float)gripperPickCoordinateForWell.lattice_Z + (float)labwares.gripper_z_offset - labwareMainHeight + (float)centrifugalLabware.gripper_z_offset+12f;
                                        }
                                        else
                                        {
                                            gripTransportMParam.zAxisVal = (float)gripperPickCoordinateForWell.lattice_Z + (float)labwares.gripper_z_offset - labwareMainHeight + (float)centrifugalLabware.gripper_z_offset + 0f;
                                        }
                                    }
                                    else
                                    {
                                        gripTransportMParam.zAxisVal = (float)gripperPickCoordinateForWell.lattice_Z + (float)labwares.gripper_z_offset - labwareMainHeight + (float)centrifugalLabware.gripper_z_offset;
                                    }
                                }
                            }
 
                            gripTransportMParam.angleVal = (float)gripperPickCoordinateForWell.gripper_rotational;
                            gripTransportMParam.basezAxisVal = (float)Convert.ToDouble(ConfigurationManager.AppSettings["zAxisSafeVal"]);
                            gripTransportMParam.squeezeVal = (float)gripperPickCoordinateForWell.squeezeVal;
                            gripTransportMParam.spreadVal = (float)gripperPickCoordinateForWell.spreadVal;
                            gripTransportMParam.gripSpeed = (float)gripperPickCoordinateForWell.gripSpeed;
                            gripTransportMParam.gripModel = Convert.ToInt32(methodFileMoveLabware.transferDataTable.Rows[recordIndex][methodFileMoveLabware.pickDirect]);
                            gripTransportMParam.gripState = 1;                                          // 请求夹爪的状态:1:向内夹紧;2:向外张开
                            gripTransportMParam.gripperpowerVal = (float)gripperPickCoordinateForWell.gripperpowerVal;
                            gripTransportMParam.objectWidth = (float)Convert.ToDouble(gripperPickCoordinateForWell.objectwidth);
 
                            //调用抓取方法
                            launchView.SetWaitOne();//暂停
                            ret = gripTransportBll.ExecuteGripTransportPick(gripTransportMParam, isSimulator);
 
                            string log = string.Empty;
                            if (ret.Result != ResultType.Success)
                            {
                                if (strCurrentCulture.Equals("zh-CN"))
                                {
                                    log = string.Format("【{0}】>Xhandler: 【{1}】{2}{3}{4}.{5}{6} of {7}", DateTime.Now.ToString("HH:mm:ss:fff"),
                                        methodFileMoveLabware.name, Properties.MachineRunResource.strProgress, Properties.GripTransportResource.strPickError, ret.AlarmInfo, Properties.Resources.strBoardPosition, sourceWell, slattice.lattice_num);
                                    launchView.AddLogs(log);
                                }
                                else
                                {
                                    log = string.Format("【{0}】>Xhandler: 【{1}】progress: the action of pick is fail! error information:{2}.lattice:{3}", DateTime.Now.ToString("HH:mm:ss:fff"),
                                        methodFileMoveLabware.name, ret.AlarmInfo, sourceWell, slattice.lattice_num);
                                    launchView.AddLogs(log);
                                }
 
                                OperateDialog plsConfirmOper = null;
                                Application.Current.Dispatcher.Invoke(new Action(() =>
                                {
                                    plsConfirmOper = new OperateDialog(strCurrentCulture.Equals("zh-CN") ? Properties.GripTransportResource.strPickFailWhatToDo : "The action of pick was fail! What do you want to do?");
                                    plsConfirmOper.ShowDialog();
                                }));
 
                                if (plsConfirmOper != null && plsConfirmOper.OperMark == NodeOperationTypeEnum.Retry)           // 重试
                                {
                                    return ExecutePickAgain(methodFileMoveLabware, recordIndex, labwares, sourceWell, heightOfBottomLabware, slattice, gripTransportMParam, isSimulator);
                                }
                                else if (plsConfirmOper != null && plsConfirmOper.OperMark == NodeOperationTypeEnum.Cancel)     // 终止
                                {
                                    result = false;
                                    return result;
                                }
                                else if (plsConfirmOper != null && plsConfirmOper.OperMark == NodeOperationTypeEnum.Continue)   // 跳过
                                {
                                    result = true;
                                    return result;
                                }
                            }
                            else
                            {
                                if (strCurrentCulture.Equals("zh-CN"))
                                {
                                    log = string.Format("【{0}】>Xhandler: 【{1}】{2}{3}{4}{5} of {6}", DateTime.Now.ToString("HH:mm:ss:fff"),
                                        methodFileMoveLabware.name, Properties.MachineRunResource.strProgress, Properties.GripTransportResource.strPickOk, Properties.Resources.strBoardPosition, slattice.lattice_num, sourceWell);
                                    launchView.AddLogs(log);
                                }
                                else
                                {
                                    log = string.Format("【{0}】>Xhandler: 【{1}】progress: the action of pick is success! lattice:{2}", DateTime.Now.ToString("HH:mm:ss:fff"),
                                        methodFileMoveLabware.name, slattice.lattice_num, sourceWell);
                                    launchView.AddLogs(log);
                                }
                            }
                        }
                        else
                        //以板列为目标抓取
                        {
 
                        }
                    }
 
                }
 
                #endregion
 
                #region 放板处理过程
                string targetLattice = methodFileMoveLabware.transferDataTable.Rows[recordIndex][methodFileMoveLabware.placeLattice].ToString();
                globalVariableValue = "";
                globalVariableValue = ControlCom.SearchValueOfGlobalVariable(launchView, targetLattice);
                if (!string.IsNullOrEmpty(globalVariableValue))
                {
                    targetLattice = globalVariableValue;
                }
                XmlNode tarPlatformNode = ComUtility.GetXmlNodeByBoardName(xmlEnv.SelectNodes("platform"), targetLattice);
                if (tarPlatformNode == null&&!targetLattice.Equals("P0"))
                {
                    if (strCurrentCulture.Equals("zh-CN"))
                    {
                        launchView.AddLogs("【" + DateTime.Now.ToString("HH:mm:ss:fff") + "】> Xhandler: 【" + methodFileMoveLabware.name + "】" + Properties.MachineRunResource.strProgress.ToString() + Properties.RunFileMoveLabwareResource.strFileMoveLabwareOfLatticeError.ToString());
                    }
                    else
                    {
                        launchView.AddLogs("【" + DateTime.Now.ToString("HH:mm:ss:fff") + "】> Xhandler: 【" + methodFileMoveLabware.name + "】progress: the lattice of place board is wrong! please check!");
                    }
                    result = false;
                    return result;
                }
                else
                {
                    List<GripperCoordinate> gripperCoordinates = new List<GripperCoordinate>();
                    GripperCoordinate gripperCoordinate = new GripperCoordinate();
                    Labware labwares = new Labware();
                    Lattice slattice = new Lattice();
                    string tarLatticeId = "0";
                    string targetWell = methodFileMoveLabware.transferDataTable.Rows[recordIndex][methodFileMoveLabware.placeWell].ToString();
                    string targetColumn = methodFileMoveLabware.transferDataTable.Rows[recordIndex][methodFileMoveLabware.placeColumn].ToString();
                    globalVariableValue = "";
                    globalVariableValue = ControlCom.SearchValueOfGlobalVariable(launchView, targetWell);
                    if (!string.IsNullOrEmpty(globalVariableValue))
                    {
                        targetWell = globalVariableValue;
                    }
 
                    globalVariableValue = "";
                    globalVariableValue = ControlCom.SearchValueOfGlobalVariable(launchView, targetColumn);
                    if (!string.IsNullOrEmpty(globalVariableValue))
                    {
                        targetColumn = globalVariableValue;
                    }
                    if (targetColumn == "请选择" && targetWell == "请选择")
                    {
                        if (strCurrentCulture.Equals("zh-CN"))
                        {
                            launchView.AddLogs("【" + DateTime.Now.ToString("HH:mm:ss:fff") + "】> Xhandler: 【" + methodFileMoveLabware.name + "】" + Properties.MachineRunResource.strProgress.ToString() + Properties.RunFileMoveLabwareResource.strFileMoveLabwareSettingPlaceCol.ToString());
                        }
                        else
                        {
                            launchView.AddLogs("【" + DateTime.Now.ToString("HH:mm:ss:fff") + "】> Xhandler: 【" + methodFileMoveLabware.name + "】progress: the column or well on placing lattice is wrong! please check!");
                        }
                        result = false;
                        return result;
                    }
                    else
                    {
                        Labware centrifugalTargetLabware = new Labware();
                        if (targetLattice.Equals("P0"))
                        {
                            gripperCoordinates = DataRWDAL.GripperCoordinateDB.GetAGripperCoordinateFromdb(Shared.SoftwareInformation.software_information_id, Convert.ToInt32(methodFileMoveLabware.armValue), targetLattice);
                            gripperCoordinate = gripperCoordinates.SingleOrDefault(x => x.lattice_num.Equals(targetLattice));
                            string tarLabwareId = DataRWDAL.GripperCoordinateDB.GetAGripperCoordinateLabwareFromdb(gripperCoordinate.gripper_lattice_id).labware_id.ToString();//获取夹爪关联的耗材Id;
                            labwares = LabwareDB.GetLabware(tarLabwareId);
                            slattice.lattice_num = "P0";
                            //关联孔位的耗材对象
                            ObservableCollection<LabwareWellInfo>  labwareWellInfoList = DataRWDAL.LabwareDB.GetSpecialLabwareWellInfo(labwares.labware_id);
                            var targetWellOnLattice = labwareWellInfoList.SingleOrDefault(x => x.labware_well_name.Equals(targetWell));
                            if(targetWellOnLattice!=null)
                            {
                                centrifugalTargetLabware = LabwareDB.GetLabware(targetWellOnLattice.well_labware_id);
                            }
                        }
                        else
                        {
                            XmlNode tarXml = tarPlatformNode.SelectSingleNode("labware[@id='" + tarPlatformNode.SelectNodes("labware").Count + "']");
                            string tarLabwareId = tarXml.SelectSingleNode("labware_id").InnerText;
                            tarLatticeId = tarPlatformNode.SelectSingleNode("lattice_id").InnerText;//被截掉"P"的板位编号名
                            if (tarLatticeId == "1")
                            {
                                MethodShake methodShake = new MethodShake();
                                methodShake.modeVal = 1;
                                methodShake.shakeMoveSpeed = 50;
                                methodShake.shakeMoveAngle = 230;
 
                                launchView.SetWaitOne();//暂停
                                if (!shakerExecuteFinish)
                                {
                                    ret = new ShakerBll().ExecuteShake(methodShake, isSimulator);
                                    if (ret.Result != ResultType.Success)
                                    {
                                        if (strCurrentCulture.Equals("zh-CN"))
                                        {
                                            launchView.AddLogs("【" + DateTime.Now.ToString("HH:mm:ss:fff") + "】>Xhandler: 【" + methodFileMoveLabware.name + "】" + Properties.MachineRunResource.strProgress.ToString() + Properties.RunShakeResource.strShakeMoveFailed.ToString() + ret.AlarmInfo);
                                            LoggerRunHelper.InfoLog("【" + DateTime.Now.ToString("HH:mm:ss:fff") + "】>Xhandler: 【" + methodFileMoveLabware.name + "】" + Properties.MachineRunResource.strProgress.ToString() + Properties.RunShakeResource.strShakeMoveFailed.ToString() + ret.AlarmInfo);
                                        }
                                        else
                                        {
                                            launchView.AddLogs("【" + DateTime.Now.ToString("HH:mm:ss:fff") + "】>Xhandler: 【" + methodFileMoveLabware.name + "】progress: shake was failed! Error info:" + ret.AlarmInfo);
                                            LoggerRunHelper.InfoLog("【" + DateTime.Now.ToString("HH:mm:ss:fff") + "】>Xhandler: 【" + methodFileMoveLabware.name + "】progress: shake was failed! Error info:" + ret.AlarmInfo);
                                        }
                                        result = false;
                                        return result;
                                    }
                                    shakerExecuteFinish = true;
                                }
                            }
 
                            Lattice tarLattice = null;
                            TabletopTemplate tabletopTemplate = TabletopTemplateDB.GetCurrentAppTabletopTemplateCollectionFromdb();  //增加台面模板判断
                            int armId = Shared.DeviceArmList.FirstOrDefault(x => x.arm_type.Equals(1)).device_arm_id;
                            if (tabletopTemplate == null)
                            {
                                tarLattice = LatticeDB.GetLatticeDataByIdFromdb("P" + tarLatticeId, Convert.ToInt32(armId), Shared.SoftwareInformation.software_device_number);
                            }
                            else
                            {
                                tarLattice = LatticeDB.GetLatticeDataByLatticeNumAndTempIdFromdb("P" + tarLatticeId, Convert.ToInt32(armId), Shared.SoftwareInformation.software_device_number, tabletopTemplate.tabletopid);
                            }
 
                            labwares = LabwareDB.GetLabware(tarLabwareId);
 
                            // 获取当前台面的板子的坐标
                            slattice = DataRWDAL.LatticeDB.GetLatticeDataByIdFromdb(tarLattice.lattice_id);
                            if (labwares.labware_tubeshelf_type == 1)
                            {
                                //关联孔位的耗材对象
                                ObservableCollection<LabwareWellInfo> labwareWellInfoList = DataRWDAL.LabwareDB.GetSpecialLabwareWellInfo(labwares.labware_id);
                                var targetWellOnLattice = labwareWellInfoList.SingleOrDefault(x => x.labware_well_name.Equals(targetWell));
                                if (targetWellOnLattice != null)
                                {
                                    centrifugalTargetLabware = LabwareDB.GetLabware(targetWellOnLattice.well_labware_id);
                                }
                            }
                            else
                            {
                                //离心管耗材对象
                                centrifugalTargetLabware = ControlCom.GetCentrifugalLabwer(labwares.piled_script);
                            }
                        }
 
                        ////离心管耗材对象
                        //Labware centrifugalTargetLabware = ControlCom.GetCentrifugalLabwer(labwares.piled_script);
                        //求出目标板位上的现有耗材总高度
                        float labwareMainHeight = 0.0f;
                        float heightOfBottomLabware = 0f;//要抓的那层的底部离板位的平面距离
 
                        XmlNodeList labwareNode = xmlEnv.SelectNodes("platform[lattice_id=" + slattice.lattice_num.Substring(1) + "]/labware");
                        int countOfLabware = labwareNode.Count;
                        int loopCount = countOfLabware;
                        for (int i = 1; i <= loopCount; i++)
                        {
                            Labware bottomLabware = new Labware();
                            var latticeDes = xmlEnv.SelectSingleNode("platform[lattice_id=" + slattice.lattice_num.Substring(1) + "]/labware[@id=" + (i).ToString() + "]");
 
                            if (latticeDes != null)
                            {
                                bottomLabware = LabwareDB.GetLabware(latticeDes.SelectSingleNode("labware_id").InnerText);
                                heightOfBottomLabware += (float)Convert.ToDouble(bottomLabware.piled_height);
                            }
                        }
 
                        if (labwares.labware_tubeshelf_type == 0)
                        {
                            if (centrifugalTargetLabware.lid_in_radius < 10d)
                            {
                                labwareMainHeight = (float)Convert.ToDouble(centrifugalTargetLabware.labware_height);
                            }
                            else
                            {
                                labwareMainHeight = (float)Convert.ToDouble(centrifugalTargetLabware.labware_height);
                            }
                        }
                        else
                        {
 
                            labwareMainHeight = (float)Convert.ToDouble(centrifugalTargetLabware.labware_height) + heightOfBottomLabware;
                        }
 
                        // 获取当前台面的夹爪坐标
                        gripperCoordinates = DataRWDAL.GripperCoordinateDB.GetAGripperCoordinateFromdb(Shared.SoftwareInformation.software_information_id, Convert.ToInt32(methodFileMoveLabware.armValue), slattice.lattice_num);
 
                        gripperCoordinate = gripperCoordinates.SingleOrDefault(x => x.lattice_num.Equals(slattice.lattice_num));
 
 
                        //以孔位为目标放置
                        if (targetWell != "请选择")
                        {
                            //转化成夹爪板位
                            List<GripperCoordinateForWell> gripperCoordinateForWells = wellCalcOfGripper.GetReallyWellsLabwareCoordinatesOnLattice(labwares, gripperCoordinate);
                            GripperCoordinateForWell gripperPlaceCoordinateForWell = null;
                            gripperPlaceCoordinateForWell = gripperCoordinateForWells.SingleOrDefault(t => t.lattice_num.Equals(slattice.lattice_num)
                                                                && t.gripper_model.Equals(Convert.ToInt32(methodFileMoveLabware.transferDataTable.Rows[recordIndex][methodFileMoveLabware.placeColumn]))
                                                                && t.wellname.Equals(targetWell));
 
                            GripTransportMParam gripTransportMParam = new GripTransportMParam();
 
 
                            // 判断当前的形式和角度
                            gripTransportMParam.xAxisVal = (float)gripperPlaceCoordinateForWell.lattice_X + (float)labwares.gripper_x_offset;
                            gripTransportMParam.yAxisVal = (float)gripperPlaceCoordinateForWell.lattice_Y + (float)labwares.gripper_y_offset;
                            gripTransportMParam.zAxisVal = (float)gripperPlaceCoordinateForWell.lattice_Z + (float)labwares.gripper_z_offset;
                            if (tarLatticeId == "1")
                            {
                                //if (centrifugalTargetLabware.lid_in_radius < 10d)
                                //{
                                gripTransportMParam.zAxisVal = (float)gripperPlaceCoordinateForWell.lattice_Z - labwareMainHeight;
                                //}
                            }
                            else
                            {
                                if (centrifugalTargetLabware.lid_in_radius < 10d)
                                {
                                    if (targetLattice.Equals("P0"))
                                    {
                                        gripTransportMParam.zAxisVal = (float)gripperPlaceCoordinateForWell.lattice_Z - labwareMainHeight + (float)centrifugalTargetLabware.gripper_z_offset+8f;
                                    }
                                    else
                                    {
                                        gripTransportMParam.zAxisVal = (float)gripperPlaceCoordinateForWell.lattice_Z - labwareMainHeight + (float)centrifugalTargetLabware.gripper_z_offset - 10f;
                                    }
                                }
                                else
                                {
                                    gripTransportMParam.zAxisVal = (float)gripperPlaceCoordinateForWell.lattice_Z - labwareMainHeight + (float)centrifugalTargetLabware.gripper_z_offset-3f;
                                }
                            }
                            gripTransportMParam.angleVal = (float)gripperPlaceCoordinateForWell.gripper_rotational;
                            gripTransportMParam.basezAxisVal = (float)Convert.ToDouble(ConfigurationManager.AppSettings["zAxisSafeVal"]);
                            gripTransportMParam.squeezeVal = (float)gripperPlaceCoordinateForWell.squeezeVal;
                            gripTransportMParam.spreadVal = (float)gripperPlaceCoordinateForWell.spreadVal;
                            gripTransportMParam.gripSpeed = (float)gripperPlaceCoordinateForWell.gripSpeed;
                            gripTransportMParam.gripModel = Convert.ToInt32(methodFileMoveLabware.transferDataTable.Rows[recordIndex][methodFileMoveLabware.pickDirect]);
                            gripTransportMParam.gripState = 2;                                          // 请求夹爪的状态:1:向内夹紧;2:向外张开
                            gripTransportMParam.gripperpowerVal = (float)gripperPlaceCoordinateForWell.gripperpowerVal;
                            gripTransportMParam.objectWidth = (float)Convert.ToDouble(gripperPlaceCoordinateForWell.objectwidth);
 
                            //调用抓取方法
                            launchView.SetWaitOne();//暂停
                            ret = gripTransportBll.ExecuteGripTransportPlace(gripTransportMParam, isSimulator);
 
                            string log = string.Empty;
                            if (ret.Result != ResultType.Success)
                            {
                                if (strCurrentCulture.Equals("zh-CN"))
                                {
                                    log = string.Format("【{0}】>Xhandler: 【{1}】{2}{3}{4}.{5}{6} of {7}", DateTime.Now.ToString("HH:mm:ss:fff"),
                                        methodFileMoveLabware.name, Properties.MachineRunResource.strProgress, Properties.GripTransportResource.strPlacekError, ret.AlarmInfo, Properties.Resources.strBoardPosition, targetWell, slattice.lattice_num);
                                    launchView.AddLogs(log);
                                }
                                else
                                {
                                    log = string.Format("【{0}】>Xhandler: 【{1}】progress: the action of pick is fail! error information:{2}.lattice:{3}", DateTime.Now.ToString("HH:mm:ss:fff"),
                                        methodFileMoveLabware.name, ret.AlarmInfo, targetWell, slattice.lattice_num);
                                    launchView.AddLogs(log);
                                }
 
                                OperateDialog plsConfirmOper = null;
                                Application.Current.Dispatcher.Invoke(new Action(() =>
                                {
                                    plsConfirmOper = new OperateDialog(strCurrentCulture.Equals("zh-CN") ? Properties.GripTransportResource.strPlaceFailWhatToDo : "The action of pick was fail! What do you want to do?");
                                    plsConfirmOper.ShowDialog();
                                }));
 
                                if (plsConfirmOper != null && plsConfirmOper.OperMark == NodeOperationTypeEnum.Retry)           // 重试
                                {
                                    return ExecutePlaceAgain(methodFileMoveLabware, recordIndex, labwares, targetWell, heightOfBottomLabware, slattice, gripTransportMParam, isSimulator);
                                }
                                else if (plsConfirmOper != null && plsConfirmOper.OperMark == NodeOperationTypeEnum.Cancel)     // 终止
                                {
                                    result = false;
                                    return result;
                                }
                                else if (plsConfirmOper != null && plsConfirmOper.OperMark == NodeOperationTypeEnum.Continue)   // 跳过
                                {
                                    result = true;
                                    return result;
                                }
                            }
                            else
                            {
                                if (strCurrentCulture.Equals("zh-CN"))
                                {
                                    log = string.Format("【{0}】>Xhandler: 【{1}】{2}{3}{4}{5} of {6}", DateTime.Now.ToString("HH:mm:ss:fff"),
                                        methodFileMoveLabware.name, Properties.MachineRunResource.strProgress, Properties.GripTransportResource.strPlaceOk, Properties.Resources.strBoardPosition, slattice.lattice_num, targetWell);
                                    launchView.AddLogs(log);
                                }
                                else
                                {
                                    log = string.Format("【{0}】>Xhandler: 【{1}】progress: the action of pick is success! lattice:{2}", DateTime.Now.ToString("HH:mm:ss:fff"),
                                        methodFileMoveLabware.name, slattice.lattice_num, targetWell);
                                    launchView.AddLogs(log);
                                }
                            }
                        }
                        else
                        //以板列为目标抓取
                        {
 
                        }
                    }
                }
                #endregion
 
                recordIndex = recordIndex + 1;
            }
 
            #endregion
 
            return result;
        }
        #endregion
 
        #region 抓板失败后循环函数
        public bool ExecutePickAgain(MethodFileMoveLabware methodFileMoveLabware,int recordIndex, Labware labwares,string sourceWell,float heightOfBottomLabware, Lattice slattice, GripTransportMParam pickMParam, bool isSimulator)
        {
            HxResult ret = null;
            bool result = true;
 
            List<GripperCoordinate> gripperCoordinates = DataRWDAL.GripperCoordinateDB.GetAGripperCoordinateFromdb(Shared.SoftwareInformation.software_information_id, Convert.ToInt32(methodFileMoveLabware.armValue), slattice.lattice_num);
            GripperCoordinate gripperCoordinate = gripperCoordinates.SingleOrDefault(x => x.lattice_num.Equals(slattice.lattice_num));
            //转化成夹爪板位
            List<GripperCoordinateForWell> gripperCoordinateForWells = wellCalcOfGripper.GetReallyWellsLabwareCoordinatesOnLattice(labwares, gripperCoordinate);
 
            GripperCoordinateForWell gripperPickCoordinateForWell = gripperCoordinateForWells.SingleOrDefault(t => t.lattice_num.Equals(slattice.lattice_num)
                                                && t.gripper_model.Equals(Convert.ToInt32(methodFileMoveLabware.transferDataTable.Rows[recordIndex][methodFileMoveLabware.pickDirect]))
                                                && t.wellname.Equals(sourceWell));
 
            GripTransportMParam gripTransportMParam = new GripTransportMParam();
 
            gripTransportMParam.xAxisVal = pickMParam.xAxisVal;
            gripTransportMParam.yAxisVal = pickMParam.yAxisVal;
 
            gripTransportMParam.zAxisVal = (float)gripperPickCoordinateForWell.lattice_Z - heightOfBottomLabware;
            gripTransportMParam.zAxisVal = gripTransportMParam.zAxisVal - heightOfBottomLabware - 1f;
 
            gripTransportMParam.angleVal = pickMParam.angleVal;
            gripTransportMParam.basezAxisVal = pickMParam.basezAxisVal;
            gripTransportMParam.squeezeVal = (float)gripperPickCoordinateForWell.squeezeVal;
            gripTransportMParam.spreadVal = (float)gripperPickCoordinateForWell.spreadVal;
            gripTransportMParam.gripSpeed = (float)gripperPickCoordinateForWell.gripSpeed;
            gripTransportMParam.gripModel = pickMParam.gripModel;
            gripTransportMParam.gripState = 1;                                          // 请求夹爪的状态:1:向内夹紧;2:向外张开
            gripTransportMParam.gripperpowerVal = (float)gripperPickCoordinateForWell.gripperpowerVal;
            gripTransportMParam.objectWidth = (float)Convert.ToDouble(gripperPickCoordinateForWell.objectwidth);
 
            //调用抓取方法
            launchView.SetWaitOne();//暂停
            ret = gripTransportBll.ExecuteGripTransportPick(gripTransportMParam, isSimulator);
 
            string log = string.Empty;
            if (ret.Result != ResultType.Success)
            {
                if (strCurrentCulture.Equals("zh-CN"))
                {
                    log = string.Format("【{0}】>Xhandler: 【{1}】{2}{3}{4}.{5}{6} of {7}", DateTime.Now.ToString("HH:mm:ss:fff"),
                        methodFileMoveLabware.name, Properties.MachineRunResource.strProgress, Properties.GripTransportResource.strPickError, ret.AlarmInfo, Properties.Resources.strBoardPosition, sourceWell, slattice.lattice_num);
                    launchView.AddLogs(log);
                }
                else
                {
                    log = string.Format("【{0}】>Xhandler: 【{1}】progress: the action of pick is fail! error information:{2}.lattice:{3} well:{4}", DateTime.Now.ToString("HH:mm:ss:fff"),
                        methodFileMoveLabware.name, ret.AlarmInfo, sourceWell, slattice.lattice_num,sourceWell);
                    launchView.AddLogs(log);
                }
 
                OperateDialog plsConfirmOper = null;
                Application.Current.Dispatcher.Invoke(new Action(() =>
                {
                    plsConfirmOper = new OperateDialog(strCurrentCulture.Equals("zh-CN") ? Properties.GripTransportResource.strPickFailWhatToDo : "The action of pick was fail! What do you want to do?");
                    plsConfirmOper.ShowDialog();
                }));
 
                if (plsConfirmOper != null && plsConfirmOper.OperMark == NodeOperationTypeEnum.Retry)           // 重试
                {
                    return ExecutePickAgain(methodFileMoveLabware, recordIndex, labwares, sourceWell, heightOfBottomLabware, slattice, pickMParam, isSimulator);
                }
                else if (plsConfirmOper != null && plsConfirmOper.OperMark == NodeOperationTypeEnum.Cancel)     // 终止
                {
                    result = false;
                    return result;
                }
                else if (plsConfirmOper != null && plsConfirmOper.OperMark == NodeOperationTypeEnum.Continue)   // 跳过
                {
                    result = true;
                    return result;
                }
            }
            else
            {
                if (strCurrentCulture.Equals("zh-CN"))
                {
                    log = string.Format("【{0}】>Xhandler: 【{1}】{2}{3}{4}{5} of {6}", DateTime.Now.ToString("HH:mm:ss:fff"),
                        methodFileMoveLabware.name, Properties.MachineRunResource.strProgress, Properties.GripTransportResource.strPickOk, Properties.Resources.strBoardPosition,slattice.lattice_num,sourceWell);
                    launchView.AddLogs(log);
                }
                else
                {
                    log = string.Format("【{0}】>Xhandler: 【{1}】progress: the action of pick is success! lattice:{2} well:{3}", DateTime.Now.ToString("HH:mm:ss:fff"),
                        methodFileMoveLabware.name, slattice.lattice_num, sourceWell);
                    launchView.AddLogs(log);
                }
            }
            return result;
        }
        #endregion
 
        #region 放板失败后循环函数
        public bool ExecutePlaceAgain(MethodFileMoveLabware methodFileMoveLabware, int recordIndex, Labware labwares, string targetWell, float heightOfBottomLabware, Lattice slattice, GripTransportMParam pickMParam, bool isSimulator)
        {
            HxResult ret = null;
            bool result = true;
 
            List<GripperCoordinate> gripperCoordinates = DataRWDAL.GripperCoordinateDB.GetAGripperCoordinateFromdb(Shared.SoftwareInformation.software_information_id, Convert.ToInt32(methodFileMoveLabware.armValue), slattice.lattice_num);
            GripperCoordinate gripperCoordinate = gripperCoordinates.SingleOrDefault(x => x.lattice_num.Equals(slattice.lattice_num));
            //转化成夹爪板位
            List<GripperCoordinateForWell> gripperCoordinateForWells = wellCalcOfGripper.GetReallyWellsLabwareCoordinatesOnLattice(labwares, gripperCoordinate);
 
            GripperCoordinateForWell gripperPickCoordinateForWell = gripperCoordinateForWells.SingleOrDefault(t => t.lattice_num.Equals(slattice.lattice_num)
                                                && t.gripper_model.Equals(Convert.ToInt32(methodFileMoveLabware.transferDataTable.Rows[recordIndex][methodFileMoveLabware.pickDirect]))
                                                && t.wellname.Equals(targetWell));
 
            GripTransportMParam gripTransportMParam = new GripTransportMParam();
 
            gripTransportMParam.xAxisVal = pickMParam.xAxisVal;
            gripTransportMParam.yAxisVal = pickMParam.yAxisVal;
 
            gripTransportMParam.zAxisVal = (float)gripperPickCoordinateForWell.lattice_Z - heightOfBottomLabware;
            gripTransportMParam.zAxisVal = gripTransportMParam.zAxisVal - heightOfBottomLabware - 1f;
 
            gripTransportMParam.angleVal = pickMParam.angleVal;
            gripTransportMParam.basezAxisVal = pickMParam.basezAxisVal;
            gripTransportMParam.squeezeVal = (float)gripperPickCoordinateForWell.squeezeVal;
            gripTransportMParam.spreadVal = (float)gripperPickCoordinateForWell.spreadVal;
            gripTransportMParam.gripSpeed = (float)gripperPickCoordinateForWell.gripSpeed;
            gripTransportMParam.gripModel = pickMParam.gripModel;
            gripTransportMParam.gripState = 1;                                          // 请求夹爪的状态:1:向内夹紧;2:向外张开
            gripTransportMParam.gripperpowerVal = (float)gripperPickCoordinateForWell.gripperpowerVal;
            gripTransportMParam.objectWidth = (float)Convert.ToDouble(gripperPickCoordinateForWell.objectwidth);
 
            //调用抓取方法
            launchView.SetWaitOne();//暂停
            ret = gripTransportBll.ExecuteGripTransportPick(gripTransportMParam, isSimulator);
 
            string log = string.Empty;
            if (ret.Result != ResultType.Success)
            {
                if (strCurrentCulture.Equals("zh-CN"))
                {
                    log = string.Format("【{0}】>Xhandler: 【{1}】{2}{3}{4}.{5}{6} of {7}", DateTime.Now.ToString("HH:mm:ss:fff"),
                        methodFileMoveLabware.name, Properties.MachineRunResource.strProgress, Properties.GripTransportResource.strPlacekError, ret.AlarmInfo, Properties.Resources.strBoardPosition, targetWell, slattice.lattice_num);
                    launchView.AddLogs(log);
                }
                else
                {
                    log = string.Format("【{0}】>Xhandler: 【{1}】progress: the action of pick is fail! error information:{2}.lattice:{3} well:{4}", DateTime.Now.ToString("HH:mm:ss:fff"),
                        methodFileMoveLabware.name, ret.AlarmInfo, targetWell, slattice.lattice_num, targetWell);
                    launchView.AddLogs(log);
                }
 
                OperateDialog plsConfirmOper = null;
                Application.Current.Dispatcher.Invoke(new Action(() =>
                {
                    plsConfirmOper = new OperateDialog(strCurrentCulture.Equals("zh-CN") ? Properties.GripTransportResource.strPlaceFailWhatToDo : "The action of pick was fail! What do you want to do?");
                    plsConfirmOper.ShowDialog();
                }));
 
                if (plsConfirmOper != null && plsConfirmOper.OperMark == NodeOperationTypeEnum.Retry)           // 重试
                {
                    return ExecutePlaceAgain(methodFileMoveLabware, recordIndex, labwares, targetWell, heightOfBottomLabware, slattice, pickMParam, isSimulator);
                }
                else if (plsConfirmOper != null && plsConfirmOper.OperMark == NodeOperationTypeEnum.Cancel)     // 终止
                {
                    result = false;
                    return result;
                }
                else if (plsConfirmOper != null && plsConfirmOper.OperMark == NodeOperationTypeEnum.Continue)   // 跳过
                {
                    result = true;
                    return result;
                }
            }
            else
            {
                if (strCurrentCulture.Equals("zh-CN"))
                {
                    log = string.Format("【{0}】>Xhandler: 【{1}】{2}{3}{4}{5} of {6}", DateTime.Now.ToString("HH:mm:ss:fff"),
                        methodFileMoveLabware.name, Properties.MachineRunResource.strProgress, Properties.GripTransportResource.strPlaceOk, Properties.Resources.strBoardPosition, slattice.lattice_num, targetWell);
                    launchView.AddLogs(log);
                }
                else
                {
                    log = string.Format("【{0}】>Xhandler: 【{1}】progress: the action of pick is success! lattice:{2} well:{3}", DateTime.Now.ToString("HH:mm:ss:fff"),
                        methodFileMoveLabware.name, slattice.lattice_num, targetWell);
                    launchView.AddLogs(log);
                }
            }
            return result;
        }
        #endregion
    }
}