wtt
1 天以前 6daa91098fe4a1a9109f460ace857b9c341de4a9
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
using System;
using System.Collections.Generic;
using System.Text;
using System.Data;
 
namespace DAL
{
    public  class ClsSc_StationEntrustInBill:DBUtility.ClsXt_BaseBill
    {
        public Model.ClsSc_StationEntrustInBillMain omodel = new Model.ClsSc_StationEntrustInBillMain();
        public List<Model.ClsSc_StationEntrustInBillSub> DetailColl = new List<Model.ClsSc_StationEntrustInBillSub>();
        //public List<Model.ClsSc_StationEntrustInBillSub_Item> DetailColl1 = new List<Model.ClsSc_StationEntrustInBillSub_Item>();
        public ClsSc_StationEntrustInBill()
        {
            base.MvarItemKeySub = "Sc_StationInBillSub";
            base.MvarItemKeySub2 = "";
            base.MvarItemKeySub3 = "";
            base.MvarItemKeySub4 = "";
            base.MvarItemKey = "Sc_StationInBillMain";
            base.MvarReportTitle="委外工序发出表";
            base.BillType="3792";
            base.HBillSubType = "3792";
 
        }
 
        #region 固定代码
 
        ~ClsSc_StationEntrustInBill()
        {
            DetailColl = null;
        }
       
        #endregion   自定义方法
 
        //删除对应领聊单
        public bool DelBillMaterialOut(Int64 HInterID, string HBillNo)
        {
            //try
            //{
            //    oWeb.WebService1 oweb = new DAL.oWeb.WebService1();
            //    //
            //    oweb.Url = Pub_Class.ClsPub.HWEBSUrl_CLD;
            //    //
            //    if (oweb.DelBillMaterialOut(HBillNo, Pub_Class.ClsPub.HUrl_CLD, Pub_Class.ClsPub.HdbID_CLD, Pub_Class.ClsPub.HUserName_CLD, Pub_Class.ClsPub.HPsd_CLD, ref Pub_Class.ClsPub.sExeReturnInfo))
            //    {
            //        return true;
            //    }
            //    else
            //    {
            return false;
            //    }
            //}
            //catch (Exception e)
            //{
            //    Pub_Class.ClsPub.sExeReturnInfo = ",调用WEBS失败! " + e.Message;
            //    return false;
            //}
        }
 
