YxyyChangeWvDetail.Designer.cs 68.4 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108
namespace CsbrHcgClient
{
    partial class YxyyChangeWvDetail
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows Form Designer generated code

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle19 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle20 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle21 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle22 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle23 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle24 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle25 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle26 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle27 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle28 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle29 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle30 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle31 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle32 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle33 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle34 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle53 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle35 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle36 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle37 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle38 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle39 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle40 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle41 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle42 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle43 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle44 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle45 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle46 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle47 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle48 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle49 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle50 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle51 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle52 = new System.Windows.Forms.DataGridViewCellStyle();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(YxyyChangeWvDetail));
            this.panTop = new System.Windows.Forms.Panel();
            this.btnSelect = new System.Windows.Forms.Button();
            this.label1 = new System.Windows.Forms.Label();
            this.txtBillno = new System.Windows.Forms.TextBox();
            this.lblbillNo = new System.Windows.Forms.Label();
            this.txtSupplierno = new System.Windows.Forms.TextBox();
            this.lblmedstoreguid = new System.Windows.Forms.Label();
            this.txtmedstoreguid = new System.Windows.Forms.TextBox();
            this.txtmeddeptguid = new System.Windows.Forms.TextBox();
            this.lblmeddeptguid = new System.Windows.Forms.Label();
            this.btnPtPrint = new System.Windows.Forms.Button();
            this.btnRfidPrint = new System.Windows.Forms.Button();
            this.panCenter = new System.Windows.Forms.Panel();
            this.dgv_Change = new System.Windows.Forms.DataGridView();
            this.dataGridViewTextBoxColumn18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.colEBELN = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn34 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn31 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn24 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn28 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn29 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.colAFNAM = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn30 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn32 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn33 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.bindingSource1 = new System.Windows.Forms.BindingSource(this.components);
            this.dataSet1 = new CsbrHcgClient.DataSet1();
            this.reportViewer1 = new Microsoft.Reporting.WinForms.ReportViewer();
            this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.calendarColumn1 = new TabControlEx.CalendarColumn();
            this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.dataGridViewTextBoxColumn17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.panbottom = new System.Windows.Forms.Panel();
            this.panel2 = new System.Windows.Forms.Panel();
            this.chk_SelectAll = new System.Windows.Forms.CheckBox();
            this.dgv_PrintDetail = new System.Windows.Forms.DataGridView();
            this.panel1 = new System.Windows.Forms.Panel();
            this.colPrintRow = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.colIsCheck = new System.Windows.Forms.DataGridViewCheckBoxColumn();
            this.colPrintEBELN = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.colPrintMATNR = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.colPrintMAKTX = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.colPrintXCHPF = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.colBWTTY = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.colPrintLot = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.colPrintExpireDate = new TabControlEx.CalendarColumn();
            this.colPrintCount = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.colLink = new System.Windows.Forms.DataGridViewLinkColumn();
            this.colPrintPTEXT = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.colPrintLIFNR = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.colPrintMENG1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.colPrintIsRK = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.colPrintIsZR = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.colPrintMSEH1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.colPrintMENGE = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.colPrintLIFN2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.colPrintELIKZ = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.colPrintEBELP = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.colPrintIntRow = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.panTop.SuspendLayout();
            this.panCenter.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dgv_Change)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
            this.panbottom.SuspendLayout();
            this.panel2.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dgv_PrintDetail)).BeginInit();
            this.panel1.SuspendLayout();
            this.SuspendLayout();
            // 
            // panTop
            // 
            this.panTop.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.panTop.Controls.Add(this.btnSelect);
            this.panTop.Controls.Add(this.label1);
            this.panTop.Controls.Add(this.txtBillno);
            this.panTop.Controls.Add(this.lblbillNo);
            this.panTop.Controls.Add(this.txtSupplierno);
            this.panTop.Controls.Add(this.lblmedstoreguid);
            this.panTop.Controls.Add(this.txtmedstoreguid);
            this.panTop.Controls.Add(this.txtmeddeptguid);
            this.panTop.Controls.Add(this.lblmeddeptguid);
            this.panTop.Dock = System.Windows.Forms.DockStyle.Top;
            this.panTop.Location = new System.Drawing.Point(0, 0);
            this.panTop.Margin = new System.Windows.Forms.Padding(5);
            this.panTop.Name = "panTop";
            this.panTop.Size = new System.Drawing.Size(1570, 60);
            this.panTop.TabIndex = 0;
            // 
            // btnSelect
            // 
            this.btnSelect.Location = new System.Drawing.Point(1415, 8);
            this.btnSelect.Margin = new System.Windows.Forms.Padding(5);
            this.btnSelect.Name = "btnSelect";
            this.btnSelect.Size = new System.Drawing.Size(125, 36);
            this.btnSelect.TabIndex = 12;
            this.btnSelect.Text = "筛选";
            this.btnSelect.UseVisualStyleBackColor = true;
            this.btnSelect.Click += new System.EventHandler(this.btnSelect_Click);
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(1039, 16);
            this.label1.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(106, 21);
            this.label1.TabIndex = 11;
            this.label1.Text = "采购订单号:";
            // 
            // txtBillno
            // 
            this.txtBillno.Location = new System.Drawing.Point(1155, 13);
            this.txtBillno.Margin = new System.Windows.Forms.Padding(5);
            this.txtBillno.Name = "txtBillno";
            this.txtBillno.Size = new System.Drawing.Size(235, 29);
            this.txtBillno.TabIndex = 12;
            // 
            // lblbillNo
            // 
            this.lblbillNo.AutoSize = true;
            this.lblbillNo.Location = new System.Drawing.Point(679, 16);
            this.lblbillNo.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
            this.lblbillNo.Name = "lblbillNo";
            this.lblbillNo.Size = new System.Drawing.Size(74, 21);
            this.lblbillNo.TabIndex = 9;
            this.lblbillNo.Text = "供应商:";
            // 
            // txtSupplierno
            // 
            this.txtSupplierno.Enabled = false;
            this.txtSupplierno.Location = new System.Drawing.Point(763, 13);
            this.txtSupplierno.Margin = new System.Windows.Forms.Padding(5);
            this.txtSupplierno.Name = "txtSupplierno";
            this.txtSupplierno.Size = new System.Drawing.Size(235, 29);
            this.txtSupplierno.TabIndex = 10;
            // 
            // lblmedstoreguid
            // 
            this.lblmedstoreguid.AutoSize = true;
            this.lblmedstoreguid.Location = new System.Drawing.Point(346, 16);
            this.lblmedstoreguid.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
            this.lblmedstoreguid.Name = "lblmedstoreguid";
            this.lblmedstoreguid.Size = new System.Drawing.Size(58, 21);
            this.lblmedstoreguid.TabIndex = 7;
            this.lblmedstoreguid.Text = "库房:";
            // 
            // txtmedstoreguid
            // 
            this.txtmedstoreguid.Enabled = false;
            this.txtmedstoreguid.Location = new System.Drawing.Point(414, 13);
            this.txtmedstoreguid.Margin = new System.Windows.Forms.Padding(5);
            this.txtmedstoreguid.Name = "txtmedstoreguid";
            this.txtmedstoreguid.Size = new System.Drawing.Size(235, 29);
            this.txtmedstoreguid.TabIndex = 8;
            // 
            // txtmeddeptguid
            // 
            this.txtmeddeptguid.Enabled = false;
            this.txtmeddeptguid.Location = new System.Drawing.Point(82, 13);
            this.txtmeddeptguid.Margin = new System.Windows.Forms.Padding(5);
            this.txtmeddeptguid.Name = "txtmeddeptguid";
            this.txtmeddeptguid.Size = new System.Drawing.Size(235, 29);
            this.txtmeddeptguid.TabIndex = 4;
            // 
            // lblmeddeptguid
            // 
            this.lblmeddeptguid.AutoSize = true;
            this.lblmeddeptguid.Location = new System.Drawing.Point(14, 16);
            this.lblmeddeptguid.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
            this.lblmeddeptguid.Name = "lblmeddeptguid";
            this.lblmeddeptguid.Size = new System.Drawing.Size(58, 21);
            this.lblmeddeptguid.TabIndex = 3;
            this.lblmeddeptguid.Text = "工厂:";
            // 
            // btnPtPrint
            // 
            this.btnPtPrint.Location = new System.Drawing.Point(1416, 5);
            this.btnPtPrint.Margin = new System.Windows.Forms.Padding(5);
            this.btnPtPrint.Name = "btnPtPrint";
            this.btnPtPrint.Size = new System.Drawing.Size(125, 35);
            this.btnPtPrint.TabIndex = 11;
            this.btnPtPrint.Text = "普通标签打印";
            this.btnPtPrint.UseVisualStyleBackColor = true;
            this.btnPtPrint.Click += new System.EventHandler(this.btnPtPrint_Click);
            // 
            // btnRfidPrint
            // 
            this.btnRfidPrint.Location = new System.Drawing.Point(1281, 5);
            this.btnRfidPrint.Margin = new System.Windows.Forms.Padding(5);
            this.btnRfidPrint.Name = "btnRfidPrint";
            this.btnRfidPrint.Size = new System.Drawing.Size(125, 36);
            this.btnRfidPrint.TabIndex = 8;
            this.btnRfidPrint.Text = "RFID标签打印";
            this.btnRfidPrint.UseVisualStyleBackColor = true;
            this.btnRfidPrint.Click += new System.EventHandler(this.btnRfidPrint_Click);
            // 
            // panCenter
            // 
            this.panCenter.Controls.Add(this.dgv_Change);
            this.panCenter.Dock = System.Windows.Forms.DockStyle.Top;
            this.panCenter.Location = new System.Drawing.Point(0, 60);
            this.panCenter.Margin = new System.Windows.Forms.Padding(5);
            this.panCenter.Name = "panCenter";
            this.panCenter.Size = new System.Drawing.Size(1570, 429);
            this.panCenter.TabIndex = 1;
            // 
            // dgv_Change
            // 
            this.dgv_Change.AllowUserToAddRows = false;
            this.dgv_Change.AllowUserToDeleteRows = false;
            this.dgv_Change.AllowUserToResizeColumns = false;
            this.dgv_Change.AllowUserToResizeRows = false;
            dataGridViewCellStyle1.BackColor = System.Drawing.Color.WhiteSmoke;
            this.dgv_Change.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
            this.dgv_Change.BackgroundColor = System.Drawing.Color.White;
            this.dgv_Change.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.SingleHorizontal;
            dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(161)))), ((int)(((byte)(164)))));
            dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.Window;
            dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.LightSkyBlue;
            dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dgv_Change.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
            this.dgv_Change.ColumnHeadersHeight = 30;
            this.dgv_Change.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
            this.dgv_Change.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.dataGridViewTextBoxColumn18,
            this.colEBELN,
            this.dataGridViewTextBoxColumn34,
            this.dataGridViewTextBoxColumn31,
            this.dataGridViewTextBoxColumn21,
            this.dataGridViewTextBoxColumn19,
            this.dataGridViewTextBoxColumn20,
            this.dataGridViewTextBoxColumn24,
            this.dataGridViewTextBoxColumn28,
            this.dataGridViewTextBoxColumn29,
            this.colAFNAM,
            this.dataGridViewTextBoxColumn30,
            this.dataGridViewTextBoxColumn32,
            this.dataGridViewTextBoxColumn33});
            dataGridViewCellStyle16.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle16.BackColor = System.Drawing.SystemColors.Window;
            dataGridViewCellStyle16.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            dataGridViewCellStyle16.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle16.Padding = new System.Windows.Forms.Padding(2, 1, 0, 1);
            dataGridViewCellStyle16.SelectionBackColor = System.Drawing.Color.PowderBlue;
            dataGridViewCellStyle16.SelectionForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle16.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dgv_Change.DefaultCellStyle = dataGridViewCellStyle16;
            this.dgv_Change.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dgv_Change.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
            this.dgv_Change.EnableHeadersVisualStyles = false;
            this.dgv_Change.Location = new System.Drawing.Point(0, 0);
            this.dgv_Change.Margin = new System.Windows.Forms.Padding(5);
            this.dgv_Change.MultiSelect = false;
            this.dgv_Change.Name = "dgv_Change";
            this.dgv_Change.RowHeadersVisible = false;
            this.dgv_Change.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
            this.dgv_Change.RowTemplate.Height = 45;
            this.dgv_Change.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.dgv_Change.Size = new System.Drawing.Size(1570, 429);
            this.dgv_Change.TabIndex = 8;
            this.dgv_Change.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgv_Change_CellDoubleClick);
            this.dgv_Change.RowPostPaint += new System.Windows.Forms.DataGridViewRowPostPaintEventHandler(this.dgv_Change_RowPostPaint);
            // 
            // dataGridViewTextBoxColumn18
            // 
            this.dataGridViewTextBoxColumn18.DataPropertyName = "IntRow2";
            dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.dataGridViewTextBoxColumn18.DefaultCellStyle = dataGridViewCellStyle3;
            this.dataGridViewTextBoxColumn18.HeaderText = "序号";
            this.dataGridViewTextBoxColumn18.Name = "dataGridViewTextBoxColumn18";
            this.dataGridViewTextBoxColumn18.ReadOnly = true;
            this.dataGridViewTextBoxColumn18.Width = 60;
            // 
            // colEBELN
            // 
            this.colEBELN.DataPropertyName = "EBELN";
            dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.colEBELN.DefaultCellStyle = dataGridViewCellStyle4;
            this.colEBELN.HeaderText = "采购订单号";
            this.colEBELN.Name = "colEBELN";
            this.colEBELN.ReadOnly = true;
            this.colEBELN.Width = 150;
            // 
            // dataGridViewTextBoxColumn34
            // 
            this.dataGridViewTextBoxColumn34.DataPropertyName = "EBELP";
            dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            this.dataGridViewTextBoxColumn34.DefaultCellStyle = dataGridViewCellStyle5;
            this.dataGridViewTextBoxColumn34.HeaderText = "行项目号";
            this.dataGridViewTextBoxColumn34.Name = "dataGridViewTextBoxColumn34";
            this.dataGridViewTextBoxColumn34.ReadOnly = true;
            // 
            // dataGridViewTextBoxColumn31
            // 
            this.dataGridViewTextBoxColumn31.DataPropertyName = "PTEXT";
            dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.dataGridViewTextBoxColumn31.DefaultCellStyle = dataGridViewCellStyle6;
            this.dataGridViewTextBoxColumn31.HeaderText = "类别";
            this.dataGridViewTextBoxColumn31.Name = "dataGridViewTextBoxColumn31";
            this.dataGridViewTextBoxColumn31.ReadOnly = true;
            // 
            // dataGridViewTextBoxColumn21
            // 
            this.dataGridViewTextBoxColumn21.DataPropertyName = "LIFNR";
            dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.dataGridViewTextBoxColumn21.DefaultCellStyle = dataGridViewCellStyle7;
            this.dataGridViewTextBoxColumn21.HeaderText = "供应商代码";
            this.dataGridViewTextBoxColumn21.Name = "dataGridViewTextBoxColumn21";
            this.dataGridViewTextBoxColumn21.ReadOnly = true;
            // 
            // dataGridViewTextBoxColumn19
            // 
            this.dataGridViewTextBoxColumn19.DataPropertyName = "MATNR";
            dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.dataGridViewTextBoxColumn19.DefaultCellStyle = dataGridViewCellStyle8;
            this.dataGridViewTextBoxColumn19.HeaderText = "物料号";
            this.dataGridViewTextBoxColumn19.Name = "dataGridViewTextBoxColumn19";
            this.dataGridViewTextBoxColumn19.ReadOnly = true;
            this.dataGridViewTextBoxColumn19.Width = 150;
            // 
            // dataGridViewTextBoxColumn20
            // 
            this.dataGridViewTextBoxColumn20.DataPropertyName = "MAKTX";
            dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            this.dataGridViewTextBoxColumn20.DefaultCellStyle = dataGridViewCellStyle9;
            this.dataGridViewTextBoxColumn20.HeaderText = "物料描述";
            this.dataGridViewTextBoxColumn20.Name = "dataGridViewTextBoxColumn20";
            this.dataGridViewTextBoxColumn20.ReadOnly = true;
            this.dataGridViewTextBoxColumn20.Width = 400;
            // 
            // dataGridViewTextBoxColumn24
            // 
            this.dataGridViewTextBoxColumn24.DataPropertyName = "MENG1";
            dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            this.dataGridViewTextBoxColumn24.DefaultCellStyle = dataGridViewCellStyle10;
            this.dataGridViewTextBoxColumn24.HeaderText = "待收货数量";
            this.dataGridViewTextBoxColumn24.Name = "dataGridViewTextBoxColumn24";
            this.dataGridViewTextBoxColumn24.ReadOnly = true;
            // 
            // dataGridViewTextBoxColumn28
            // 
            this.dataGridViewTextBoxColumn28.DataPropertyName = "MSEH1";
            dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.dataGridViewTextBoxColumn28.DefaultCellStyle = dataGridViewCellStyle11;
            this.dataGridViewTextBoxColumn28.HeaderText = "订货单位";
            this.dataGridViewTextBoxColumn28.Name = "dataGridViewTextBoxColumn28";
            this.dataGridViewTextBoxColumn28.ReadOnly = true;
            // 
            // dataGridViewTextBoxColumn29
            // 
            this.dataGridViewTextBoxColumn29.DataPropertyName = "MENGE";
            dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            this.dataGridViewTextBoxColumn29.DefaultCellStyle = dataGridViewCellStyle12;
            this.dataGridViewTextBoxColumn29.HeaderText = "采购数量";
            this.dataGridViewTextBoxColumn29.Name = "dataGridViewTextBoxColumn29";
            this.dataGridViewTextBoxColumn29.ReadOnly = true;
            // 
            // colAFNAM
            // 
            this.colAFNAM.DataPropertyName = "AFNAM";
            dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            this.colAFNAM.DefaultCellStyle = dataGridViewCellStyle13;
            this.colAFNAM.HeaderText = "需求者/请求者姓名";
            this.colAFNAM.Name = "colAFNAM";
            this.colAFNAM.ReadOnly = true;
            this.colAFNAM.Width = 200;
            // 
            // dataGridViewTextBoxColumn30
            // 
            this.dataGridViewTextBoxColumn30.DataPropertyName = "XCHPF";
            this.dataGridViewTextBoxColumn30.HeaderText = "是否批次管理";
            this.dataGridViewTextBoxColumn30.Name = "dataGridViewTextBoxColumn30";
            this.dataGridViewTextBoxColumn30.ReadOnly = true;
            this.dataGridViewTextBoxColumn30.Visible = false;
            this.dataGridViewTextBoxColumn30.Width = 120;
            // 
            // dataGridViewTextBoxColumn32
            // 
            this.dataGridViewTextBoxColumn32.DataPropertyName = "LIFN2";
            dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.dataGridViewTextBoxColumn32.DefaultCellStyle = dataGridViewCellStyle14;
            this.dataGridViewTextBoxColumn32.HeaderText = "结算供应商";
            this.dataGridViewTextBoxColumn32.Name = "dataGridViewTextBoxColumn32";
            this.dataGridViewTextBoxColumn32.ReadOnly = true;
            // 
            // dataGridViewTextBoxColumn33
            // 
            this.dataGridViewTextBoxColumn33.DataPropertyName = "ELIKZ";
            dataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.dataGridViewTextBoxColumn33.DefaultCellStyle = dataGridViewCellStyle15;
            this.dataGridViewTextBoxColumn33.HeaderText = "交货已完成";
            this.dataGridViewTextBoxColumn33.Name = "dataGridViewTextBoxColumn33";
            this.dataGridViewTextBoxColumn33.ReadOnly = true;
            // 
            // bindingSource1
            // 
            this.bindingSource1.DataSource = this.dataSet1;
            this.bindingSource1.Position = 0;
            // 
            // dataSet1
            // 
            this.dataSet1.DataSetName = "DataSet1";
            this.dataSet1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
            // 
            // reportViewer1
            // 
            this.reportViewer1.Location = new System.Drawing.Point(398, 10);
            this.reportViewer1.Name = "ReportViewer";
            this.reportViewer1.ServerReport.BearerToken = null;
            this.reportViewer1.Size = new System.Drawing.Size(396, 246);
            this.reportViewer1.TabIndex = 0;
            // 
            // dataGridViewTextBoxColumn1
            // 
            this.dataGridViewTextBoxColumn1.DataPropertyName = "IntRow";
            dataGridViewCellStyle17.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.dataGridViewTextBoxColumn1.DefaultCellStyle = dataGridViewCellStyle17;
            this.dataGridViewTextBoxColumn1.HeaderText = "序号";
            this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
            this.dataGridViewTextBoxColumn1.ReadOnly = true;
            this.dataGridViewTextBoxColumn1.Width = 60;
            // 
            // dataGridViewTextBoxColumn2
            // 
            this.dataGridViewTextBoxColumn2.DataPropertyName = "MATNR";
            dataGridViewCellStyle18.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.dataGridViewTextBoxColumn2.DefaultCellStyle = dataGridViewCellStyle18;
            this.dataGridViewTextBoxColumn2.HeaderText = "物料号";
            this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
            this.dataGridViewTextBoxColumn2.ReadOnly = true;
            this.dataGridViewTextBoxColumn2.Width = 130;
            // 
            // dataGridViewTextBoxColumn3
            // 
            this.dataGridViewTextBoxColumn3.DataPropertyName = "MAKTX";
            dataGridViewCellStyle19.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            this.dataGridViewTextBoxColumn3.DefaultCellStyle = dataGridViewCellStyle19;
            this.dataGridViewTextBoxColumn3.HeaderText = "物料名称";
            this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
            this.dataGridViewTextBoxColumn3.ReadOnly = true;
            this.dataGridViewTextBoxColumn3.Width = 400;
            // 
            // dataGridViewTextBoxColumn4
            // 
            this.dataGridViewTextBoxColumn4.DataPropertyName = "LIFNR";
            dataGridViewCellStyle20.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.dataGridViewTextBoxColumn4.DefaultCellStyle = dataGridViewCellStyle20;
            this.dataGridViewTextBoxColumn4.HeaderText = "供货供应商";
            this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
            this.dataGridViewTextBoxColumn4.ReadOnly = true;
            // 
            // dataGridViewTextBoxColumn5
            // 
            this.dataGridViewTextBoxColumn5.DataPropertyName = "Lot";
            dataGridViewCellStyle21.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.dataGridViewTextBoxColumn5.DefaultCellStyle = dataGridViewCellStyle21;
            this.dataGridViewTextBoxColumn5.HeaderText = "批次";
            this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
            this.dataGridViewTextBoxColumn5.Width = 150;
            // 
            // calendarColumn1
            // 
            this.calendarColumn1.DataPropertyName = "ExpireDate";
            dataGridViewCellStyle22.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.calendarColumn1.DefaultCellStyle = dataGridViewCellStyle22;
            this.calendarColumn1.HeaderText = "有效期";
            this.calendarColumn1.Name = "calendarColumn1";
            this.calendarColumn1.Resizable = System.Windows.Forms.DataGridViewTriState.True;
            this.calendarColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.calendarColumn1.Width = 150;
            // 
            // dataGridViewTextBoxColumn6
            // 
            this.dataGridViewTextBoxColumn6.DataPropertyName = "PrintCount";
            dataGridViewCellStyle23.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            this.dataGridViewTextBoxColumn6.DefaultCellStyle = dataGridViewCellStyle23;
            this.dataGridViewTextBoxColumn6.HeaderText = "打印次数";
            this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
            // 
            // dataGridViewTextBoxColumn7
            // 
            this.dataGridViewTextBoxColumn7.DataPropertyName = "MENG1";
            dataGridViewCellStyle24.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            this.dataGridViewTextBoxColumn7.DefaultCellStyle = dataGridViewCellStyle24;
            this.dataGridViewTextBoxColumn7.HeaderText = "待收货数量";
            this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
            this.dataGridViewTextBoxColumn7.ReadOnly = true;
            // 
            // dataGridViewTextBoxColumn8
            // 
            this.dataGridViewTextBoxColumn8.DataPropertyName = "hasRfidPrintCount";
            dataGridViewCellStyle25.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            this.dataGridViewTextBoxColumn8.DefaultCellStyle = dataGridViewCellStyle25;
            this.dataGridViewTextBoxColumn8.HeaderText = "已打印RFID标签数";
            this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
            this.dataGridViewTextBoxColumn8.ReadOnly = true;
            this.dataGridViewTextBoxColumn8.Width = 150;
            // 
            // dataGridViewTextBoxColumn9
            // 
            this.dataGridViewTextBoxColumn9.DataPropertyName = "IsRK";
            dataGridViewCellStyle26.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            dataGridViewCellStyle26.ForeColor = System.Drawing.Color.Red;
            this.dataGridViewTextBoxColumn9.DefaultCellStyle = dataGridViewCellStyle26;
            this.dataGridViewTextBoxColumn9.HeaderText = "是否入柜";
            this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9";
            this.dataGridViewTextBoxColumn9.ReadOnly = true;
            // 
            // dataGridViewTextBoxColumn10
            // 
            this.dataGridViewTextBoxColumn10.DataPropertyName = "MSEH1";
            dataGridViewCellStyle27.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.dataGridViewTextBoxColumn10.DefaultCellStyle = dataGridViewCellStyle27;
            this.dataGridViewTextBoxColumn10.HeaderText = "订货单位";
            this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10";
            this.dataGridViewTextBoxColumn10.ReadOnly = true;
            // 
            // dataGridViewTextBoxColumn11
            // 
            this.dataGridViewTextBoxColumn11.DataPropertyName = "MENGE";
            dataGridViewCellStyle28.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            this.dataGridViewTextBoxColumn11.DefaultCellStyle = dataGridViewCellStyle28;
            this.dataGridViewTextBoxColumn11.HeaderText = "采购数量";
            this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
            this.dataGridViewTextBoxColumn11.ReadOnly = true;
            // 
            // dataGridViewTextBoxColumn12
            // 
            this.dataGridViewTextBoxColumn12.DataPropertyName = "IsZR";
            dataGridViewCellStyle29.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.dataGridViewTextBoxColumn12.DefaultCellStyle = dataGridViewCellStyle29;
            this.dataGridViewTextBoxColumn12.HeaderText = "是否植入";
            this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
            this.dataGridViewTextBoxColumn12.ReadOnly = true;
            // 
            // dataGridViewTextBoxColumn13
            // 
            this.dataGridViewTextBoxColumn13.DataPropertyName = "XCHPF";
            this.dataGridViewTextBoxColumn13.HeaderText = "是否批次管理";
            this.dataGridViewTextBoxColumn13.Name = "dataGridViewTextBoxColumn13";
            this.dataGridViewTextBoxColumn13.ReadOnly = true;
            // 
            // dataGridViewTextBoxColumn14
            // 
            this.dataGridViewTextBoxColumn14.DataPropertyName = "PTEXT";
            dataGridViewCellStyle30.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.dataGridViewTextBoxColumn14.DefaultCellStyle = dataGridViewCellStyle30;
            this.dataGridViewTextBoxColumn14.HeaderText = "类别";
            this.dataGridViewTextBoxColumn14.Name = "dataGridViewTextBoxColumn14";
            this.dataGridViewTextBoxColumn14.ReadOnly = true;
            // 
            // dataGridViewTextBoxColumn15
            // 
            this.dataGridViewTextBoxColumn15.DataPropertyName = "LIFN2";
            dataGridViewCellStyle31.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.dataGridViewTextBoxColumn15.DefaultCellStyle = dataGridViewCellStyle31;
            this.dataGridViewTextBoxColumn15.HeaderText = "结算供应商";
            this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
            this.dataGridViewTextBoxColumn15.ReadOnly = true;
            // 
            // dataGridViewTextBoxColumn16
            // 
            this.dataGridViewTextBoxColumn16.DataPropertyName = "ELIKZ";
            dataGridViewCellStyle32.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.dataGridViewTextBoxColumn16.DefaultCellStyle = dataGridViewCellStyle32;
            this.dataGridViewTextBoxColumn16.HeaderText = "交货完成";
            this.dataGridViewTextBoxColumn16.Name = "dataGridViewTextBoxColumn16";
            this.dataGridViewTextBoxColumn16.ReadOnly = true;
            // 
            // dataGridViewTextBoxColumn17
            // 
            this.dataGridViewTextBoxColumn17.DataPropertyName = "EBELP";
            this.dataGridViewTextBoxColumn17.HeaderText = "SAP行号";
            this.dataGridViewTextBoxColumn17.Name = "dataGridViewTextBoxColumn17";
            this.dataGridViewTextBoxColumn17.ReadOnly = true;
            this.dataGridViewTextBoxColumn17.Visible = false;
            // 
            // panbottom
            // 
            this.panbottom.Controls.Add(this.panel2);
            this.panbottom.Controls.Add(this.panel1);
            this.panbottom.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panbottom.Location = new System.Drawing.Point(0, 489);
            this.panbottom.Name = "panbottom";
            this.panbottom.Size = new System.Drawing.Size(1570, 573);
            this.panbottom.TabIndex = 2;
            // 
            // panel2
            // 
            this.panel2.Controls.Add(this.chk_SelectAll);
            this.panel2.Controls.Add(this.dgv_PrintDetail);
            this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.panel2.Location = new System.Drawing.Point(0, 45);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(1570, 528);
            this.panel2.TabIndex = 9;
            // 
            // chk_SelectAll
            // 
            this.chk_SelectAll.AutoSize = true;
            this.chk_SelectAll.Location = new System.Drawing.Point(69, 11);
            this.chk_SelectAll.Name = "chk_SelectAll";
            this.chk_SelectAll.Size = new System.Drawing.Size(15, 14);
            this.chk_SelectAll.TabIndex = 9;
            this.chk_SelectAll.UseVisualStyleBackColor = true;
            this.chk_SelectAll.CheckedChanged += new System.EventHandler(this.chk_SelectAll_CheckedChanged);
            // 
            // dgv_PrintDetail
            // 
            this.dgv_PrintDetail.AllowUserToAddRows = false;
            this.dgv_PrintDetail.AllowUserToDeleteRows = false;
            this.dgv_PrintDetail.AllowUserToResizeColumns = false;
            this.dgv_PrintDetail.AllowUserToResizeRows = false;
            dataGridViewCellStyle33.BackColor = System.Drawing.Color.WhiteSmoke;
            this.dgv_PrintDetail.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle33;
            this.dgv_PrintDetail.BackgroundColor = System.Drawing.Color.White;
            this.dgv_PrintDetail.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.SingleHorizontal;
            dataGridViewCellStyle34.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            dataGridViewCellStyle34.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(79)))), ((int)(((byte)(161)))), ((int)(((byte)(164)))));
            dataGridViewCellStyle34.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            dataGridViewCellStyle34.ForeColor = System.Drawing.SystemColors.Window;
            dataGridViewCellStyle34.SelectionBackColor = System.Drawing.Color.LightSkyBlue;
            dataGridViewCellStyle34.SelectionForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle34.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dgv_PrintDetail.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle34;
            this.dgv_PrintDetail.ColumnHeadersHeight = 30;
            this.dgv_PrintDetail.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
            this.dgv_PrintDetail.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.colPrintRow,
            this.colIsCheck,
            this.colPrintEBELN,
            this.colPrintMATNR,
            this.colPrintMAKTX,
            this.colPrintXCHPF,
            this.colBWTTY,
            this.colPrintLot,
            this.colPrintExpireDate,
            this.colPrintCount,
            this.colLink,
            this.colPrintPTEXT,
            this.colPrintLIFNR,
            this.colPrintMENG1,
            this.colPrintIsRK,
            this.colPrintIsZR,
            this.colPrintMSEH1,
            this.colPrintMENGE,
            this.colPrintLIFN2,
            this.colPrintELIKZ,
            this.colPrintEBELP,
            this.colPrintIntRow});
            dataGridViewCellStyle53.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle53.BackColor = System.Drawing.SystemColors.Window;
            dataGridViewCellStyle53.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            dataGridViewCellStyle53.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle53.Padding = new System.Windows.Forms.Padding(2, 1, 0, 1);
            dataGridViewCellStyle53.SelectionBackColor = System.Drawing.Color.PowderBlue;
            dataGridViewCellStyle53.SelectionForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle53.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dgv_PrintDetail.DefaultCellStyle = dataGridViewCellStyle53;
            this.dgv_PrintDetail.Dock = System.Windows.Forms.DockStyle.Fill;
            this.dgv_PrintDetail.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
            this.dgv_PrintDetail.EnableHeadersVisualStyles = false;
            this.dgv_PrintDetail.Location = new System.Drawing.Point(0, 0);
            this.dgv_PrintDetail.Margin = new System.Windows.Forms.Padding(5);
            this.dgv_PrintDetail.MultiSelect = false;
            this.dgv_PrintDetail.Name = "dgv_PrintDetail";
            this.dgv_PrintDetail.RowHeadersVisible = false;
            this.dgv_PrintDetail.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
            this.dgv_PrintDetail.RowTemplate.Height = 45;
            this.dgv_PrintDetail.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
            this.dgv_PrintDetail.Size = new System.Drawing.Size(1570, 528);
            this.dgv_PrintDetail.TabIndex = 7;
            this.dgv_PrintDetail.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgv_PrintDetail_CellContentClick);
            this.dgv_PrintDetail.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgv_PrintDetail_CellValueChanged);
            this.dgv_PrintDetail.RowPostPaint += new System.Windows.Forms.DataGridViewRowPostPaintEventHandler(this.dgv_PrintDetail_RowPostPaint);
            // 
            // panel1
            // 
            this.panel1.Controls.Add(this.btnPtPrint);
            this.panel1.Controls.Add(this.btnRfidPrint);
            this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
            this.panel1.Location = new System.Drawing.Point(0, 0);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(1570, 45);
            this.panel1.TabIndex = 8;
            // 
            // colPrintRow
            // 
            this.colPrintRow.HeaderText = "序号";
            this.colPrintRow.Name = "colPrintRow";
            this.colPrintRow.ReadOnly = true;
            this.colPrintRow.Width = 60;
            // 
            // colIsCheck
            // 
            this.colIsCheck.DataPropertyName = "isCheck";
            this.colIsCheck.FalseValue = "false";
            this.colIsCheck.HeaderText = "";
            this.colIsCheck.Name = "colIsCheck";
            this.colIsCheck.Resizable = System.Windows.Forms.DataGridViewTriState.True;
            this.colIsCheck.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.colIsCheck.TrueValue = "true";
            this.colIsCheck.Width = 30;
            // 
            // colPrintEBELN
            // 
            this.colPrintEBELN.DataPropertyName = "EBELN";
            dataGridViewCellStyle35.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.colPrintEBELN.DefaultCellStyle = dataGridViewCellStyle35;
            this.colPrintEBELN.HeaderText = "采购订单号";
            this.colPrintEBELN.Name = "colPrintEBELN";
            this.colPrintEBELN.Width = 140;
            // 
            // colPrintMATNR
            // 
            this.colPrintMATNR.DataPropertyName = "MATNR";
            dataGridViewCellStyle36.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.colPrintMATNR.DefaultCellStyle = dataGridViewCellStyle36;
            this.colPrintMATNR.HeaderText = "物料号";
            this.colPrintMATNR.Name = "colPrintMATNR";
            this.colPrintMATNR.Width = 140;
            // 
            // colPrintMAKTX
            // 
            this.colPrintMAKTX.DataPropertyName = "MAKTX";
            dataGridViewCellStyle37.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            this.colPrintMAKTX.DefaultCellStyle = dataGridViewCellStyle37;
            this.colPrintMAKTX.HeaderText = "物料描述";
            this.colPrintMAKTX.Name = "colPrintMAKTX";
            this.colPrintMAKTX.Width = 400;
            // 
            // colPrintXCHPF
            // 
            this.colPrintXCHPF.DataPropertyName = "XCHPF";
            dataGridViewCellStyle38.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.colPrintXCHPF.DefaultCellStyle = dataGridViewCellStyle38;
            this.colPrintXCHPF.HeaderText = "批次管理";
            this.colPrintXCHPF.Name = "colPrintXCHPF";
            this.colPrintXCHPF.ReadOnly = true;
            this.colPrintXCHPF.Width = 90;
            // 
            // colBWTTY
            // 
            this.colBWTTY.DataPropertyName = "BWTTY";
            dataGridViewCellStyle39.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.colBWTTY.DefaultCellStyle = dataGridViewCellStyle39;
            this.colBWTTY.HeaderText = "评估类别";
            this.colBWTTY.Name = "colBWTTY";
            this.colBWTTY.ReadOnly = true;
            this.colBWTTY.Width = 90;
            // 
            // colPrintLot
            // 
            this.colPrintLot.DataPropertyName = "Lot";
            dataGridViewCellStyle40.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.colPrintLot.DefaultCellStyle = dataGridViewCellStyle40;
            this.colPrintLot.HeaderText = "批次";
            this.colPrintLot.Name = "colPrintLot";
            this.colPrintLot.Width = 150;
            // 
            // colPrintExpireDate
            // 
            this.colPrintExpireDate.DataPropertyName = "ExpireDate";
            dataGridViewCellStyle41.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.colPrintExpireDate.DefaultCellStyle = dataGridViewCellStyle41;
            this.colPrintExpireDate.HeaderText = "有效期";
            this.colPrintExpireDate.Name = "colPrintExpireDate";
            this.colPrintExpireDate.Resizable = System.Windows.Forms.DataGridViewTriState.True;
            this.colPrintExpireDate.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.colPrintExpireDate.Width = 150;
            // 
            // colPrintCount
            // 
            this.colPrintCount.DataPropertyName = "PrintCount";
            dataGridViewCellStyle42.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            this.colPrintCount.DefaultCellStyle = dataGridViewCellStyle42;
            this.colPrintCount.HeaderText = "打印数量";
            this.colPrintCount.Name = "colPrintCount";
            this.colPrintCount.Width = 90;
            // 
            // colLink
            // 
            this.colLink.DataPropertyName = "Link";
            dataGridViewCellStyle43.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.colLink.DefaultCellStyle = dataGridViewCellStyle43;
            this.colLink.HeaderText = "操作";
            this.colLink.LinkColor = System.Drawing.Color.Red;
            this.colLink.Name = "colLink";
            this.colLink.Text = "删除";
            // 
            // colPrintPTEXT
            // 
            this.colPrintPTEXT.DataPropertyName = "PTEXT";
            dataGridViewCellStyle44.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.colPrintPTEXT.DefaultCellStyle = dataGridViewCellStyle44;
            this.colPrintPTEXT.HeaderText = "类别";
            this.colPrintPTEXT.Name = "colPrintPTEXT";
            this.colPrintPTEXT.ReadOnly = true;
            this.colPrintPTEXT.Width = 60;
            // 
            // colPrintLIFNR
            // 
            this.colPrintLIFNR.DataPropertyName = "LIFNR";
            dataGridViewCellStyle45.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.colPrintLIFNR.DefaultCellStyle = dataGridViewCellStyle45;
            this.colPrintLIFNR.HeaderText = "供货供应商";
            this.colPrintLIFNR.Name = "colPrintLIFNR";
            this.colPrintLIFNR.ReadOnly = true;
            // 
            // colPrintMENG1
            // 
            this.colPrintMENG1.DataPropertyName = "MENG1";
            dataGridViewCellStyle46.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            this.colPrintMENG1.DefaultCellStyle = dataGridViewCellStyle46;
            this.colPrintMENG1.HeaderText = "待收货数量";
            this.colPrintMENG1.Name = "colPrintMENG1";
            this.colPrintMENG1.ReadOnly = true;
            // 
            // colPrintIsRK
            // 
            this.colPrintIsRK.DataPropertyName = "IsRK";
            dataGridViewCellStyle47.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            dataGridViewCellStyle47.ForeColor = System.Drawing.Color.Red;
            this.colPrintIsRK.DefaultCellStyle = dataGridViewCellStyle47;
            this.colPrintIsRK.HeaderText = "是否入柜";
            this.colPrintIsRK.Name = "colPrintIsRK";
            this.colPrintIsRK.ReadOnly = true;
            // 
            // colPrintIsZR
            // 
            this.colPrintIsZR.DataPropertyName = "IsZR";
            dataGridViewCellStyle48.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.colPrintIsZR.DefaultCellStyle = dataGridViewCellStyle48;
            this.colPrintIsZR.HeaderText = "是否植入";
            this.colPrintIsZR.Name = "colPrintIsZR";
            this.colPrintIsZR.ReadOnly = true;
            // 
            // colPrintMSEH1
            // 
            this.colPrintMSEH1.DataPropertyName = "MSEH1";
            dataGridViewCellStyle49.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.colPrintMSEH1.DefaultCellStyle = dataGridViewCellStyle49;
            this.colPrintMSEH1.HeaderText = "订货单位";
            this.colPrintMSEH1.Name = "colPrintMSEH1";
            this.colPrintMSEH1.ReadOnly = true;
            this.colPrintMSEH1.Visible = false;
            // 
            // colPrintMENGE
            // 
            this.colPrintMENGE.DataPropertyName = "MENGE";
            dataGridViewCellStyle50.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
            this.colPrintMENGE.DefaultCellStyle = dataGridViewCellStyle50;
            this.colPrintMENGE.HeaderText = "采购数量";
            this.colPrintMENGE.Name = "colPrintMENGE";
            this.colPrintMENGE.ReadOnly = true;
            this.colPrintMENGE.Visible = false;
            // 
            // colPrintLIFN2
            // 
            this.colPrintLIFN2.DataPropertyName = "LIFN2";
            dataGridViewCellStyle51.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.colPrintLIFN2.DefaultCellStyle = dataGridViewCellStyle51;
            this.colPrintLIFN2.HeaderText = "结算供应商";
            this.colPrintLIFN2.Name = "colPrintLIFN2";
            this.colPrintLIFN2.ReadOnly = true;
            this.colPrintLIFN2.Visible = false;
            // 
            // colPrintELIKZ
            // 
            this.colPrintELIKZ.DataPropertyName = "ELIKZ";
            dataGridViewCellStyle52.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
            this.colPrintELIKZ.DefaultCellStyle = dataGridViewCellStyle52;
            this.colPrintELIKZ.HeaderText = "交货完成";
            this.colPrintELIKZ.Name = "colPrintELIKZ";
            this.colPrintELIKZ.ReadOnly = true;
            this.colPrintELIKZ.Visible = false;
            // 
            // colPrintEBELP
            // 
            this.colPrintEBELP.DataPropertyName = "EBELP";
            this.colPrintEBELP.HeaderText = "SAP行号";
            this.colPrintEBELP.Name = "colPrintEBELP";
            this.colPrintEBELP.ReadOnly = true;
            this.colPrintEBELP.Visible = false;
            // 
            // colPrintIntRow
            // 
            this.colPrintIntRow.DataPropertyName = "WvDetailGuid";
            this.colPrintIntRow.HeaderText = "唯一主键";
            this.colPrintIntRow.Name = "colPrintIntRow";
            this.colPrintIntRow.ReadOnly = true;
            // 
            // YxyyChangeWvDetail
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1570, 1062);
            this.Controls.Add(this.panbottom);
            this.Controls.Add(this.panCenter);
            this.Controls.Add(this.panTop);
            this.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.Margin = new System.Windows.Forms.Padding(5);
            this.Name = "YxyyChangeWvDetail";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "物料二维码标签打印_详情";
            this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
            this.panTop.ResumeLayout(false);
            this.panTop.PerformLayout();
            this.panCenter.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.dgv_Change)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.bindingSource1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
            this.panbottom.ResumeLayout(false);
            this.panel2.ResumeLayout(false);
            this.panel2.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dgv_PrintDetail)).EndInit();
            this.panel1.ResumeLayout(false);
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.Panel panTop;
        private System.Windows.Forms.Panel panCenter;
        private System.Windows.Forms.TextBox txtmeddeptguid;
        private System.Windows.Forms.Label lblmeddeptguid;
        private System.Windows.Forms.Label lblmedstoreguid;
        private System.Windows.Forms.TextBox txtmedstoreguid;
        private System.Windows.Forms.Button btnRfidPrint;
        private System.Windows.Forms.Button btnPtPrint;
        private System.Windows.Forms.BindingSource bindingSource1;
        private DataSet1 dataSet1;
        private Microsoft.Reporting.WinForms.ReportViewer reportViewer1;
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn4;
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn5;
        private TabControlEx.CalendarColumn calendarColumn1;
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn6;
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn7;
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn8;
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn9;
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn10;
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn11;
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn12;
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn13;
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn14;
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn15;
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn16;
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn17;
        private System.Windows.Forms.Panel panbottom;
        private System.Windows.Forms.Label lblbillNo;
        private System.Windows.Forms.TextBox txtSupplierno;
        private System.Windows.Forms.DataGridView dgv_PrintDetail;
        private System.Windows.Forms.Panel panel1;
        private System.Windows.Forms.Panel panel2;
        private System.Windows.Forms.CheckBox chk_SelectAll;
        private System.Windows.Forms.DataGridView dgv_Change;
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.TextBox txtBillno;
        private System.Windows.Forms.Button btnSelect;
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn18;
        private System.Windows.Forms.DataGridViewTextBoxColumn colEBELN;
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn34;
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn31;
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn21;
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn19;
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn20;
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn24;
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn28;
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn29;
        private System.Windows.Forms.DataGridViewTextBoxColumn colAFNAM;
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn30;
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn32;
        private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn33;
        private System.Windows.Forms.DataGridViewTextBoxColumn colPrintRow;
        private System.Windows.Forms.DataGridViewCheckBoxColumn colIsCheck;
        private System.Windows.Forms.DataGridViewTextBoxColumn colPrintEBELN;
        private System.Windows.Forms.DataGridViewTextBoxColumn colPrintMATNR;
        private System.Windows.Forms.DataGridViewTextBoxColumn colPrintMAKTX;
        private System.Windows.Forms.DataGridViewTextBoxColumn colPrintXCHPF;
        private System.Windows.Forms.DataGridViewTextBoxColumn colBWTTY;
        private System.Windows.Forms.DataGridViewTextBoxColumn colPrintLot;
        private TabControlEx.CalendarColumn colPrintExpireDate;
        private System.Windows.Forms.DataGridViewTextBoxColumn colPrintCount;
        private System.Windows.Forms.DataGridViewLinkColumn colLink;
        private System.Windows.Forms.DataGridViewTextBoxColumn colPrintPTEXT;
        private System.Windows.Forms.DataGridViewTextBoxColumn colPrintLIFNR;
        private System.Windows.Forms.DataGridViewTextBoxColumn colPrintMENG1;
        private System.Windows.Forms.DataGridViewTextBoxColumn colPrintIsRK;
        private System.Windows.Forms.DataGridViewTextBoxColumn colPrintIsZR;
        private System.Windows.Forms.DataGridViewTextBoxColumn colPrintMSEH1;
        private System.Windows.Forms.DataGridViewTextBoxColumn colPrintMENGE;
        private System.Windows.Forms.DataGridViewTextBoxColumn colPrintLIFN2;
        private System.Windows.Forms.DataGridViewTextBoxColumn colPrintELIKZ;
        private System.Windows.Forms.DataGridViewTextBoxColumn colPrintEBELP;
        private System.Windows.Forms.DataGridViewTextBoxColumn colPrintIntRow;
    }
}