        //修改单据
        public override bool ModifyBill(Int64 lngBillKey, ref string sReturn)
        {
            try
            {
                //
                oCn.BeginTran();
 
                //删除关联
                oCn.RunProc("exec h_p_Mes_ProcessExchangeRelationQty_In " + lngBillKey.ToString() + ",-1");
                oCn.RunProc("exec h_p_WW_EntrustWorkOrderRelationQty_In " + lngBillKey.ToString() + ",-1");
 
                //更新主表
                oCn.RunProc("UpDate Sc_StationInBillMain set  " +
                "HBillNo='" + omodel.HBillNo + "'" +  //固定赋值===============
                    //",HDate='" + omodel.HDate + "'" +
                    //",HYear='" + omodel.HYear.ToString() + "'" +
                    //",HPeriod='" + omodel.HPeriod.ToString() + "'" +
                    //",HBillStatus='" + omodel.HBillStatus + "'" +
                ",HRemark='" + omodel.HRemark + "'" +
                    //",HBacker='"+omodel.HBacker+"'"+
                    //",HBackDate='" + omodel.HBackDate + "'" +
                    //",HBackRemark='"+omodel.HBackRemark+"'"+
                    //",HChecker='" + omodel.HChecker + "'" +
                    //",HCheckDate='" + omodel.HCheckDate + "'" +
                    //",HMaker='" + omodel.HMaker + "'" +
                    //",HMakeDate='" + omodel.HMakeDate + "'" +
                ",HUpDater='" + DBUtility.ClsPub.CurUserName + "'" +
                ",HUpDateDate=getdate()" +
                    //",HCloseMan='" + omodel.HCloseMan + "'" +
                    //",HCloseDate='" + omodel.HCloseDate + "'" +
                    //",HCloseType="+omodel.HCloseType.ToString()+
                    //",HDeleteMan='" + omodel.HDeleteMan + "'" +
                    //",HDeleteDate='" + omodel.HDeleteDate + "'" +
                    //",HPrintQty="+omodel.HPrintQty.ToString()+
                ",HInnerBillNo='" + omodel.HInnerBillNo + "'" +
                    //========================================
                ",HSupID=" + omodel.HSupID.ToString() +
                ",HQty=" + omodel.HQty.ToString() +
                ",HPieceQty=" + omodel.HPieceQty.ToString() +
                ",HPrice=" + omodel.HPrice.ToString() +
                ",HMoney=" + omodel.HMoney.ToString() +
                ",HTaxRate=" + omodel.HTaxRate.ToString() +
                    //",HEmpID=" + omodel.HEmpID.ToString() +
                    //",HICMOInterID=" + omodel.HICMOInterID.ToString() +
                    //",HICMOBillNo='" + omodel.HICMOBillNo + "'" +
                    //",HProcPlanInterID=" + omodel.HProcPlanInterID.ToString() +
                    //",HProcPlanEntryID=" + omodel.HProcPlanEntryID.ToString() +
                    //",HProcPlanBillNo='" + omodel.HProcPlanBillNo + "'" +
                    //",HProcExchInterID=" + omodel.HProcExchInterID.ToString() +
                    //",HProcExchEntryID=" + omodel.HProcExchEntryID.ToString() +
                    //",HProcExchBillNo='" + omodel.HProcExchBillNo + "'" +
                ",HMaterID=" + omodel.HMaterID.ToString() +
                ",HProcID=" + omodel.HProcID.ToString() +
                ",HProcNo=" + omodel.HProcNo.ToString() +
                ",HOrderProcNO='" + omodel.HOrderProcNO.ToString() + "'" +
                //",HWWWorkOrderBillNo='" + omodel.HWWWorkOrderBillNo.ToString() + "'" +
                //",HWWWorkOrderInterID=" + omodel.HWWWorkOrderInterID.ToString() + "" +
                //",HWWWorkOrderEntryID=" + omodel.HWWWorkOrderEntryID.ToString() + "" +
                    //",HICMOQty=" + omodel.HICMOQty.ToString() +
                    //",HPlanQty=" + omodel.HPlanQty.ToString() +
                    //",HStationInTime='" + omodel.HStationInTime.ToShortDateString() + "'" +
                    //",HSourceID=" + omodel.HSourceID.ToString() +
                    //",HGroupID=" + omodel.HGroupID.ToString() +
                    //",HDeptID=" + omodel.HDeptID.ToString() +
                    //",HEmpID=" + omodel.HEmpID.ToString() +
                    //",HReportType='" + omodel.HReportType + "'" +
                    //",HBarCode='" + omodel.HBarCode + "'" +
                    //",HAddr='" + omodel.HAddr + "'" +
                    //",HBarCodeMaker='" + omodel.HBarCodeMaker + "'" +
                    //",HBarCodeMakeDate='" + omodel.HBarCodeMakeDate.ToShortDateString() + "'" +
                " where HInterID=" + lngBillKey.ToString());
 
 
 
                //oCn.RunProc("UpDate Sc_StationOutBillMain set  " +
                //              "HRemark='" + omodel.HRemark + "'" +
                //              ",HUpDater='" + DBUtility.ClsPub.CurUserName + "'" +
                //              ",HUpDateDate=getdate()" +
                //              ",HInnerBillNo='" + omodel.HInnerBillNo + "'" +
                //              ",HSupID=" + omodel.HSupID.ToString() +
                //              ",HTaxRate=" + omodel.HTaxRate.ToString() +
                //              ",HPrice=" + omodel.HPrice.ToString() + 
                //              " where HMainSourceInterID=" + lngBillKey.ToString());
 
                //oCn.RunProc("UpDate Sc_StationOutBillMain set HMoney=convert(dec(18,4),HPieceQty*HPrice)"+
                //                                            ",HPrice_BHS=convert(dec(18,6),HPrice/(HTaxRate/100+1))" +
                //                                            ",HMoney_BHS=convert(dec(18,4),convert(dec(18,4),HPieceQty*HPrice)/(HTaxRate/100+1))" +
                //                                            "where HMainSourceInterID=" + lngBillKey.ToString());
                //删除关联
                //DeleteRelation(ref sReturn, lngBillKey);
                //删除子表
                //DeleteBillSub(lngBillKey);
                //插入子表
                omodel.HInterID = lngBillKey;
                foreach (Model.ClsSc_StationEntrustInBillSub oSub in DetailColl)
                {
                    //oCn.RunProc("Insert into Sc_StationInBillSub  " +
                    //  " (HInterID,HBillNo_bak,HEntryID,HCloseMan" +
                    //  ",HEntryCloseDate,HCloseType,HRemark,HSourceInterID" +
                    //  ",HSourceEntryID,HSourceBillNo,HSourceBillType,HRelationQty,HRelationMoney" +
                    //  ",HDotCheckItemID,HDotCheckItem,HDotCheckPart,HClaim,HManagerID" +
 
                    //  ") values("
                    //  + omodel.HInterID.ToString() + ",'" + oSub.HBillNo_bak + "'," + oSub.HEntryID.ToString() + ",'" + oSub.HCloseMan + "'" +
                    //  ",getdate()," + Convert.ToString(oSub.HCloseType ? 1 : 0) + ",'" + oSub.HRemark + "'," + oSub.HSourceInterID.ToString() +
                    //  "," + oSub.HSourceEntryID.ToString() + ",'" + oSub.HSourceBillNo + "','" + oSub.HSourceBillType + "'," + oSub.HRelationQty.ToString() + "," + oSub.HRelationMoney.ToString() +
                    //  "," + oSub.HDotCheckItemID.ToString() + ",'" + oSub.HDotCheckItem + "','" + oSub.HDotCheckPart + "','" + oSub.HClaim + "'," + oSub.HManagerID.ToString() +
                    //  ") ");
                }
                //foreach (Model.ClsSc_StationEntrustInBillSub_Item oSub2 in DetailColl1)
                //{
                //    oCn.RunProc("Insert into Sc_StationInBillSub_Item " +
                //      " (HInterID,HBillNo_bak,HEntryID,HCloseMan" +
                //      ",HEntryCloseDate,HCloseType,HRemark,HSourceInterID" +
                //      ",HSourceEntryID,HSourceBillNo,HSourceBillType,HRelationQty,HRelationMoney" +
                //      ",HMaintainItemID,HMaintainItem,HMaintainPart,HClaim,HManagerID" +
 
                //      ") values("
                //      + omodel.HInterID.ToString() + ",'" + oSub2.HBillNo_bak + "'," + oSub2.HEntryID.ToString() + ",'" + oSub2.HCloseMan + "'" +
                //      ",getdate()," + Convert.ToString(oSub2.HCloseType ? 1 : 0) + ",'" + oSub2.HRemark + "'," + oSub2.HSourceInterID.ToString() +
                //      "," + oSub2.HSourceEntryID.ToString() + ",'" + oSub2.HSourceBillNo + "','" + oSub2.HSourceBillType + "'," + oSub2.HRelationQty.ToString() + "," + oSub2.HRelationMoney.ToString() +
                //      "," + oSub2.HMaintainItemID.ToString() + ",'" + oSub2.HMaintainItem + "','" + oSub2.HMaintainPart + "','" + oSub2.HClaim + "'," + oSub2.HManagerID.ToString() +
                //      ") ");
                //}
                //
                //foreach (Model.ClsSc_StationEntrustInBillSub oSub in DetailColl)
                //{
                //    Ds = oCn.RunProcReturn("exec h_p_Sc_StationEntrustInBill_Qty " + oSub.HICMOInterID, "");
                //    if (Ds.Tables[0].Rows.Count == 0)
                //        return;
                //    if (DBUtility.ClsPub.isStrNull(Ds.Tables[0].Rows[0]["HBool"]) == "Y")
                //    {
                //        sReturn = "汇报数量超过计划数量!不允许保存";
                //        return false;
                //    }
                //}
 
                //根据进站单内码 控制进站数量(进站按计划数量控制(暂时不要))(进站数量 按上道工序 合计出站数量控制、且不能小于 本道工序 合计出站数量))
                DataSet Ds;
                Ds = oCn.RunProcReturn("exec h_p_MES_StationInBill_QtyCtrl " + omodel.HInterID.ToString() + "", "h_p_MES_StationInBill_QtyCtrl");
                if (Ds == null)
                {
                    sReturn = "判断数量失败!";
                    oCn.RollBack();
                    return false;
                }
                if (Ds.Tables[0].Rows.Count == 0)
                {
                    sReturn = "判断数量失败!";
                    oCn.RollBack();
                    return false;
                }
                if (DBUtility.ClsPub.isStrNull(Ds.Tables[0].Rows[0]["HBack"]) == "2")
                {
                    sReturn = DBUtility.ClsPub.isStrNull(Ds.Tables[0].Rows[0]["HBackRemark"]);
                    oCn.RollBack();
                    return false;
                }
 
                //////
                oCn.RunProc("exec h_p_Mes_ProcessExchangeRelationQty_In " + omodel.HInterID.ToString() + ",1");
                oCn.RunProc("exec h_p_WW_EntrustWorkOrderRelationQty_In " + omodel.HInterID.ToString() + ",1");
                //
 
                ////判断是否是 首道工序
                //DataSet ds1;
                //ds1 = oCn.RunProcReturn(" select HLastProc,HFstProc from Sc_ProcessExchangeBillMain a  " +
                //                    " inner join Sc_ProcessExchangeBillSub b on a.HInterID=b.HInterID  " +
                //                    " Where a.HInterID=" + omodel.HProcExchInterID.ToString() + " and b.HEntryID=" + omodel.HProcExchEntryID.ToString() + " ", "Sc_ProcessExchangeBillMain");
                //if (ds1 == null || ds1.Tables[0].Rows.Count == 0)
                //{
                //    //
                //}
                //else if (Pub_Class.ClsPub.isStrNull(ds1.Tables[0].Rows[0]["HFstProc"]) == "是")
                //{
                //    //拼接JSON  写入CLOUD 
                //    DataSet ds2;
                //    ds2 = oCn.RunProcReturn("exec h_p_Sc_GetPPBOMByStationOutBill_New  '" + omodel.HBillNo + "'," + " " + omodel.HProcExchInterID.ToString() + "," + omodel.HQty.ToString(), "h_p_Sc_GetPPBOMByStationOutBill_New");
                //    if (ds2 == null || ds2.Tables[0].Rows.Count == 0)
                //    {
                //        ////更新 jin站单 标记为 2.
                //        //oCn.RunProc("update Sc_StationInBillMain set HSaveBillFlag=2 where HinteriD =" + HInterID);
                //        //return;
                //    }
                //    else
                //    {
                //        string sJson_Main = "{\"Creator\":\"\",\"NeedUpDateFields\":[],\"Model\": { \"FID\":\"0\", \"FBILLNO\":\"" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[0]["HBillNO"]) + "\", \"FStockOrgId\":{\"FNumber\":\"201\"},  " +
                //        "\"FPRDORGID\":{\"FNumber\":\"201\"},  \"FBillType\": {\"FNumber\":\"SCLLD01_SYS\"  " +
                //        " },  \"FEntity\": [  ";
 
                //        string sJson_Entry = "";
                //        string sJson_BatchNo = "  ";
                //        //
                //        for (int i = 0; i < ds2.Tables[0].Rows.Count; i++)
                //        {
                //            if (sJson_Entry != "")
                //            {
                //                sJson_Entry = sJson_Entry + " , ";
                //            }
                //            if (Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["HBatchNo"]) == "1")
                //            {
                //                sJson_BatchNo = "  \"FLOT\": {\"FNumber\":\"1\"},    \"FLOT_TEXT\":\"1\"  , ";
                //            }
                //            else
                //            {
                //                sJson_BatchNo = " ";
                //            }
 
                //            sJson_Entry = sJson_Entry + " {    \"FSEQ\":\"" + Convert.ToString(i + 1) + "\",  " +
                //            "  \"FPARENTMATERIALID\" : { \"FNumber\":\"" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["HPRODNUMBER"]) + "\" } , " +
                //            "  \"FUNITID\":    {\"FNumber\":\"009\"},  \"FBASEUNITID\" :  {\"FNumber\":\"Pcs\"} , " +
                //           sJson_BatchNo +
                //            "  \"FBASESTOCKACTUALQTY\": 1 ,\"FSTOCKUNITID\" : {\"FNumber\":\"009\"}  ,  " +
                //            "  \"FMOBILLNO\" :  \"" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["HICMOBILLNO"]) + "\" , " +
                //            "  \"FMOID\" : " + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["HICMOINTERID"]) + " , " +
                //            " \"FMOENTRYID\" : " + Pub_Class.ClsPub.isLong(ds2.Tables[0].Rows[i]["HICMOENTRYID"]) + " , " +
                //            " \"FMOENTRYSEQ\" :" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["HICMOSUBID"]) + " , " +
                //            "    \"F_PAEZ_TEXT\":\"" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["HORDERPROCNO"]) + "\", " +
                //            "  \"FPPBOMBILLNO\" :  \"" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["HPPBOMBILLNO"]) + "\" , " +
                //            "  \"FPPBOMENTRYID\" : " + Pub_Class.ClsPub.isLong(ds2.Tables[0].Rows[i]["HPPBOMENTRYID"]) + " ,  " +
                //            " \"FMATERIALID\":{\"FNumber\":\"" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["HMATERNUMBER"]) + "\"} ,  " +
                //            "   \"FWORKSHOPID\":    {\"FNumber\":\"02.01\"},   " +
                //            "  \"FSTOCKID\":    {\"FNumber\":\"006\"},    \"FAPPQTY\":" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["HQTY"]) + ", " +
                //            "  \"FACTUALQTY\":" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["HQTY"]) + ", " +
                //            " \"FSRCBILLTYPE\" : \"PRD_PPBOM\" ,  \"FSRCBILLNO\" :  \"" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["HPPBOMBILLNO"]) + "\" , " +
                //            " \"FSRCINTERID\" : " + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["HPPBOMINTERID"]) + " ,  " +
                //            " \"FSRCENTRYID\" : " + Pub_Class.ClsPub.isLong(ds2.Tables[0].Rows[i]["HPPBOMENTRYID"]) + " ,  " +
                //            " \"FSRCENTRYSEQ\" : " + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["HPPBOMSUBID"]) + " , " +
                //            "  \"FOPERID\":" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["HOPERID"]) + ", " +
                //            "  \"FREQSRC\":" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["FREQSRC"]) + ", " +
                //            "  \"FREQBILLID\":" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["FREQBILLID"]) + ", " +
                //            "  \"FREQBILLNO\":\"" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["FREQBILLNO"]) + "\", " +
                //            "  \"FREQENTRYID\":" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["FREQENTRYID"]) + ", " +
                //            "  \"FREQENTRYSEQ\":" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["FREQENTRYSEQ"]) + ", " +
                //            "  \"FPARENTOWNERTYPEID\":\"BD_OwnerOrg\" , " +
                //            "  \"FPARENTOWNERID\":{\"FNumber\":\"201\"} , " +
                //            "  \"FOWNERID\":{\"FNumber\":\"201\"} , " +
                //             "  \"FEntity_Link\": [ {  " +
                //            "  \"FEntity_Link_FFlowId\":\"81119477-4778-4d0b-94b9-1c43a1c1f768\" ,  " +
                //            "  \"FEntity_Link_FFlowLineId\":5  ,  " +
                //            "  \"FEntity_Link_FRuleId\":\"PRD_PPBOM2PICKMTRL_NORMAL\" ,  " +
                //            "  \"FEntity_Link_FSTableName\":\"T_PRD_PPBOMENTRY\" ,  " +
                //            "  \"FEntity_Link_FSBillId\":" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["HPPBOMINTERID"]) + " ,  " +
                //            "  \"FEntity_Link_FSId\":" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["HPPBOMENTRYID"]) + "   " +
                //             " } ]   }  ";
 
                //        }
                //        //
                //        string sJson_End = "  ]  }}";
                //        string sJson = sJson_Main + sJson_Entry + sJson_End;
 
 
 
                //        oWeb.WebService1 oweb = new DAL.oWeb.WebService1();
                //        if (oweb.BillToMaterialOut(omodel.HBillNo, sJson, Pub_Class.ClsPub.HUrl_CLD, Pub_Class.ClsPub.HdbID_CLD, Pub_Class.ClsPub.HUserName_CLD, Pub_Class.ClsPub.HPsd_CLD, ref Pub_Class.ClsPub.sExeReturnInfo))
                //        {
                //            sReturn = "生成领料成功!" + Pub_Class.ClsPub.sExeReturnInfo;
                //            //return true;
                //        }
                //        else
                //        {
                //            sReturn = "生成领料失败!" + Pub_Class.ClsPub.sExeReturnInfo;
                //            oCn.RollBack();
                //            return false;
                //        }
 
                //    }
                //    //
                //}
 
 
                sReturn = sReturn +  "修改单据成功!";
                oCn.Commit();
                return true;
            }
            catch (Exception e)
            {
                sReturn = e.Message;
                oCn.RollBack();
                throw (e);
            }
        }
        //新增单据
        public override bool AddBill(ref string sReturn)
        {
            try
            {
                //得到mainid
                omodel.HInterID = DBUtility.ClsPub.CreateBillID("3792", ref DBUtility.ClsPub.sExeReturnInfo);
                //若MAINDI重复则重新获取
                oCn.BeginTran();
                //主表
                oCn.RunProc("Insert Into Sc_StationInBillMain " +
                "(HBillType,HBillSubType,HInterID,HBillNo,HBillStatus,HDate,HMaker,HMakeDate" +
                ",HYear,HPeriod,HRemark,HInnerBillNo" +
                ",HICMOInterID,HICMOBillNo,HProcPlanInterID,HProcPlanEntryID,HProcPlanBillNo,HProcExchInterID,HProcExchEntryID" +
                ",HProcExchBillNo,HMaterID,HProcID,HICMOQty,HPlanQty,HStationInTime,HSourceID" +
                ",HGroupID,HDeptID,HEmpID,HBarCode,HAddr,HBarCodeMaker,HBarCodeMakeDate" +
                ",HSupID,HTaxRate,HQty,HPrice,HMoney,HPieceQty" +
                ",HProcNo,HOrderProcNO,HWWWorkOrderBillNo,HWWWorkOrderInterID,HWWWorkOrderEntryID" +
                ") " +
                " values('" + this.BillType + "','" + this.HBillSubType + "'," + omodel.HInterID.ToString() + ",'" + omodel.HBillNo + "'," + omodel.HBillStatus.ToString() + ",getdate(),'" + DBUtility.ClsPub.CurUserName + "',getdate()" +
                "," + omodel.HYear.ToString() + "," + omodel.HPeriod.ToString() + ",'" + omodel.HRemark + "','" + omodel.HInnerBillNo + "'" +
                "," + omodel.HICMOInterID.ToString() + ",'" + omodel.HICMOBillNo + "'," + omodel.HProcPlanInterID.ToString() + "," + omodel.HProcPlanEntryID.ToString() + ",'" + omodel.HProcPlanBillNo + "'," + omodel.HProcExchInterID.ToString() + "," + omodel.HProcExchEntryID.ToString() +
                ",'" + omodel.HProcExchBillNo + "'," + omodel.HMaterID.ToString() + "," + omodel.HProcID.ToString() + "," + omodel.HICMOQty.ToString() + "," + omodel.HPlanQty.ToString() + ",getdate()," + omodel.HSourceID.ToString() +
                "," + omodel.HGroupID.ToString() + "," + omodel.HDeptID.ToString() + "," + omodel.HEmpID.ToString() + ",'" + omodel.HBarCode + "','" + omodel.HAddr + "','" + omodel.HBarCodeMaker + "',getdate()" +
                "," + omodel.HSupID.ToString() + "," + omodel.HTaxRate.ToString() + "," + omodel.HQty.ToString() + "," + omodel.HPrice.ToString() + "," + omodel.HMoney.ToString() + "," + omodel.HPieceQty.ToString() +
                "," + omodel.HProcNo.ToString() + ",'" + omodel.HOrderProcNO.ToString() + "'" + ",'" + omodel.HWWWorkOrderBillNo.ToString() + "'" + "," + omodel.HWWWorkOrderInterID.ToString() + "" + "," + omodel.HWWWorkOrderEntryID.ToString() + "" +
              ") ");
                //插入子表
                foreach (Model.ClsSc_StationEntrustInBillSub oSub in DetailColl)
                {
                    //oCn.RunProc("Insert into Sc_StationInBillSub " +
                    //  " (HInterID,HBillNo_bak,HEntryID,HCloseMan" +
                    //  ",HEntryCloseDate,HCloseType,HRemark,HSourceInterID" +
                    //  ",HSourceEntryID,HSourceBillNo,HSourceBillType,HRelationQty,HRelationMoney" +
                    //  ",HDotCheckItemID,HDotCheckItem,HDotCheckPart,HClaim,HManagerID" +
 
                    //  ") values("
                    //  + omodel.HInterID.ToString() + ",'" + oSub.HBillNo_bak + "'," + oSub.HEntryID.ToString() + ",'" + oSub.HCloseMan + "'" +
                    //  ",getdate()," + Convert.ToString(oSub.HCloseType ? 1 : 0) + ",'" + oSub.HRemark + "'," + oSub.HSourceInterID.ToString() +
                    //  "," + oSub.HSourceEntryID.ToString() + ",'" + oSub.HSourceBillNo + "','" + oSub.HSourceBillType + "'," + oSub.HRelationQty.ToString() + "," + oSub.HRelationMoney.ToString() +
                    //  "," + oSub.HDotCheckItemID.ToString() + ",'" + oSub.HDotCheckItem + "','" + oSub.HDotCheckPart + "','" + oSub.HClaim + "'," + oSub.HManagerID.ToString() +
                    //  ") ");
                }
 
                //oCn.RunProc("update Sc_ProcessExchangeBillsub set HRelBeginDate='" + DBUtility.ClsPub.GetServerDate(-1) + "' where HInterID=" + omodel.HProcExchInterID.ToString() + " and HEntryID=" + omodel.HProcExchEntryID.ToString());
 
 
                //根据进站单内码 控制进站数量(进站按计划数量控制(暂时不要))(进站数量 按上道工序 合计出站数量控制、且不能小于 本道工序 合计出站数量))
                DataSet Ds;
                Ds = oCn.RunProcReturn("exec h_p_MES_StationInBill_QtyCtrl " + omodel.HInterID.ToString() + "", "h_p_MES_StationInBill_QtyCtrl");
                if (Ds == null)
                {
                    sReturn = "判断数量失败!";
                    oCn.RollBack();
                    return false;
                }
                if (Ds.Tables[0].Rows.Count == 0)
                {
                    sReturn = "判断数量失败!";
                    oCn.RollBack();
                    return false;
                }
                if (DBUtility.ClsPub.isStrNull(Ds.Tables[0].Rows[0]["HBack"]) == "2")
                {
                    sReturn = DBUtility.ClsPub.isStrNull(Ds.Tables[0].Rows[0]["HBackRemark"]);
                    oCn.RollBack();
                    return false;
                }
                //////
                oCn.RunProc("exec h_p_Mes_ProcessExchangeRelationQty_In " + omodel.HInterID.ToString() + ",1");
                oCn.RunProc("exec h_p_WW_EntrustWorkOrderRelationQty_In " + omodel.HInterID.ToString() + ",1");
                //
                //判断是否是 首道工序
                //DataSet ds1;
                //ds1 = oCn.RunProcReturn(" select HLastProc,HFstProc from Sc_ProcessExchangeBillMain a  " +
                //                    " inner join Sc_ProcessExchangeBillSub b on a.HInterID=b.HInterID  " +
                //                    " Where a.HInterID=" + omodel.HProcExchInterID.ToString() + " and b.HEntryID=" + omodel.HProcExchEntryID.ToString() + " ", "Sc_ProcessExchangeBillMain");
                //if (ds1 == null || ds1.Tables[0].Rows.Count == 0)
                //{
                //    //
                //}
                //else if (Pub_Class.ClsPub.isStrNull(ds1.Tables[0].Rows[0]["HFstProc"]) == "是")
                //{
                //    //拼接JSON  写入CLOUD 
                //    DataSet ds2;
                //    ds2 = oCn.RunProcReturn("exec h_p_Sc_GetPPBOMByStationOutBill_New  '" + omodel.HBillNo + "'," + " " + omodel.HProcExchInterID.ToString() + "," + omodel.HQty.ToString(), "h_p_Sc_GetPPBOMByStationOutBill_New");
                //    if (ds2 == null || ds2.Tables[0].Rows.Count == 0)
                //    {
                //        ////更新 jin站单 标记为 2.
                //        //oCn.RunProc("update Sc_StationInBillMain set HSaveBillFlag=2 where HinteriD =" + HInterID);
                //        //return;
                //    }
                //    else
                //    {
                //        string sJson_Main = "{\"Creator\":\"\",\"NeedUpDateFields\":[],\"Model\": { \"FID\":\"0\", \"FBILLNO\":\"" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[0]["HBillNO"]) + "\", \"FStockOrgId\":{\"FNumber\":\"201\"},  " +
                //        "\"FPRDORGID\":{\"FNumber\":\"201\"},  \"FBillType\": {\"FNumber\":\"SCLLD01_SYS\"  " +
                //        " },  \"FEntity\": [  ";
 
                //        string sJson_Entry = "";
                //        string sJson_BatchNo = "  ";
                //        //
                //        for (int i = 0; i < ds2.Tables[0].Rows.Count; i++)
                //        {
                //            if (sJson_Entry != "")
                //            {
                //                sJson_Entry = sJson_Entry + " , ";
                //            }
                //            if (Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["HBatchNo"]) == "1")
                //            {
                //                sJson_BatchNo = "  \"FLOT\": {\"FNumber\":\"1\"},    \"FLOT_TEXT\":\"1\"  , ";
                //            }
                //            else
                //            {
                //                sJson_BatchNo = " ";
                //            }
 
                //            sJson_Entry = sJson_Entry + " {    \"FSEQ\":\"" + Convert.ToString(i + 1) + "\",  " +
                //            "  \"FPARENTMATERIALID\" : { \"FNumber\":\"" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["HPRODNUMBER"]) + "\" } , " +
                //            "  \"FUNITID\":    {\"FNumber\":\"009\"},  \"FBASEUNITID\" :  {\"FNumber\":\"Pcs\"} , " +
                //           sJson_BatchNo +
                //            "  \"FBASESTOCKACTUALQTY\": 1 ,\"FSTOCKUNITID\" : {\"FNumber\":\"009\"}  ,  " +
                //            "  \"FMOBILLNO\" :  \"" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["HICMOBILLNO"]) + "\" , " +
                //            "  \"FMOID\" : " + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["HICMOINTERID"]) + " , " +
                //            " \"FMOENTRYID\" : " + Pub_Class.ClsPub.isLong(ds2.Tables[0].Rows[i]["HICMOENTRYID"]) + " , " +
                //            " \"FMOENTRYSEQ\" :" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["HICMOSUBID"]) + " , " +
                //            "    \"F_PAEZ_TEXT\":\"" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["HORDERPROCNO"]) + "\", " +
                //            "  \"FPPBOMBILLNO\" :  \"" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["HPPBOMBILLNO"]) + "\" , " +
                //            "  \"FPPBOMENTRYID\" : " + Pub_Class.ClsPub.isLong(ds2.Tables[0].Rows[i]["HPPBOMENTRYID"]) + " ,  " +
                //            " \"FMATERIALID\":{\"FNumber\":\"" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["HMATERNUMBER"]) + "\"} ,  " +
                //            "   \"FWORKSHOPID\":    {\"FNumber\":\"02.01\"},   " +
                //            "  \"FSTOCKID\":    {\"FNumber\":\"006\"},    \"FAPPQTY\":" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["HQTY"]) + ", " +
                //            "  \"FACTUALQTY\":" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["HQTY"]) + ", " +
                //            " \"FSRCBILLTYPE\" : \"PRD_PPBOM\" ,  \"FSRCBILLNO\" :  \"" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["HPPBOMBILLNO"]) + "\" , " +
                //            " \"FSRCINTERID\" : " + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["HPPBOMINTERID"]) + " ,  " +
                //            " \"FSRCENTRYID\" : " + Pub_Class.ClsPub.isLong(ds2.Tables[0].Rows[i]["HPPBOMENTRYID"]) + " ,  " +
                //            " \"FSRCENTRYSEQ\" : " + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["HPPBOMSUBID"]) + " , " +
                //            "  \"FOPERID\":" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["HOPERID"]) + ", " +
                //            "  \"FREQSRC\":" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["FREQSRC"]) + ", " +
                //            "  \"FREQBILLID\":" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["FREQBILLID"]) + ", " +
                //            "  \"FREQBILLNO\":\"" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["FREQBILLNO"]) + "\", " +
                //            "  \"FREQENTRYID\":" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["FREQENTRYID"]) + ", " +
                //            "  \"FREQENTRYSEQ\":" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["FREQENTRYSEQ"]) + ", " +
                //            "  \"FPARENTOWNERTYPEID\":\"BD_OwnerOrg\" , " +
                //            "  \"FPARENTOWNERID\":{\"FNumber\":\"201\"} , " +
                //            "  \"FOWNERID\":{\"FNumber\":\"201\"} , " +
                //             "  \"FEntity_Link\": [ {  " +
                //            "  \"FEntity_Link_FFlowId\":\"81119477-4778-4d0b-94b9-1c43a1c1f768\" ,  " +
                //            "  \"FEntity_Link_FFlowLineId\":5  ,  " +
                //            "  \"FEntity_Link_FRuleId\":\"PRD_PPBOM2PICKMTRL_NORMAL\" ,  " +
                //            "  \"FEntity_Link_FSTableName\":\"T_PRD_PPBOMENTRY\" ,  " +
                //            "  \"FEntity_Link_FSBillId\":" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["HPPBOMINTERID"]) + " ,  " +
                //            "  \"FEntity_Link_FSId\":" + Pub_Class.ClsPub.isStrNull(ds2.Tables[0].Rows[i]["HPPBOMENTRYID"]) + "   " +
                //             " } ]   }  ";
 
                //        }
                //        //
                //        string sJson_End = "  ]  }}";
                //        string sJson = sJson_Main + sJson_Entry + sJson_End;
 
 
 
                //        oWeb.WebService1 oweb = new DAL.oWeb.WebService1();
                //        if (oweb.BillToMaterialOut(omodel.HBillNo, sJson, Pub_Class.ClsPub.HUrl_CLD, Pub_Class.ClsPub.HdbID_CLD, Pub_Class.ClsPub.HUserName_CLD, Pub_Class.ClsPub.HPsd_CLD, ref Pub_Class.ClsPub.sExeReturnInfo))
                //        {
                //            sReturn = "生成领料成功!" + Pub_Class.ClsPub.sExeReturnInfo;
                //            //return true;
                //        }
                //        else
                //        {
                //            sReturn = "生成领料失败!" + Pub_Class.ClsPub.sExeReturnInfo;
                //            oCn.RollBack();
                //            return false;
                //        }
 
                //    }
                //    //
                //}
 
                //
                sReturn = sReturn + "新增单据成功!";
                oCn.Commit();
                return true;
            }
            catch (Exception e)
            {
                sReturn = e.Message;
                oCn.RollBack();
                throw (e);
            }
        }
        //显示单据
        public override bool ShowBill(Int64 lngBillKey, ref string sReturn)
        {
            try
            {
                //查询主表
                DataSet Ds ;
                Ds = oCn.RunProcReturn("Select * from Sc_StationInBillMain Where HInterID=" + lngBillKey.ToString(), "Sc_StationInBillMain");
                if(Ds.Tables[0].Rows.Count==0)
                {
                    sReturn = "单据未找到!";
                    return false;
                }
                //固定赋值===========================================
                omodel.HInterID =DBUtility.ClsPub.isLong(Ds.Tables[0].Rows[0]["HInterID"]);
                omodel.HBillNo = Ds.Tables[0].Rows[0]["HBillNo"].ToString().Trim();
                omodel.HDate =DBUtility.ClsPub.isDate(Ds.Tables[0].Rows[0]["HDate"]);
                omodel.HYear = DBUtility.ClsPub.isLong(Ds.Tables[0].Rows[0]["HYear"]);
                omodel.HPeriod = DBUtility.ClsPub.isLong(Ds.Tables[0].Rows[0]["HPeriod"]);
                omodel.HCheckItemNowID = DBUtility.ClsPub.isLong(Ds.Tables[0].Rows[0]["HCheckItemNowID"]);
                omodel.HCheckItemNextID = DBUtility.ClsPub.isLong(Ds.Tables[0].Rows[0]["HCheckItemNextID"]);
                omodel.HCheckFlowID = DBUtility.ClsPub.isLong(Ds.Tables[0].Rows[0]["HCheckFlowID"]);
                omodel.HRemark = Ds.Tables[0].Rows[0]["HRemark"].ToString().Trim();
                omodel.HBillStatus = DBUtility.ClsPub.isInt(Ds.Tables[0].Rows[0]["HBillStatus"]);
                omodel.HBillType = DBUtility.ClsPub.isStrNull(Ds.Tables[0].Rows[0]["HBillType"]);
                omodel.HBillSubType = DBUtility.ClsPub.isStrNull(Ds.Tables[0].Rows[0]["HBillSubType"]);
                omodel.HMaker = Ds.Tables[0].Rows[0]["HMaker"].ToString().Trim();
                omodel.HMakeDate = Ds.Tables[0].Rows[0]["HMakeDate"].ToString().Trim();
                omodel.HUpDateDate = Ds.Tables[0].Rows[0]["HUpDateDate"].ToString().Trim();
                omodel.HUpDater = Ds.Tables[0].Rows[0]["HUpDater"].ToString().Trim();
                omodel.HBackDate = Ds.Tables[0].Rows[0]["HBackDate"].ToString().Trim();
                omodel.HBacker = Ds.Tables[0].Rows[0]["HBacker"].ToString().Trim();
                omodel.HCheckDate = Ds.Tables[0].Rows[0]["HCheckDate"].ToString().Trim();
                omodel.HChecker = Ds.Tables[0].Rows[0]["HChecker"].ToString().Trim();
                omodel.HCloseDate = Ds.Tables[0].Rows[0]["HCloseDate"].ToString().Trim();
                omodel.HCloseMan = Ds.Tables[0].Rows[0]["HCloseMan"].ToString().Trim();
                omodel.HDeleteDate = Ds.Tables[0].Rows[0]["HDeleteDate"].ToString().Trim();
                omodel.HDeleteMan = Ds.Tables[0].Rows[0]["HDeleteMan"].ToString().Trim();
                omodel.HInnerBillNo = DBUtility.ClsPub.isStrNull(Ds.Tables[0].Rows[0]["HInnerBillNo"]);
                //========================================================
                ////==
                //omodel.HWHID = DBUtility.ClsPub.isLong(Ds.Tables[0].Rows[0]["HWHID"]);
                //omodel.HSCWHID = DBUtility.ClsPub.isLong(Ds.Tables[0].Rows[0]["HSCWHID"]);
                omodel.HSupID = DBUtility.ClsPub.isLong(Ds.Tables[0].Rows[0]["HSupID"]);
                omodel.HTaxRate = DBUtility.ClsPub.isDoule(Ds.Tables[0].Rows[0]["HTaxRate"]);
                omodel.HQty = DBUtility.ClsPub.isDoule(Ds.Tables[0].Rows[0]["HQty"]);
                omodel.HPieceQty = DBUtility.ClsPub.isDoule(Ds.Tables[0].Rows[0]["HPieceQty"]);
                omodel.HPrice = DBUtility.ClsPub.isDoule(Ds.Tables[0].Rows[0]["HPrice"]);
                omodel.HMoney = DBUtility.ClsPub.isDoule(Ds.Tables[0].Rows[0]["HMoney"]);
                //omodel.HEmpID = DBUtility.ClsPub.isLong(Ds.Tables[0].Rows[0]["HEmpID"]);
                //omodel.HMangerID = DBUtility.ClsPub.isLong(Ds.Tables[0].Rows[0]["HMangerID"]);
                omodel.HICMOInterID = DBUtility.ClsPub.isLong(Ds.Tables[0].Rows[0]["HICMOInterID"]);
                omodel.HICMOBillNo = DBUtility.ClsPub.isStrNull(Ds.Tables[0].Rows[0]["HICMOBillNo"]);
                omodel.HProcPlanInterID = DBUtility.ClsPub.isLong(Ds.Tables[0].Rows[0]["HProcPlanInterID"]);
                omodel.HProcPlanEntryID = DBUtility.ClsPub.isLong(Ds.Tables[0].Rows[0]["HProcPlanEntryID"]);
                omodel.HProcPlanBillNo = DBUtility.ClsPub.isStrNull(Ds.Tables[0].Rows[0]["HProcPlanBillNo"]);
                omodel.HProcExchInterID = DBUtility.ClsPub.isLong(Ds.Tables[0].Rows[0]["HProcExchInterID"]);
                omodel.HProcExchEntryID = DBUtility.ClsPub.isLong(Ds.Tables[0].Rows[0]["HProcExchEntryID"]);
                omodel.HProcExchBillNo = DBUtility.ClsPub.isStrNull(Ds.Tables[0].Rows[0]["HProcExchBillNo"]);
                omodel.HMaterID = DBUtility.ClsPub.isLong(Ds.Tables[0].Rows[0]["HMaterID"]);
                omodel.HProcID = DBUtility.ClsPub.isLong(Ds.Tables[0].Rows[0]["HProcID"]);
                omodel.HICMOQty = DBUtility.ClsPub.isDoule(Ds.Tables[0].Rows[0]["HICMOQty"]);
                omodel.HPlanQty = DBUtility.ClsPub.isDoule(Ds.Tables[0].Rows[0]["HPlanQty"]);
                omodel.HStationInTime = DBUtility.ClsPub.isDate(Ds.Tables[0].Rows[0]["HStationInTime"]);
                omodel.HSourceID = DBUtility.ClsPub.isLong(Ds.Tables[0].Rows[0]["HSourceID"]);
                omodel.HGroupID = DBUtility.ClsPub.isLong(Ds.Tables[0].Rows[0]["HGroupID"]);
                omodel.HDeptID = DBUtility.ClsPub.isLong(Ds.Tables[0].Rows[0]["HDeptID"]);
                omodel.HEmpID = DBUtility.ClsPub.isLong(Ds.Tables[0].Rows[0]["HEmpID"]);
                omodel.HReportType = DBUtility.ClsPub.isStrNull(Ds.Tables[0].Rows[0]["HReportType"]);
                omodel.HBarCode = DBUtility.ClsPub.isStrNull(Ds.Tables[0].Rows[0]["HBarCode"]);
                omodel.HAddr = DBUtility.ClsPub.isStrNull(Ds.Tables[0].Rows[0]["HAddr"]);
                omodel.HBarCodeMaker = DBUtility.ClsPub.isStrNull(Ds.Tables[0].Rows[0]["HBarCodeMaker"]);
                omodel.HBarCodeMakeDate = DBUtility.ClsPub.isDate(Ds.Tables[0].Rows[0]["HBarCodeMakeDate"]);
                //omodel.HRedBlueFlag = DBUtility.ClsPub.isBool(Ds.Tables[0].Rows[0]["HRedBlueFlag"]);
                omodel.HSourceName = DBUtility.ClsPub.isStrNull(Ds.Tables[0].Rows[0]["HSourceName"]);
                omodel.HProcNo = DBUtility.ClsPub.isLong(Ds.Tables[0].Rows[0]["HProcNo"]);
                omodel.HOrderProcNO = DBUtility.ClsPub.isStrNull(Ds.Tables[0].Rows[0]["HOrderProcNO"]);
                omodel.HWWWorkOrderBillNo = DBUtility.ClsPub.isStrNull(Ds.Tables[0].Rows[0]["HWWWorkOrderBillNo"]);
                omodel.HWWWorkOrderInterID = DBUtility.ClsPub.isLong(Ds.Tables[0].Rows[0]["HWWWorkOrderInterID"]);
                omodel.HWWWorkOrderEntryID = DBUtility.ClsPub.isLong(Ds.Tables[0].Rows[0]["HWWWorkOrderEntryID"]);
                //
                
                //循环
                //DataSet DsSub ;
                //DsSub = oCn.RunProcReturn("Select * from Sc_StationInBillSub Where HInterID=" + lngBillKey.ToString(), "Sc_StationInBillSub");
                //DetailColl.Clear();//清空
                //for (int i = 0; i < DsSub.Tables[0].Rows.Count; i++)
                //{
                //    Model.ClsSc_StationEntrustInBillSub oSub = new Model.ClsSc_StationEntrustInBillSub();
                    // 固定赋值===============================================
                    //oSub.HInterID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HInterID"]);
                    //oSub.HEntryID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HEntryID"]);
                    //oSub.HBillNo_bak = DBUtility.ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HBillNo_bak"]);
                    ////oSub.HEntryID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HEntryID"]);
                    //oSub.HCloseMan = DBUtility.ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HCloseMan"]);
                    //oSub.HEntryCloseDate = DBUtility.ClsPub.isDate(DsSub.Tables[0].Rows[i]["HEntryCloseDate"]);
                    //oSub.HCloseType = DBUtility.ClsPub.isBool(DsSub.Tables[0].Rows[i]["HCloseType"]);
                    //oSub.HRemark = DsSub.Tables[0].Rows[i]["HRemark"].ToString().Trim();
                    //oSub.HSourceInterID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HSourceInterID"]);
                    //oSub.HSourceEntryID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HSourceEntryID"]);
                    //oSub.HSourceBillType = DsSub.Tables[0].Rows[i]["HSourceBillType"].ToString().Trim();
                    //oSub.HSourceBillNo = DsSub.Tables[0].Rows[i]["HSourceBillNo"].ToString().Trim();
                    //oSub.HRelationQty = DBUtility.ClsPub.isDoule(DsSub.Tables[0].Rows[i]["HRelationQty"]);
                    //oSub.HRelationMoney = DBUtility.ClsPub.isDoule(DsSub.Tables[0].Rows[i]["HRelationMoney"]);                 
                    ////===================================================
                    //oSub.HDotCheckItemID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HDotCheckItemID"]);
                    //oSub.HDotCheckItem = DBUtility.ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HDotCheckItem"]);
                    //oSub.HDotCheckPart = DBUtility.ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HDotCheckPart"]);
                    //oSub.HClaim = DBUtility.ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HClaim"]);
                    //oSub.HManagerID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HManagerID"]);
                    //oSub.HWorkerID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HWorkerID"]);
                    //oSub.HWorkerNumber = DsSub.Tables[0].Rows[i]["HWorkerNumber"].ToString().Trim();
                    //oSub.HSourceID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HSourceID"]);
                    //oSub.HMaterID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HMaterID"]);
                    //oSub.HPropertyID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HPropertyID"]);
                    //oSub.HSecUnitID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HSecUnitID"]);
                    //oSub.HSecUnitRate = DBUtility.ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HSecUnitRate"]);
                    //oSub.HUnitID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HUnitID"]);
                    //oSub.HBatchNo = DBUtility.ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HBatchNo"]);
                    //oSub.HQtyMust = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HQtyMust"]);
                    //oSub.HQty = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HQty"]);
                    //oSub.HPrice = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HPrice"]);
                    //oSub.HMoney = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HMoney"]);
                    //oSub.HDesignLife = DBUtility.ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HDesignLife"]);
                    //oSub.HLeaveLife = DBUtility.ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HLeaveLife"]);
                    //oSub.HUseLife = DBUtility.ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HUseLife"]);
                    //oSub.HWHID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HWHID"]);
                    //oSub.HSPID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HSPID"]);
                    //oSub.HSCWHID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HSCWHID"]);
                    //oSub.HSCSPID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HSCSPID"]);
                    //oSub.HSPGroupID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HSPGroupID"]);
 
                    //oSub.HQtyMust = DBUtility.ClsPub.isDoule(DsSub.Tables[0].Rows[i]["HQtyMust"]);
                    //oSub.HBadCount = DBUtility.ClsPub.isDoule(DsSub.Tables[0].Rows[i]["HBadCount"]);
                    //oSub.HWasterQty = DBUtility.ClsPub.isDoule(DsSub.Tables[0].Rows[i]["HWasterQty"]);
                    //oSub.HSeOrderInterID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HSeOrderInterID"]);
                    //oSub.HSeOrderEntryID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HSeOrderEntryID"]);
                    //oSub.HSeOrderBillNo = DsSub.Tables[0].Rows[i]["HSeOrderBillNo"].ToString().Trim();
                    
                //    DetailColl.Add(oSub);
                //}
                //DataSet DsSub2;
                //DsSub2 = oCn.RunProcReturn("Select * from Sc_StationInBillSub_Item Where HInterID=" + lngBillKey.ToString(), "Sc_StationInBillSub_Item");
                //DetailColl1.Clear();//清空
                //for (int i = 0; i < DsSub2.Tables[0].Rows.Count; i++)
                //{
                //    Model.ClsSc_StationEntrustInBillSub_Item oSub2 = new Model.ClsSc_StationEntrustInBillSub_Item();
                //    // 固定赋值===============================================
                //    oSub2.HInterID = DBUtility.ClsPub.isLong(DsSub2.Tables[0].Rows[i]["HInterID"]);
                //    oSub2.HEntryID = DBUtility.ClsPub.isLong(DsSub2.Tables[0].Rows[i]["HEntryID"]);
                //    oSub2.HBillNo_bak = DBUtility.ClsPub.isStrNull(DsSub2.Tables[0].Rows[i]["HBillNo_bak"]);
                //    oSub2.HCloseMan = DBUtility.ClsPub.isStrNull(DsSub2.Tables[0].Rows[i]["HCloseMan"]);
                //    oSub2.HEntryCloseDate = DBUtility.ClsPub.isDate(DsSub2.Tables[0].Rows[i]["HEntryCloseDate"]);
                //    oSub2.HCloseType = DBUtility.ClsPub.isBool(DsSub2.Tables[0].Rows[i]["HCloseType"]);
                //    oSub2.HRemark = DBUtility.ClsPub.isStrNull(DsSub2.Tables[0].Rows[i]["HRemark"]);
                //    oSub2.HSourceInterID = DBUtility.ClsPub.isLong(DsSub2.Tables[0].Rows[i]["HSourceInterID"]);
                //    oSub2.HSourceEntryID = DBUtility.ClsPub.isLong(DsSub2.Tables[0].Rows[i]["HSourceEntryID"]);
                //    oSub2.HSourceBillType = DsSub2.Tables[0].Rows[i]["HSourceBillType"].ToString().Trim();
                //    oSub2.HSourceBillNo = DsSub2.Tables[0].Rows[i]["HSourceBillNo"].ToString().Trim();
                //    oSub2.HRelationQty = DBUtility.ClsPub.isDoule(DsSub2.Tables[0].Rows[i]["HRelationQty"]);
                //    oSub2.HRelationMoney = DBUtility.ClsPub.isDoule(DsSub2.Tables[0].Rows[i]["HRelationMoney"]);
                //    //===================================================
                //    //oSub.HWorkerID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HWorkerID"]);
                //    //oSub.HWorkerNumber = DsSub.Tables[0].Rows[i]["HWorkerNumber"].ToString().Trim();
                //    //oSub.HSourceID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HSourceID"]);
                //    //oSub.HMaterID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HMaterID"]);
                //    //oSub.HPropertyID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HPropertyID"]);
                //    //oSub.HSecUnitID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HSecUnitID"]);
                //    //oSub.HSecUnitRate = DBUtility.ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HSecUnitRate"]);
                //    //oSub.HUnitID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HUnitID"]);
                //    //oSub.HBatchNo = DBUtility.ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HBatchNo"]);
                //    //oSub.HQtyMust = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HQtyMust"]);
                //    //oSub.HQty = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HQty"]);
                //    //oSub.HPrice = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HPrice"]);
                //    //oSub.HMoney = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HMoney"]);
                //    //oSub.HDesignLife = DBUtility.ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HDesignLife"]);
                //    //oSub.HLeaveLife = DBUtility.ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HLeaveLife"]);
                //    //oSub.HUseLife = DBUtility.ClsPub.isStrNull(DsSub.Tables[0].Rows[i]["HUseLife"]);
                //    //oSub.HWHID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HWHID"]);
                //    //oSub.HSPID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HSPID"]);
                //    //oSub.HSCWHID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HSCWHID"]);
                //    //oSub.HSCSPID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HSCSPID"]);
                //    //oSub.HSPGroupID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HSPGroupID"]);
                //    oSub2.HMaintainItemID = DBUtility.ClsPub.isLong(DsSub2.Tables[0].Rows[i]["HMaintainItemID"]);
                //    oSub2.HMaintainItem = DBUtility.ClsPub.isStrNull(DsSub2.Tables[0].Rows[i]["HMaintainItem"]);
                //    oSub2.HMaintainPart = DBUtility.ClsPub.isStrNull(DsSub2.Tables[0].Rows[i]["HMaintainPart"]);
                //    oSub2.HClaim = DBUtility.ClsPub.isStrNull(DsSub2.Tables[0].Rows[i]["HClaim"]);
                //    oSub2.HManagerID = DBUtility.ClsPub.isLong(DsSub2.Tables[0].Rows[i]["HManagerID"]);
                //    //oSub.HQtyMust = DBUtility.ClsPub.isDoule(DsSub.Tables[0].Rows[i]["HQtyMust"]);
                //    //oSub.HBadCount = DBUtility.ClsPub.isDoule(DsSub.Tables[0].Rows[i]["HBadCount"]);
                //    //oSub.HWasterQty = DBUtility.ClsPub.isDoule(DsSub.Tables[0].Rows[i]["HWasterQty"]);
                //    //oSub.HSeOrderInterID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HSeOrderInterID"]);
                //    //oSub.HSeOrderEntryID = DBUtility.ClsPub.isLong(DsSub.Tables[0].Rows[i]["HSeOrderEntryID"]);
                //    //oSub.HSeOrderBillNo = DsSub.Tables[0].Rows[i]["HSeOrderBillNo"].ToString().Trim();
 
                //    DetailColl1.Add(oSub2);
                //}
                sReturn = "显示单据成功!";
                return true;
            }
            catch (Exception e)
            {
                sReturn = e.Message;
                throw (e);
            }
        }
 
        //审核
        public bool CheckBill(Int64 lngBillKey, ref string sReturn)
        {
 
            try
            {
                string HChecker = DBUtility.ClsPub.CurUserName;
                string HCheckDate = DBUtility.ClsPub.GetServerDate(-1);
                oCn.BeginTran();
 
                oCn.RunProc(" Update " + MvarItemKey + " set HChecker='" + HChecker + "',HCheckDate='" + HCheckDate + "' Where HInterID=" + lngBillKey.ToString());
 
                //////
                oCn.RunProc("exec h_p_Mes_ProcessExchangeRelationQty_Check_In " + lngBillKey.ToString() + ",1");
 
                sReturn = sReturn + " 审核功能!";
                oCn.Commit();
                return true;
            }
            catch (Exception e)
            {
                sReturn = e.Message;
                oCn.RollBack();
                return false; ;
            }
        }
 
 
        //反审核
        public bool AbandonCheck(Int64 lngBillKey, ref string sReturn)
        {
 
            if (isUse(lngBillKey, ref sReturn))
            {
                return false;
            }
            try
            {
                if (ShowBill(lngBillKey, ref Pub_Class.ClsPub.sExeReturnInfo) == false)
                {
                    sReturn = "反审核失败,单据未找到!";
                    return false;
                }
 
                oCn.BeginTran();
 
                oCn.RunProc(" Update " + MvarItemKey + " set HChecker='',HCheckDate=null Where HInterID=" + lngBillKey.ToString());
                //////
                oCn.RunProc("exec h_p_Mes_ProcessExchangeRelationQty_Check_In " + lngBillKey.ToString() + ",-1");
 
              
                sReturn = sReturn + " 反审核功能!";
                oCn.Commit();
                return true;
            }
            catch (Exception e)
            {
                sReturn = e.Message;
                oCn.RollBack();
                return false; ;
            }
        }
 
        public bool DeleteCheck(long HInterID, string HType, ref string sReturn)
        {
            DataSet Ds;
            Ds = oCn.RunProcReturn("exec h_p_Sc_StationDelete " + HInterID + ",'" + HType + "'", "h_p_Sc_StationDelete");
            if (DBUtility.ClsPub.isStrNull(Ds.Tables[0].Rows[0][0]) != "OK")
            {
                sReturn = DBUtility.ClsPub.isStrNull(Ds.Tables[0].Rows[0][0]);
                return false;
            }
            return true;
 
        }
        public bool DeleteBill(long HInterID, long HProcExchInterID, long HProcExchEntryID, string HBillNo, string procName, string user, ref string sReturn)
        {
            try
            {
                oCn.BeginTran();
 
 
                //写入删除日志
                //oCn.RunProc("exec h_p_Sc_StationInBillMain_DropLog " + HInterID+",'"+DBUtility.ClsPub.CurUserName+"'");
 
                //////
                oCn.RunProc("exec h_p_Mes_ProcessExchangeRelationQty_In " + HInterID.ToString() + ",-1");
                oCn.RunProc("exec h_p_WW_EntrustWorkOrderRelationQty_In " + HInterID.ToString() + ",-1");
                //
                //HBillSubType=2  初始化进站  把流转卡初始化标记改为0
                DataSet Ds;
                //Ds = oCn.RunProcReturn("select HBillSubType from Sc_StationInBillMain where HInterID=" + HInterID, "h_p_Sc_StationDelete");
                //if (DBUtility.ClsPub.isStrNull(Ds.Tables[0].Rows[0][0]) == "2")
                //{
                //    oCn.RunProc("update Sc_ProcessExchangeBillsub set HCSHJZFlag=0 where HInterID=" + HProcExchInterID);
                //}
                //删除
                oCn.RunProc("delete Sc_StationInBillMain   where HInterID=" + HInterID);
                //回填流转卡进站时间
                //oCn.RunProc("update Sc_ProcessExchangeBillsub set HRelBeginDate=null where HInterID=" + HProcExchInterID + " and HEntryID=" + HProcExchEntryID);
 
                //删除后控制==================================================================================      
                string sql2 = "exec " + procName + " " + HInterID + ",'" + HBillNo + "','" + user + "'";
                DataSet ds = oCn.RunProcReturn(sql2, procName);
                if (ds == null || ds.Tables.Count == 0 || ds.Tables[0].Rows.Count == 0)
                {
 
                    sReturn = "删除失败!原因:删除后判断失败,请与网络管理人员联系";
                    oCn.RollBack();
                    return false;
                }
                if (ds.Tables[0].Rows[0]["HBack"].ToString() != "0")
                {
                    sReturn = "删除失败!原因:" + ds.Tables[0].Rows[0]["HRemark"].ToString();
                    oCn.RollBack();
                    return false;
                }
                //==============================================================================================
 
                oCn.Commit();
                return true;
            }
            catch (Exception e)
            {
                sReturn = e.Message;
                oCn.RollBack();
                throw (e);
            }
 
        }
 
        public bool CheckCenterIDByUser(long HCenterID)
        {
            DataSet Ds;
            Ds = oCn.RunProcReturn("select 1 from MES_CenterIDByUser where HUserID='" + DBUtility.ClsPub.CurUserID + "' and HCenterID=" + HCenterID, "h_p_Sc_StationDelete");
            if (Ds == null || Ds.Tables[0].Rows.Count == 0)
            {
                return false;
            }
            return true;
        }
        public bool CloseBill(long HInterID)
        {
            oCn.RunProc("update Sc_StationInBillMain set HCloseMan='" + DBUtility.ClsPub.CurUserName + "',HCloseDate=getdate(),HCloseType=2    where HInterID=" + HInterID);
            return true;
        }
        public bool CancelClose(long HInterID)
        {
            oCn.RunProc("update Sc_StationInBillMain set HCloseMan='',HCloseDate=null,HCloseType=0    where HInterID=" + HInterID);
            return true;
        }
 
        //检查是否开票
        public bool CheckIsKP(long HInterID, ref string sReturn)
        {
            DataSet Ds;
            Ds = oCn.RunProcReturn("exec h_p_Sc_StationInBill_CheckIsKP " + HInterID, "h_p_Sc_StationCheckIsKP");
            if (DBUtility.ClsPub.isStrNull(Ds.Tables[0].Rows[0][0]) != "OK")
            {
                sReturn = DBUtility.ClsPub.isStrNull(Ds.Tables[0].Rows[0][0]);
                return false;
            }
            return true;
 
        }
    }
}