| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854 |
- namespace UAS_MES.Query
- {
- partial class Query_MakeInf
- {
- /// <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()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Query_MakeInf));
- this.label1_lll_ = new System.Windows.Forms.Label();
- this.Carft = new System.Windows.Forms.DataGridView();
- this.BOM = new System.Windows.Forms.DataGridView();
- this.Label = new System.Windows.Forms.DataGridView();
- this.label16_lll_ = new System.Windows.Forms.Label();
- this.label17_ll_ = new System.Windows.Forms.Label();
- this.label18_la_ll = new System.Windows.Forms.Label();
- this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewCheckBoxColumn1 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewCheckBoxColumn2 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewCheckBoxColumn3 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewCheckBoxColumn4 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewCheckBoxColumn5 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewCheckBoxColumn6 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewCheckBoxColumn7 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewCheckBoxColumn8 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewCheckBoxColumn9 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewCheckBoxColumn10 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewCheckBoxColumn11 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewCheckBoxColumn12 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewCheckBoxColumn13 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewCheckBoxColumn14 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewCheckBoxColumn15 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewCheckBoxColumn16 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewCheckBoxColumn17 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewCheckBoxColumn18 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- 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.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.dataGridViewTextBoxColumn18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn24 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn25 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn26 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn27 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn28 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn29 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn30 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn31 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.LA_CODE = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.LA_NAME = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.LA_STATUS = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.LA_INDATE = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.LA_INMAN = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.LA_PRINTNOS = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.LA_URL = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.LA_ISDEFAULT = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.LA_TEMPLATETYPE = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.LA_SOFTTYPE = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.LA_PRODCODE = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.SP_MOTHERCODE = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.SP_SONCODE = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.SP_STEPCODE = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.SP_REPCODE = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.SP_TYPE = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.SP_DESCRIPTION = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.SP_DETNO = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.SP_PREFIX = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.SP_TRACEKIND = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.SP_LENGTH = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.SP_ONEUSEQTY = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.SP_UPDATEMAN = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.SP_UPDATEDATE = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.CD_STEPNO = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.CD_IFINPUT = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.CD_IFOUTPUT = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.CD_IFTEST = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.CD_IFSNCHANGE = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.CD_IFOQC = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.CD_IFPACK = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.CD_IFREPAIR = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.CD_IFOUTLINE = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.CD_IFSMTINOUT = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.CD_IFSPC = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.CD_IFREDUCE = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.CD_IFMIDFINISH = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.CD_IFMIDINPUT = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.CD_IFBURNIN = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.CD_IFBURNOUT = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.CD_IFWEIGH = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.CD_FIRSTSTEP = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.CD_IFOFFLINE = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.CD_DETNO = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.CD_STEPCODE = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.CD_STEPNAME = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.CD_NEXTSTEPCODE = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.CD_NEXTSTEPNAME = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.CD_TABLE = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.groupBoxWithBorder1 = new UAS_MES.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
- this.aftersnqty = new System.Windows.Forms.Label();
- this.aftersnqty_label_ = new System.Windows.Forms.Label();
- this.AfterSnRange = new System.Windows.Forms.Label();
- this.AfterSnRange_label_ = new System.Windows.Forms.Label();
- this.beforesnqty = new System.Windows.Forms.Label();
- this.beforesnqty_label_ = new System.Windows.Forms.Label();
- this.BeforeSnRange = new System.Windows.Forms.Label();
- this.BeforeSnRange_label_label = new System.Windows.Forms.Label();
- this.IMEINum = new System.Windows.Forms.Label();
- this.label3_label_label = new System.Windows.Forms.Label();
- this.BTNum = new System.Windows.Forms.Label();
- this.label13_label_label = new System.Windows.Forms.Label();
- this.MacNum = new System.Windows.Forms.Label();
- this.Mac_label_label = new System.Windows.Forms.Label();
- this.Product = new UAS_MES.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
- this.pr_cartonweight = new System.Windows.Forms.Label();
- this.pr_cartonweight_label = new System.Windows.Forms.Label();
- this.pr_colorboxweight = new System.Windows.Forms.Label();
- this.pr_colorboxweight_label = new System.Windows.Forms.Label();
- this.pr_agingtime = new System.Windows.Forms.Label();
- this.pr_agingtime_label = new System.Windows.Forms.Label();
- this.pr_outboxinnerqty = new System.Windows.Forms.Label();
- this.pr_outboxinnerqty_label = new System.Windows.Forms.Label();
- this.pr_sendchecktype = new System.Windows.Forms.Label();
- this.pr_sendchecktype_label = new System.Windows.Forms.Label();
- this.pr_detail = new System.Windows.Forms.Label();
- this.pr_detail_label = new System.Windows.Forms.Label();
- this.pr_code = new System.Windows.Forms.Label();
- this.pr_code_label = new System.Windows.Forms.Label();
- this.MakeInf = new UAS_MES.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
- this.ma_unlimitageqty = new System.Windows.Forms.Label();
- this.ma_unlimitageqty_label = new System.Windows.Forms.Label();
- this.ma_bomversion = new System.Windows.Forms.Label();
- this.ma_bomversion_label = new System.Windows.Forms.Label();
- this.ma_qty = new System.Windows.Forms.Label();
- this.ma_qty_label = new System.Windows.Forms.Label();
- this.ma_softversion = new System.Windows.Forms.Label();
- this.ma_softversion_label = new System.Windows.Forms.Label();
- this.ma_wccode = new System.Windows.Forms.Label();
- this.ma_wccode_label = new System.Windows.Forms.Label();
- this.ma_custname = new System.Windows.Forms.Label();
- this.ma_custname_label = new System.Windows.Forms.Label();
- this.ma_salecode = new System.Windows.Forms.Label();
- this.ma_salecode_label = new System.Windows.Forms.Label();
- this.Search = new UAS_MES.CustomControl.ButtonUtil.NormalButton();
- this.MakeCode = new UAS_MES.CustomControl.TextBoxWithIcon.SnCollectionBox();
- ((System.ComponentModel.ISupportInitialize)(this.Carft)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.BOM)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.Label)).BeginInit();
- this.groupBoxWithBorder1.SuspendLayout();
- this.Product.SuspendLayout();
- this.MakeInf.SuspendLayout();
- this.SuspendLayout();
- //
- // label1_lll_
- //
- this.label1_lll_.AutoSize = true;
- this.label1_lll_.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label1_lll_.Location = new System.Drawing.Point(34, 7);
- this.label1_lll_.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label1_lll_.Name = "label1_lll_";
- this.label1_lll_.Size = new System.Drawing.Size(58, 21);
- this.label1_lll_.TabIndex = 0;
- this.label1_lll_.Text = "工单号";
- //
- // Carft
- //
- this.Carft.AllowUserToAddRows = false;
- this.Carft.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.Carft.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.CD_STEPNO,
- this.CD_IFINPUT,
- this.CD_IFOUTPUT,
- this.CD_IFTEST,
- this.CD_IFSNCHANGE,
- this.CD_IFOQC,
- this.CD_IFPACK,
- this.CD_IFREPAIR,
- this.CD_IFOUTLINE,
- this.CD_IFSMTINOUT,
- this.CD_IFSPC,
- this.CD_IFREDUCE,
- this.CD_IFMIDFINISH,
- this.CD_IFMIDINPUT,
- this.CD_IFBURNIN,
- this.CD_IFBURNOUT,
- this.CD_IFWEIGH,
- this.CD_FIRSTSTEP,
- this.CD_IFOFFLINE,
- this.CD_DETNO,
- this.CD_STEPCODE,
- this.CD_STEPNAME,
- this.CD_NEXTSTEPCODE,
- this.CD_NEXTSTEPNAME,
- this.CD_TABLE});
- this.Carft.Location = new System.Drawing.Point(31, 313);
- this.Carft.Margin = new System.Windows.Forms.Padding(2);
- this.Carft.Name = "Carft";
- this.Carft.ReadOnly = true;
- this.Carft.RowTemplate.Height = 27;
- this.Carft.Size = new System.Drawing.Size(886, 222);
- this.Carft.TabIndex = 20;
- //
- // BOM
- //
- this.BOM.AllowUserToAddRows = false;
- this.BOM.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.BOM.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.SP_MOTHERCODE,
- this.SP_SONCODE,
- this.SP_STEPCODE,
- this.SP_REPCODE,
- this.SP_TYPE,
- this.SP_DESCRIPTION,
- this.SP_DETNO,
- this.SP_PREFIX,
- this.SP_TRACEKIND,
- this.SP_LENGTH,
- this.SP_ONEUSEQTY,
- this.SP_UPDATEMAN,
- this.SP_UPDATEDATE});
- this.BOM.Location = new System.Drawing.Point(31, 540);
- this.BOM.Margin = new System.Windows.Forms.Padding(2);
- this.BOM.Name = "BOM";
- this.BOM.ReadOnly = true;
- this.BOM.RowTemplate.Height = 27;
- this.BOM.Size = new System.Drawing.Size(886, 174);
- this.BOM.TabIndex = 21;
- //
- // Label
- //
- this.Label.AllowUserToAddRows = false;
- this.Label.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.Label.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.LA_CODE,
- this.LA_NAME,
- this.LA_STATUS,
- this.LA_INDATE,
- this.LA_INMAN,
- this.LA_PRINTNOS,
- this.LA_URL,
- this.LA_ISDEFAULT,
- this.LA_TEMPLATETYPE,
- this.LA_SOFTTYPE,
- this.LA_PRODCODE});
- this.Label.Location = new System.Drawing.Point(31, 721);
- this.Label.Margin = new System.Windows.Forms.Padding(2);
- this.Label.Name = "Label";
- this.Label.ReadOnly = true;
- this.Label.RowTemplate.Height = 27;
- this.Label.Size = new System.Drawing.Size(886, 139);
- this.Label.TabIndex = 22;
- //
- // label16_lll_
- //
- this.label16_lll_.AutoSize = true;
- this.label16_lll_.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label16_lll_.Location = new System.Drawing.Point(2, 389);
- this.label16_lll_.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label16_lll_.MaximumSize = new System.Drawing.Size(26, 0);
- this.label16_lll_.Name = "label16_lll_";
- this.label16_lll_.Size = new System.Drawing.Size(26, 84);
- this.label16_lll_.TabIndex = 23;
- this.label16_lll_.Text = "产品途程";
- //
- // label17_ll_
- //
- this.label17_ll_.AutoSize = true;
- this.label17_ll_.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label17_ll_.Location = new System.Drawing.Point(2, 570);
- this.label17_ll_.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label17_ll_.MaximumSize = new System.Drawing.Size(26, 0);
- this.label17_ll_.Name = "label17_ll_";
- this.label17_ll_.Size = new System.Drawing.Size(26, 105);
- this.label17_ll_.TabIndex = 24;
- this.label17_ll_.Text = "工序BOM";
- //
- // label18_la_ll
- //
- this.label18_la_ll.AutoSize = true;
- this.label18_la_ll.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label18_la_ll.Location = new System.Drawing.Point(2, 742);
- this.label18_la_ll.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label18_la_ll.MaximumSize = new System.Drawing.Size(26, 0);
- this.label18_la_ll.Name = "label18_la_ll";
- this.label18_la_ll.Size = new System.Drawing.Size(26, 84);
- this.label18_la_ll.TabIndex = 25;
- this.label18_la_ll.Text = "标签信息";
- //
- // dataGridViewTextBoxColumn1
- //
- this.dataGridViewTextBoxColumn1.DataPropertyName = "CD_STEPNO";
- this.dataGridViewTextBoxColumn1.HeaderText = "执行顺序";
- this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
- this.dataGridViewTextBoxColumn1.ReadOnly = true;
- //
- // dataGridViewCheckBoxColumn1
- //
- this.dataGridViewCheckBoxColumn1.DataPropertyName = "CD_IFINPUT";
- this.dataGridViewCheckBoxColumn1.HeaderText = "上料工序";
- this.dataGridViewCheckBoxColumn1.Name = "dataGridViewCheckBoxColumn1";
- this.dataGridViewCheckBoxColumn1.ReadOnly = true;
- this.dataGridViewCheckBoxColumn1.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dataGridViewCheckBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- //
- // dataGridViewCheckBoxColumn2
- //
- this.dataGridViewCheckBoxColumn2.DataPropertyName = "CD_IFOUTPUT";
- this.dataGridViewCheckBoxColumn2.HeaderText = "下料工序";
- this.dataGridViewCheckBoxColumn2.Name = "dataGridViewCheckBoxColumn2";
- this.dataGridViewCheckBoxColumn2.ReadOnly = true;
- this.dataGridViewCheckBoxColumn2.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dataGridViewCheckBoxColumn2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- //
- // dataGridViewCheckBoxColumn3
- //
- this.dataGridViewCheckBoxColumn3.DataPropertyName = "CD_IFTEST";
- this.dataGridViewCheckBoxColumn3.HeaderText = "测试工序";
- this.dataGridViewCheckBoxColumn3.Name = "dataGridViewCheckBoxColumn3";
- this.dataGridViewCheckBoxColumn3.ReadOnly = true;
- this.dataGridViewCheckBoxColumn3.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dataGridViewCheckBoxColumn3.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- //
- // dataGridViewCheckBoxColumn4
- //
- this.dataGridViewCheckBoxColumn4.DataPropertyName = "CD_IFSNCHANGE";
- this.dataGridViewCheckBoxColumn4.HeaderText = "序号转换工序";
- this.dataGridViewCheckBoxColumn4.Name = "dataGridViewCheckBoxColumn4";
- this.dataGridViewCheckBoxColumn4.ReadOnly = true;
- this.dataGridViewCheckBoxColumn4.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dataGridViewCheckBoxColumn4.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- this.dataGridViewCheckBoxColumn4.Width = 150;
- //
- // dataGridViewCheckBoxColumn5
- //
- this.dataGridViewCheckBoxColumn5.DataPropertyName = "CD_IFOQC";
- this.dataGridViewCheckBoxColumn5.HeaderText = "OQC工序";
- this.dataGridViewCheckBoxColumn5.Name = "dataGridViewCheckBoxColumn5";
- this.dataGridViewCheckBoxColumn5.ReadOnly = true;
- this.dataGridViewCheckBoxColumn5.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dataGridViewCheckBoxColumn5.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- //
- // dataGridViewCheckBoxColumn6
- //
- this.dataGridViewCheckBoxColumn6.DataPropertyName = "CD_IFPACK";
- this.dataGridViewCheckBoxColumn6.HeaderText = "包装工序";
- this.dataGridViewCheckBoxColumn6.Name = "dataGridViewCheckBoxColumn6";
- this.dataGridViewCheckBoxColumn6.ReadOnly = true;
- this.dataGridViewCheckBoxColumn6.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dataGridViewCheckBoxColumn6.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- //
- // dataGridViewCheckBoxColumn7
- //
- this.dataGridViewCheckBoxColumn7.DataPropertyName = "CD_IFREPAIR";
- this.dataGridViewCheckBoxColumn7.HeaderText = "维修工序";
- this.dataGridViewCheckBoxColumn7.Name = "dataGridViewCheckBoxColumn7";
- this.dataGridViewCheckBoxColumn7.ReadOnly = true;
- this.dataGridViewCheckBoxColumn7.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dataGridViewCheckBoxColumn7.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- //
- // dataGridViewCheckBoxColumn8
- //
- this.dataGridViewCheckBoxColumn8.DataPropertyName = "CD_IFOUTLINE";
- this.dataGridViewCheckBoxColumn8.HeaderText = "线外工序";
- this.dataGridViewCheckBoxColumn8.Name = "dataGridViewCheckBoxColumn8";
- this.dataGridViewCheckBoxColumn8.ReadOnly = true;
- this.dataGridViewCheckBoxColumn8.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dataGridViewCheckBoxColumn8.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- //
- // dataGridViewCheckBoxColumn9
- //
- this.dataGridViewCheckBoxColumn9.DataPropertyName = "CD_IFSMTINOUT";
- this.dataGridViewCheckBoxColumn9.HeaderText = "SMT防呆工序";
- this.dataGridViewCheckBoxColumn9.Name = "dataGridViewCheckBoxColumn9";
- this.dataGridViewCheckBoxColumn9.ReadOnly = true;
- this.dataGridViewCheckBoxColumn9.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dataGridViewCheckBoxColumn9.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- this.dataGridViewCheckBoxColumn9.Width = 150;
- //
- // dataGridViewCheckBoxColumn10
- //
- this.dataGridViewCheckBoxColumn10.DataPropertyName = "CD_IFSPC";
- this.dataGridViewCheckBoxColumn10.HeaderText = "SPC工序";
- this.dataGridViewCheckBoxColumn10.Name = "dataGridViewCheckBoxColumn10";
- this.dataGridViewCheckBoxColumn10.ReadOnly = true;
- this.dataGridViewCheckBoxColumn10.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dataGridViewCheckBoxColumn10.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- //
- // dataGridViewCheckBoxColumn11
- //
- this.dataGridViewCheckBoxColumn11.DataPropertyName = "CD_IFREDUCE";
- this.dataGridViewCheckBoxColumn11.HeaderText = "扣料工序";
- this.dataGridViewCheckBoxColumn11.Name = "dataGridViewCheckBoxColumn11";
- this.dataGridViewCheckBoxColumn11.ReadOnly = true;
- this.dataGridViewCheckBoxColumn11.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dataGridViewCheckBoxColumn11.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- //
- // dataGridViewCheckBoxColumn12
- //
- this.dataGridViewCheckBoxColumn12.DataPropertyName = "CD_IFMIDFINISH";
- this.dataGridViewCheckBoxColumn12.HeaderText = "中间产量工序";
- this.dataGridViewCheckBoxColumn12.Name = "dataGridViewCheckBoxColumn12";
- this.dataGridViewCheckBoxColumn12.ReadOnly = true;
- this.dataGridViewCheckBoxColumn12.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dataGridViewCheckBoxColumn12.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- this.dataGridViewCheckBoxColumn12.Width = 150;
- //
- // dataGridViewCheckBoxColumn13
- //
- this.dataGridViewCheckBoxColumn13.DataPropertyName = "CD_IFMIDINPUT";
- this.dataGridViewCheckBoxColumn13.HeaderText = "中间投入工序";
- this.dataGridViewCheckBoxColumn13.Name = "dataGridViewCheckBoxColumn13";
- this.dataGridViewCheckBoxColumn13.ReadOnly = true;
- this.dataGridViewCheckBoxColumn13.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dataGridViewCheckBoxColumn13.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- this.dataGridViewCheckBoxColumn13.Width = 150;
- //
- // dataGridViewCheckBoxColumn14
- //
- this.dataGridViewCheckBoxColumn14.DataPropertyName = "CD_IFBURNIN";
- this.dataGridViewCheckBoxColumn14.HeaderText = "BURNIN工序";
- this.dataGridViewCheckBoxColumn14.Name = "dataGridViewCheckBoxColumn14";
- this.dataGridViewCheckBoxColumn14.ReadOnly = true;
- this.dataGridViewCheckBoxColumn14.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dataGridViewCheckBoxColumn14.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- this.dataGridViewCheckBoxColumn14.Width = 150;
- //
- // dataGridViewCheckBoxColumn15
- //
- this.dataGridViewCheckBoxColumn15.DataPropertyName = "CD_IFBURNOUT";
- this.dataGridViewCheckBoxColumn15.HeaderText = "BURNOUT工序";
- this.dataGridViewCheckBoxColumn15.Name = "dataGridViewCheckBoxColumn15";
- this.dataGridViewCheckBoxColumn15.ReadOnly = true;
- this.dataGridViewCheckBoxColumn15.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dataGridViewCheckBoxColumn15.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- this.dataGridViewCheckBoxColumn15.Width = 150;
- //
- // dataGridViewCheckBoxColumn16
- //
- this.dataGridViewCheckBoxColumn16.DataPropertyName = "CD_IFWEIGH";
- this.dataGridViewCheckBoxColumn16.HeaderText = "是否称重";
- this.dataGridViewCheckBoxColumn16.Name = "dataGridViewCheckBoxColumn16";
- this.dataGridViewCheckBoxColumn16.ReadOnly = true;
- this.dataGridViewCheckBoxColumn16.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dataGridViewCheckBoxColumn16.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- //
- // dataGridViewCheckBoxColumn17
- //
- this.dataGridViewCheckBoxColumn17.DataPropertyName = "CD_FIRSTSTEP";
- this.dataGridViewCheckBoxColumn17.HeaderText = "是否第一道工序";
- this.dataGridViewCheckBoxColumn17.Name = "dataGridViewCheckBoxColumn17";
- this.dataGridViewCheckBoxColumn17.ReadOnly = true;
- this.dataGridViewCheckBoxColumn17.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dataGridViewCheckBoxColumn17.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- this.dataGridViewCheckBoxColumn17.Width = 150;
- //
- // dataGridViewCheckBoxColumn18
- //
- this.dataGridViewCheckBoxColumn18.DataPropertyName = "CD_IFOFFLINE";
- this.dataGridViewCheckBoxColumn18.HeaderText = "下线工序";
- this.dataGridViewCheckBoxColumn18.Name = "dataGridViewCheckBoxColumn18";
- this.dataGridViewCheckBoxColumn18.ReadOnly = true;
- this.dataGridViewCheckBoxColumn18.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dataGridViewCheckBoxColumn18.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- //
- // dataGridViewTextBoxColumn2
- //
- this.dataGridViewTextBoxColumn2.DataPropertyName = "CD_DETNO";
- this.dataGridViewTextBoxColumn2.HeaderText = "序号";
- this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
- this.dataGridViewTextBoxColumn2.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn3
- //
- this.dataGridViewTextBoxColumn3.DataPropertyName = "CD_STEPCODE";
- this.dataGridViewTextBoxColumn3.HeaderText = "工序编号";
- this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
- this.dataGridViewTextBoxColumn3.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn4
- //
- this.dataGridViewTextBoxColumn4.DataPropertyName = "CD_STEPNAME";
- this.dataGridViewTextBoxColumn4.HeaderText = "工序名称";
- this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
- this.dataGridViewTextBoxColumn4.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn5
- //
- this.dataGridViewTextBoxColumn5.DataPropertyName = "CD_NEXTSTEPCODE";
- this.dataGridViewTextBoxColumn5.HeaderText = "下一工序编号";
- this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
- this.dataGridViewTextBoxColumn5.ReadOnly = true;
- this.dataGridViewTextBoxColumn5.Width = 150;
- //
- // dataGridViewTextBoxColumn6
- //
- this.dataGridViewTextBoxColumn6.DataPropertyName = "CD_NEXTSTEPNAME";
- this.dataGridViewTextBoxColumn6.HeaderText = "下一工序名称";
- this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
- this.dataGridViewTextBoxColumn6.ReadOnly = true;
- this.dataGridViewTextBoxColumn6.Width = 150;
- //
- // dataGridViewTextBoxColumn7
- //
- this.dataGridViewTextBoxColumn7.DataPropertyName = "CD_TABLE";
- this.dataGridViewTextBoxColumn7.HeaderText = "板面";
- this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
- this.dataGridViewTextBoxColumn7.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn8
- //
- this.dataGridViewTextBoxColumn8.DataPropertyName = "SP_MOTHERCODE";
- this.dataGridViewTextBoxColumn8.HeaderText = "母件编号";
- this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
- this.dataGridViewTextBoxColumn8.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn9
- //
- this.dataGridViewTextBoxColumn9.DataPropertyName = "SP_SONCODE";
- this.dataGridViewTextBoxColumn9.HeaderText = "物料编号";
- this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9";
- this.dataGridViewTextBoxColumn9.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn10
- //
- this.dataGridViewTextBoxColumn10.DataPropertyName = "SP_STEPCODE";
- this.dataGridViewTextBoxColumn10.HeaderText = "工序编号";
- this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10";
- this.dataGridViewTextBoxColumn10.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn11
- //
- this.dataGridViewTextBoxColumn11.DataPropertyName = "SP_REPCODE";
- this.dataGridViewTextBoxColumn11.HeaderText = "替代料编号";
- this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
- this.dataGridViewTextBoxColumn11.ReadOnly = true;
- this.dataGridViewTextBoxColumn11.Width = 150;
- //
- // dataGridViewTextBoxColumn12
- //
- this.dataGridViewTextBoxColumn12.DataPropertyName = "SP_TYPE";
- this.dataGridViewTextBoxColumn12.HeaderText = "采集类型";
- this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
- this.dataGridViewTextBoxColumn12.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn13
- //
- this.dataGridViewTextBoxColumn13.DataPropertyName = "SP_DESCRIPTION";
- this.dataGridViewTextBoxColumn13.HeaderText = "描述";
- this.dataGridViewTextBoxColumn13.Name = "dataGridViewTextBoxColumn13";
- this.dataGridViewTextBoxColumn13.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn14
- //
- this.dataGridViewTextBoxColumn14.DataPropertyName = "SP_DETNO";
- this.dataGridViewTextBoxColumn14.HeaderText = "采集顺序";
- this.dataGridViewTextBoxColumn14.Name = "dataGridViewTextBoxColumn14";
- this.dataGridViewTextBoxColumn14.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn15
- //
- this.dataGridViewTextBoxColumn15.DataPropertyName = "SP_PREFIX";
- this.dataGridViewTextBoxColumn15.HeaderText = "前缀码";
- this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
- this.dataGridViewTextBoxColumn15.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn16
- //
- this.dataGridViewTextBoxColumn16.DataPropertyName = "SP_TRACEKIND";
- this.dataGridViewTextBoxColumn16.HeaderText = "管控类型";
- this.dataGridViewTextBoxColumn16.Name = "dataGridViewTextBoxColumn16";
- this.dataGridViewTextBoxColumn16.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn17
- //
- this.dataGridViewTextBoxColumn17.DataPropertyName = "SP_LENGTH";
- this.dataGridViewTextBoxColumn17.HeaderText = "长度";
- this.dataGridViewTextBoxColumn17.Name = "dataGridViewTextBoxColumn17";
- this.dataGridViewTextBoxColumn17.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn18
- //
- this.dataGridViewTextBoxColumn18.DataPropertyName = "SP_ONEUSEQTY";
- this.dataGridViewTextBoxColumn18.HeaderText = "单位用量";
- this.dataGridViewTextBoxColumn18.Name = "dataGridViewTextBoxColumn18";
- this.dataGridViewTextBoxColumn18.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn19
- //
- this.dataGridViewTextBoxColumn19.DataPropertyName = "SP_UPDATEMAN";
- this.dataGridViewTextBoxColumn19.HeaderText = "更新人";
- this.dataGridViewTextBoxColumn19.Name = "dataGridViewTextBoxColumn19";
- this.dataGridViewTextBoxColumn19.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn20
- //
- this.dataGridViewTextBoxColumn20.DataPropertyName = "SP_UPDATEDATE";
- this.dataGridViewTextBoxColumn20.HeaderText = "更新日期";
- this.dataGridViewTextBoxColumn20.Name = "dataGridViewTextBoxColumn20";
- this.dataGridViewTextBoxColumn20.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn21
- //
- this.dataGridViewTextBoxColumn21.DataPropertyName = "LA_CODE";
- this.dataGridViewTextBoxColumn21.HeaderText = "模板编号";
- this.dataGridViewTextBoxColumn21.Name = "dataGridViewTextBoxColumn21";
- this.dataGridViewTextBoxColumn21.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn22
- //
- this.dataGridViewTextBoxColumn22.DataPropertyName = "LA_NAME";
- this.dataGridViewTextBoxColumn22.HeaderText = "模板名称";
- this.dataGridViewTextBoxColumn22.Name = "dataGridViewTextBoxColumn22";
- this.dataGridViewTextBoxColumn22.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn23
- //
- this.dataGridViewTextBoxColumn23.DataPropertyName = "LA_STATUS";
- this.dataGridViewTextBoxColumn23.HeaderText = "状态";
- this.dataGridViewTextBoxColumn23.Name = "dataGridViewTextBoxColumn23";
- this.dataGridViewTextBoxColumn23.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn24
- //
- this.dataGridViewTextBoxColumn24.DataPropertyName = "LA_INDATE";
- this.dataGridViewTextBoxColumn24.HeaderText = "录入日期";
- this.dataGridViewTextBoxColumn24.Name = "dataGridViewTextBoxColumn24";
- this.dataGridViewTextBoxColumn24.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn25
- //
- this.dataGridViewTextBoxColumn25.DataPropertyName = "LA_INMAN";
- this.dataGridViewTextBoxColumn25.HeaderText = "录入人";
- this.dataGridViewTextBoxColumn25.Name = "dataGridViewTextBoxColumn25";
- this.dataGridViewTextBoxColumn25.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn26
- //
- this.dataGridViewTextBoxColumn26.DataPropertyName = "LA_PRINTNOS";
- this.dataGridViewTextBoxColumn26.HeaderText = "打印份数";
- this.dataGridViewTextBoxColumn26.Name = "dataGridViewTextBoxColumn26";
- this.dataGridViewTextBoxColumn26.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn27
- //
- this.dataGridViewTextBoxColumn27.DataPropertyName = "LA_URL";
- this.dataGridViewTextBoxColumn27.HeaderText = "模板路径";
- this.dataGridViewTextBoxColumn27.Name = "dataGridViewTextBoxColumn27";
- this.dataGridViewTextBoxColumn27.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn28
- //
- this.dataGridViewTextBoxColumn28.DataPropertyName = "LA_ISDEFAULT";
- this.dataGridViewTextBoxColumn28.HeaderText = "是否默认";
- this.dataGridViewTextBoxColumn28.Name = "dataGridViewTextBoxColumn28";
- this.dataGridViewTextBoxColumn28.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn29
- //
- this.dataGridViewTextBoxColumn29.DataPropertyName = "LA_TEMPLATETYPE";
- this.dataGridViewTextBoxColumn29.HeaderText = "模板类型";
- this.dataGridViewTextBoxColumn29.Name = "dataGridViewTextBoxColumn29";
- this.dataGridViewTextBoxColumn29.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn30
- //
- this.dataGridViewTextBoxColumn30.DataPropertyName = "LA_SOFTTYPE";
- this.dataGridViewTextBoxColumn30.HeaderText = "模板软件";
- this.dataGridViewTextBoxColumn30.Name = "dataGridViewTextBoxColumn30";
- this.dataGridViewTextBoxColumn30.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn31
- //
- this.dataGridViewTextBoxColumn31.DataPropertyName = "LA_PRODCODE";
- this.dataGridViewTextBoxColumn31.HeaderText = "产品编号";
- this.dataGridViewTextBoxColumn31.Name = "dataGridViewTextBoxColumn31";
- this.dataGridViewTextBoxColumn31.ReadOnly = true;
- //
- // LA_CODE
- //
- this.LA_CODE.DataPropertyName = "LA_CODE";
- this.LA_CODE.HeaderText = "模板编号";
- this.LA_CODE.Name = "LA_CODE";
- this.LA_CODE.ReadOnly = true;
- //
- // LA_NAME
- //
- this.LA_NAME.DataPropertyName = "LA_NAME";
- this.LA_NAME.HeaderText = "模板名称";
- this.LA_NAME.Name = "LA_NAME";
- this.LA_NAME.ReadOnly = true;
- //
- // LA_STATUS
- //
- this.LA_STATUS.DataPropertyName = "LA_STATUS";
- this.LA_STATUS.HeaderText = "状态";
- this.LA_STATUS.Name = "LA_STATUS";
- this.LA_STATUS.ReadOnly = true;
- //
- // LA_INDATE
- //
- this.LA_INDATE.DataPropertyName = "LA_INDATE";
- this.LA_INDATE.HeaderText = "录入日期";
- this.LA_INDATE.Name = "LA_INDATE";
- this.LA_INDATE.ReadOnly = true;
- //
- // LA_INMAN
- //
- this.LA_INMAN.DataPropertyName = "LA_INMAN";
- this.LA_INMAN.HeaderText = "录入人";
- this.LA_INMAN.Name = "LA_INMAN";
- this.LA_INMAN.ReadOnly = true;
- //
- // LA_PRINTNOS
- //
- this.LA_PRINTNOS.DataPropertyName = "LA_PRINTNOS";
- this.LA_PRINTNOS.HeaderText = "打印份数";
- this.LA_PRINTNOS.Name = "LA_PRINTNOS";
- this.LA_PRINTNOS.ReadOnly = true;
- //
- // LA_URL
- //
- this.LA_URL.DataPropertyName = "LA_URL";
- this.LA_URL.HeaderText = "模板路径";
- this.LA_URL.Name = "LA_URL";
- this.LA_URL.ReadOnly = true;
- //
- // LA_ISDEFAULT
- //
- this.LA_ISDEFAULT.DataPropertyName = "LA_ISDEFAULT";
- this.LA_ISDEFAULT.HeaderText = "是否默认";
- this.LA_ISDEFAULT.Name = "LA_ISDEFAULT";
- this.LA_ISDEFAULT.ReadOnly = true;
- //
- // LA_TEMPLATETYPE
- //
- this.LA_TEMPLATETYPE.DataPropertyName = "LA_TEMPLATETYPE";
- this.LA_TEMPLATETYPE.HeaderText = "模板类型";
- this.LA_TEMPLATETYPE.Name = "LA_TEMPLATETYPE";
- this.LA_TEMPLATETYPE.ReadOnly = true;
- //
- // LA_SOFTTYPE
- //
- this.LA_SOFTTYPE.DataPropertyName = "LA_SOFTTYPE";
- this.LA_SOFTTYPE.HeaderText = "模板软件";
- this.LA_SOFTTYPE.Name = "LA_SOFTTYPE";
- this.LA_SOFTTYPE.ReadOnly = true;
- //
- // LA_PRODCODE
- //
- this.LA_PRODCODE.DataPropertyName = "LA_PRODCODE";
- this.LA_PRODCODE.HeaderText = "产品编号";
- this.LA_PRODCODE.Name = "LA_PRODCODE";
- this.LA_PRODCODE.ReadOnly = true;
- //
- // SP_MOTHERCODE
- //
- this.SP_MOTHERCODE.DataPropertyName = "SP_MOTHERCODE";
- this.SP_MOTHERCODE.HeaderText = "母件编号";
- this.SP_MOTHERCODE.Name = "SP_MOTHERCODE";
- this.SP_MOTHERCODE.ReadOnly = true;
- //
- // SP_SONCODE
- //
- this.SP_SONCODE.DataPropertyName = "SP_SONCODE";
- this.SP_SONCODE.HeaderText = "物料编号";
- this.SP_SONCODE.Name = "SP_SONCODE";
- this.SP_SONCODE.ReadOnly = true;
- //
- // SP_STEPCODE
- //
- this.SP_STEPCODE.DataPropertyName = "SP_STEPCODE";
- this.SP_STEPCODE.HeaderText = "工序编号";
- this.SP_STEPCODE.Name = "SP_STEPCODE";
- this.SP_STEPCODE.ReadOnly = true;
- //
- // SP_REPCODE
- //
- this.SP_REPCODE.DataPropertyName = "SP_REPCODE";
- this.SP_REPCODE.HeaderText = "替代料编号";
- this.SP_REPCODE.Name = "SP_REPCODE";
- this.SP_REPCODE.ReadOnly = true;
- this.SP_REPCODE.Width = 150;
- //
- // SP_TYPE
- //
- this.SP_TYPE.DataPropertyName = "SP_TYPE";
- this.SP_TYPE.HeaderText = "采集类型";
- this.SP_TYPE.Name = "SP_TYPE";
- this.SP_TYPE.ReadOnly = true;
- //
- // SP_DESCRIPTION
- //
- this.SP_DESCRIPTION.DataPropertyName = "SP_DESCRIPTION";
- this.SP_DESCRIPTION.HeaderText = "描述";
- this.SP_DESCRIPTION.Name = "SP_DESCRIPTION";
- this.SP_DESCRIPTION.ReadOnly = true;
- //
- // SP_DETNO
- //
- this.SP_DETNO.DataPropertyName = "SP_DETNO";
- this.SP_DETNO.HeaderText = "采集顺序";
- this.SP_DETNO.Name = "SP_DETNO";
- this.SP_DETNO.ReadOnly = true;
- //
- // SP_PREFIX
- //
- this.SP_PREFIX.DataPropertyName = "SP_PREFIX";
- this.SP_PREFIX.HeaderText = "前缀码";
- this.SP_PREFIX.Name = "SP_PREFIX";
- this.SP_PREFIX.ReadOnly = true;
- //
- // SP_TRACEKIND
- //
- this.SP_TRACEKIND.DataPropertyName = "SP_TRACEKIND";
- this.SP_TRACEKIND.HeaderText = "管控类型";
- this.SP_TRACEKIND.Name = "SP_TRACEKIND";
- this.SP_TRACEKIND.ReadOnly = true;
- //
- // SP_LENGTH
- //
- this.SP_LENGTH.DataPropertyName = "SP_LENGTH";
- this.SP_LENGTH.HeaderText = "长度";
- this.SP_LENGTH.Name = "SP_LENGTH";
- this.SP_LENGTH.ReadOnly = true;
- //
- // SP_ONEUSEQTY
- //
- this.SP_ONEUSEQTY.DataPropertyName = "SP_ONEUSEQTY";
- this.SP_ONEUSEQTY.HeaderText = "单位用量";
- this.SP_ONEUSEQTY.Name = "SP_ONEUSEQTY";
- this.SP_ONEUSEQTY.ReadOnly = true;
- //
- // SP_UPDATEMAN
- //
- this.SP_UPDATEMAN.DataPropertyName = "SP_UPDATEMAN";
- this.SP_UPDATEMAN.HeaderText = "更新人";
- this.SP_UPDATEMAN.Name = "SP_UPDATEMAN";
- this.SP_UPDATEMAN.ReadOnly = true;
- //
- // SP_UPDATEDATE
- //
- this.SP_UPDATEDATE.DataPropertyName = "SP_UPDATEDATE";
- this.SP_UPDATEDATE.HeaderText = "更新日期";
- this.SP_UPDATEDATE.Name = "SP_UPDATEDATE";
- this.SP_UPDATEDATE.ReadOnly = true;
- //
- // CD_STEPNO
- //
- this.CD_STEPNO.DataPropertyName = "CD_STEPNO";
- this.CD_STEPNO.HeaderText = "执行顺序";
- this.CD_STEPNO.Name = "CD_STEPNO";
- this.CD_STEPNO.ReadOnly = true;
- //
- // CD_IFINPUT
- //
- this.CD_IFINPUT.DataPropertyName = "CD_IFINPUT";
- this.CD_IFINPUT.HeaderText = "上料工序";
- this.CD_IFINPUT.Name = "CD_IFINPUT";
- this.CD_IFINPUT.ReadOnly = true;
- this.CD_IFINPUT.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.CD_IFINPUT.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- //
- // CD_IFOUTPUT
- //
- this.CD_IFOUTPUT.DataPropertyName = "CD_IFOUTPUT";
- this.CD_IFOUTPUT.HeaderText = "下料工序";
- this.CD_IFOUTPUT.Name = "CD_IFOUTPUT";
- this.CD_IFOUTPUT.ReadOnly = true;
- this.CD_IFOUTPUT.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.CD_IFOUTPUT.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- //
- // CD_IFTEST
- //
- this.CD_IFTEST.DataPropertyName = "CD_IFTEST";
- this.CD_IFTEST.HeaderText = "测试工序";
- this.CD_IFTEST.Name = "CD_IFTEST";
- this.CD_IFTEST.ReadOnly = true;
- this.CD_IFTEST.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.CD_IFTEST.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- //
- // CD_IFSNCHANGE
- //
- this.CD_IFSNCHANGE.DataPropertyName = "CD_IFSNCHANGE";
- this.CD_IFSNCHANGE.HeaderText = "序号转换工序";
- this.CD_IFSNCHANGE.Name = "CD_IFSNCHANGE";
- this.CD_IFSNCHANGE.ReadOnly = true;
- this.CD_IFSNCHANGE.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.CD_IFSNCHANGE.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- this.CD_IFSNCHANGE.Width = 150;
- //
- // CD_IFOQC
- //
- this.CD_IFOQC.DataPropertyName = "CD_IFOQC";
- this.CD_IFOQC.HeaderText = "OQC工序";
- this.CD_IFOQC.Name = "CD_IFOQC";
- this.CD_IFOQC.ReadOnly = true;
- this.CD_IFOQC.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.CD_IFOQC.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- //
- // CD_IFPACK
- //
- this.CD_IFPACK.DataPropertyName = "CD_IFPACK";
- this.CD_IFPACK.HeaderText = "包装工序";
- this.CD_IFPACK.Name = "CD_IFPACK";
- this.CD_IFPACK.ReadOnly = true;
- this.CD_IFPACK.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.CD_IFPACK.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- //
- // CD_IFREPAIR
- //
- this.CD_IFREPAIR.DataPropertyName = "CD_IFREPAIR";
- this.CD_IFREPAIR.HeaderText = "维修工序";
- this.CD_IFREPAIR.Name = "CD_IFREPAIR";
- this.CD_IFREPAIR.ReadOnly = true;
- this.CD_IFREPAIR.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.CD_IFREPAIR.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- //
- // CD_IFOUTLINE
- //
- this.CD_IFOUTLINE.DataPropertyName = "CD_IFOUTLINE";
- this.CD_IFOUTLINE.HeaderText = "线外工序";
- this.CD_IFOUTLINE.Name = "CD_IFOUTLINE";
- this.CD_IFOUTLINE.ReadOnly = true;
- this.CD_IFOUTLINE.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.CD_IFOUTLINE.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- //
- // CD_IFSMTINOUT
- //
- this.CD_IFSMTINOUT.DataPropertyName = "CD_IFSMTINOUT";
- this.CD_IFSMTINOUT.HeaderText = "SMT防呆工序";
- this.CD_IFSMTINOUT.Name = "CD_IFSMTINOUT";
- this.CD_IFSMTINOUT.ReadOnly = true;
- this.CD_IFSMTINOUT.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.CD_IFSMTINOUT.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- this.CD_IFSMTINOUT.Width = 150;
- //
- // CD_IFSPC
- //
- this.CD_IFSPC.DataPropertyName = "CD_IFSPC";
- this.CD_IFSPC.HeaderText = "SPC工序";
- this.CD_IFSPC.Name = "CD_IFSPC";
- this.CD_IFSPC.ReadOnly = true;
- this.CD_IFSPC.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.CD_IFSPC.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- //
- // CD_IFREDUCE
- //
- this.CD_IFREDUCE.DataPropertyName = "CD_IFREDUCE";
- this.CD_IFREDUCE.HeaderText = "扣料工序";
- this.CD_IFREDUCE.Name = "CD_IFREDUCE";
- this.CD_IFREDUCE.ReadOnly = true;
- this.CD_IFREDUCE.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.CD_IFREDUCE.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- //
- // CD_IFMIDFINISH
- //
- this.CD_IFMIDFINISH.DataPropertyName = "CD_IFMIDFINISH";
- this.CD_IFMIDFINISH.HeaderText = "中间产量工序";
- this.CD_IFMIDFINISH.Name = "CD_IFMIDFINISH";
- this.CD_IFMIDFINISH.ReadOnly = true;
- this.CD_IFMIDFINISH.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.CD_IFMIDFINISH.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- this.CD_IFMIDFINISH.Width = 150;
- //
- // CD_IFMIDINPUT
- //
- this.CD_IFMIDINPUT.DataPropertyName = "CD_IFMIDINPUT";
- this.CD_IFMIDINPUT.HeaderText = "中间投入工序";
- this.CD_IFMIDINPUT.Name = "CD_IFMIDINPUT";
- this.CD_IFMIDINPUT.ReadOnly = true;
- this.CD_IFMIDINPUT.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.CD_IFMIDINPUT.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- this.CD_IFMIDINPUT.Width = 150;
- //
- // CD_IFBURNIN
- //
- this.CD_IFBURNIN.DataPropertyName = "CD_IFBURNIN";
- this.CD_IFBURNIN.HeaderText = "BURNIN工序";
- this.CD_IFBURNIN.Name = "CD_IFBURNIN";
- this.CD_IFBURNIN.ReadOnly = true;
- this.CD_IFBURNIN.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.CD_IFBURNIN.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- this.CD_IFBURNIN.Width = 150;
- //
- // CD_IFBURNOUT
- //
- this.CD_IFBURNOUT.DataPropertyName = "CD_IFBURNOUT";
- this.CD_IFBURNOUT.HeaderText = "BURNOUT工序";
- this.CD_IFBURNOUT.Name = "CD_IFBURNOUT";
- this.CD_IFBURNOUT.ReadOnly = true;
- this.CD_IFBURNOUT.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.CD_IFBURNOUT.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- this.CD_IFBURNOUT.Width = 150;
- //
- // CD_IFWEIGH
- //
- this.CD_IFWEIGH.DataPropertyName = "CD_IFWEIGH";
- this.CD_IFWEIGH.HeaderText = "是否称重";
- this.CD_IFWEIGH.Name = "CD_IFWEIGH";
- this.CD_IFWEIGH.ReadOnly = true;
- this.CD_IFWEIGH.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.CD_IFWEIGH.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- //
- // CD_FIRSTSTEP
- //
- this.CD_FIRSTSTEP.DataPropertyName = "CD_FIRSTSTEP";
- this.CD_FIRSTSTEP.HeaderText = "是否第一道工序";
- this.CD_FIRSTSTEP.Name = "CD_FIRSTSTEP";
- this.CD_FIRSTSTEP.ReadOnly = true;
- this.CD_FIRSTSTEP.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.CD_FIRSTSTEP.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- this.CD_FIRSTSTEP.Width = 150;
- //
- // CD_IFOFFLINE
- //
- this.CD_IFOFFLINE.DataPropertyName = "CD_IFOFFLINE";
- this.CD_IFOFFLINE.HeaderText = "下线工序";
- this.CD_IFOFFLINE.Name = "CD_IFOFFLINE";
- this.CD_IFOFFLINE.ReadOnly = true;
- this.CD_IFOFFLINE.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.CD_IFOFFLINE.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- //
- // CD_DETNO
- //
- this.CD_DETNO.DataPropertyName = "CD_DETNO";
- this.CD_DETNO.HeaderText = "序号";
- this.CD_DETNO.Name = "CD_DETNO";
- this.CD_DETNO.ReadOnly = true;
- //
- // CD_STEPCODE
- //
- this.CD_STEPCODE.DataPropertyName = "CD_STEPCODE";
- this.CD_STEPCODE.HeaderText = "工序编号";
- this.CD_STEPCODE.Name = "CD_STEPCODE";
- this.CD_STEPCODE.ReadOnly = true;
- //
- // CD_STEPNAME
- //
- this.CD_STEPNAME.DataPropertyName = "CD_STEPNAME";
- this.CD_STEPNAME.HeaderText = "工序名称";
- this.CD_STEPNAME.Name = "CD_STEPNAME";
- this.CD_STEPNAME.ReadOnly = true;
- //
- // CD_NEXTSTEPCODE
- //
- this.CD_NEXTSTEPCODE.DataPropertyName = "CD_NEXTSTEPCODE";
- this.CD_NEXTSTEPCODE.HeaderText = "下一工序编号";
- this.CD_NEXTSTEPCODE.Name = "CD_NEXTSTEPCODE";
- this.CD_NEXTSTEPCODE.ReadOnly = true;
- this.CD_NEXTSTEPCODE.Width = 150;
- //
- // CD_NEXTSTEPNAME
- //
- this.CD_NEXTSTEPNAME.DataPropertyName = "CD_NEXTSTEPNAME";
- this.CD_NEXTSTEPNAME.HeaderText = "下一工序名称";
- this.CD_NEXTSTEPNAME.Name = "CD_NEXTSTEPNAME";
- this.CD_NEXTSTEPNAME.ReadOnly = true;
- this.CD_NEXTSTEPNAME.Width = 150;
- //
- // CD_TABLE
- //
- this.CD_TABLE.DataPropertyName = "CD_TABLE";
- this.CD_TABLE.HeaderText = "板面";
- this.CD_TABLE.Name = "CD_TABLE";
- this.CD_TABLE.ReadOnly = true;
- //
- // groupBoxWithBorder1
- //
- this.groupBoxWithBorder1.BorderColor = System.Drawing.Color.Black;
- this.groupBoxWithBorder1.Controls.Add(this.aftersnqty);
- this.groupBoxWithBorder1.Controls.Add(this.aftersnqty_label_);
- this.groupBoxWithBorder1.Controls.Add(this.AfterSnRange);
- this.groupBoxWithBorder1.Controls.Add(this.AfterSnRange_label_);
- this.groupBoxWithBorder1.Controls.Add(this.beforesnqty);
- this.groupBoxWithBorder1.Controls.Add(this.beforesnqty_label_);
- this.groupBoxWithBorder1.Controls.Add(this.BeforeSnRange);
- this.groupBoxWithBorder1.Controls.Add(this.BeforeSnRange_label_label);
- this.groupBoxWithBorder1.Controls.Add(this.IMEINum);
- this.groupBoxWithBorder1.Controls.Add(this.label3_label_label);
- this.groupBoxWithBorder1.Controls.Add(this.BTNum);
- this.groupBoxWithBorder1.Controls.Add(this.label13_label_label);
- this.groupBoxWithBorder1.Controls.Add(this.MacNum);
- this.groupBoxWithBorder1.Controls.Add(this.Mac_label_label);
- this.groupBoxWithBorder1.Location = new System.Drawing.Point(31, 224);
- this.groupBoxWithBorder1.Margin = new System.Windows.Forms.Padding(2);
- this.groupBoxWithBorder1.Name = "groupBoxWithBorder1";
- this.groupBoxWithBorder1.Padding = new System.Windows.Forms.Padding(2);
- this.groupBoxWithBorder1.Size = new System.Drawing.Size(886, 84);
- this.groupBoxWithBorder1.TabIndex = 19;
- this.groupBoxWithBorder1.TabStop = false;
- this.groupBoxWithBorder1.Text = "SN关联信息";
- this.groupBoxWithBorder1.TextColor = System.Drawing.Color.Black;
- //
- // aftersnqty
- //
- this.aftersnqty.AutoSize = true;
- this.aftersnqty.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.aftersnqty.Location = new System.Drawing.Point(696, 53);
- this.aftersnqty.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.aftersnqty.Name = "aftersnqty";
- this.aftersnqty.Size = new System.Drawing.Size(0, 20);
- this.aftersnqty.TabIndex = 17;
- //
- // aftersnqty_label_
- //
- this.aftersnqty_label_.AutoSize = true;
- this.aftersnqty_label_.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.aftersnqty_label_.Location = new System.Drawing.Point(613, 53);
- this.aftersnqty_label_.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.aftersnqty_label_.Name = "aftersnqty_label_";
- this.aftersnqty_label_.Size = new System.Drawing.Size(84, 20);
- this.aftersnqty_label_.TabIndex = 16;
- this.aftersnqty_label_.Text = "转换后SN数";
- //
- // AfterSnRange
- //
- this.AfterSnRange.AutoSize = true;
- this.AfterSnRange.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.AfterSnRange.Location = new System.Drawing.Point(439, 53);
- this.AfterSnRange.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.AfterSnRange.Name = "AfterSnRange";
- this.AfterSnRange.Size = new System.Drawing.Size(0, 20);
- this.AfterSnRange.TabIndex = 15;
- //
- // AfterSnRange_label_
- //
- this.AfterSnRange_label_.AutoSize = true;
- this.AfterSnRange_label_.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.AfterSnRange_label_.Location = new System.Drawing.Point(333, 53);
- this.AfterSnRange_label_.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.AfterSnRange_label_.Name = "AfterSnRange_label_";
- this.AfterSnRange_label_.Size = new System.Drawing.Size(98, 20);
- this.AfterSnRange_label_.TabIndex = 14;
- this.AfterSnRange_label_.Text = "转换后SN范围";
- //
- // beforesnqty
- //
- this.beforesnqty.AutoSize = true;
- this.beforesnqty.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.beforesnqty.Location = new System.Drawing.Point(696, 21);
- this.beforesnqty.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.beforesnqty.Name = "beforesnqty";
- this.beforesnqty.Size = new System.Drawing.Size(0, 20);
- this.beforesnqty.TabIndex = 13;
- //
- // beforesnqty_label_
- //
- this.beforesnqty_label_.AutoSize = true;
- this.beforesnqty_label_.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.beforesnqty_label_.Location = new System.Drawing.Point(613, 21);
- this.beforesnqty_label_.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.beforesnqty_label_.Name = "beforesnqty_label_";
- this.beforesnqty_label_.Size = new System.Drawing.Size(84, 20);
- this.beforesnqty_label_.TabIndex = 12;
- this.beforesnqty_label_.Text = "转换前SN数";
- //
- // BeforeSnRange
- //
- this.BeforeSnRange.AutoSize = true;
- this.BeforeSnRange.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.BeforeSnRange.Location = new System.Drawing.Point(135, 53);
- this.BeforeSnRange.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.BeforeSnRange.Name = "BeforeSnRange";
- this.BeforeSnRange.Size = new System.Drawing.Size(0, 20);
- this.BeforeSnRange.TabIndex = 11;
- //
- // BeforeSnRange_label_label
- //
- this.BeforeSnRange_label_label.AutoSize = true;
- this.BeforeSnRange_label_label.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.BeforeSnRange_label_label.Location = new System.Drawing.Point(29, 53);
- this.BeforeSnRange_label_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.BeforeSnRange_label_label.Name = "BeforeSnRange_label_label";
- this.BeforeSnRange_label_label.Size = new System.Drawing.Size(98, 20);
- this.BeforeSnRange_label_label.TabIndex = 10;
- this.BeforeSnRange_label_label.Text = "转换前SN范围";
- //
- // IMEINum
- //
- this.IMEINum.AutoSize = true;
- this.IMEINum.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.IMEINum.Location = new System.Drawing.Point(523, 21);
- this.IMEINum.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.IMEINum.Name = "IMEINum";
- this.IMEINum.Size = new System.Drawing.Size(0, 20);
- this.IMEINum.TabIndex = 9;
- //
- // label3_label_label
- //
- this.label3_label_label.AutoSize = true;
- this.label3_label_label.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.label3_label_label.Location = new System.Drawing.Point(416, 21);
- this.label3_label_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label3_label_label.Name = "label3_label_label";
- this.label3_label_label.Size = new System.Drawing.Size(109, 20);
- this.label3_label_label.TabIndex = 8;
- this.label3_label_label.Text = "已导入IMEI数量";
- //
- // BTNum
- //
- this.BTNum.AutoSize = true;
- this.BTNum.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.BTNum.Location = new System.Drawing.Point(325, 21);
- this.BTNum.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.BTNum.Name = "BTNum";
- this.BTNum.Size = new System.Drawing.Size(0, 20);
- this.BTNum.TabIndex = 7;
- //
- // label13_label_label
- //
- this.label13_label_label.AutoSize = true;
- this.label13_label_label.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.label13_label_label.Location = new System.Drawing.Point(226, 21);
- this.label13_label_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label13_label_label.Name = "label13_label_label";
- this.label13_label_label.Size = new System.Drawing.Size(96, 20);
- this.label13_label_label.TabIndex = 6;
- this.label13_label_label.Text = "已导入BT数量";
- //
- // MacNum
- //
- this.MacNum.AutoSize = true;
- this.MacNum.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.MacNum.Location = new System.Drawing.Point(135, 21);
- this.MacNum.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.MacNum.Name = "MacNum";
- this.MacNum.Size = new System.Drawing.Size(0, 20);
- this.MacNum.TabIndex = 5;
- //
- // Mac_label_label
- //
- this.Mac_label_label.AutoSize = true;
- this.Mac_label_label.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.Mac_label_label.Location = new System.Drawing.Point(29, 21);
- this.Mac_label_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.Mac_label_label.Name = "Mac_label_label";
- this.Mac_label_label.Size = new System.Drawing.Size(108, 20);
- this.Mac_label_label.TabIndex = 4;
- this.Mac_label_label.Text = "已导入Mac数量";
- //
- // Product
- //
- this.Product.BorderColor = System.Drawing.Color.Black;
- this.Product.Controls.Add(this.pr_cartonweight);
- this.Product.Controls.Add(this.pr_cartonweight_label);
- this.Product.Controls.Add(this.pr_colorboxweight);
- this.Product.Controls.Add(this.pr_colorboxweight_label);
- this.Product.Controls.Add(this.pr_agingtime);
- this.Product.Controls.Add(this.pr_agingtime_label);
- this.Product.Controls.Add(this.pr_outboxinnerqty);
- this.Product.Controls.Add(this.pr_outboxinnerqty_label);
- this.Product.Controls.Add(this.pr_sendchecktype);
- this.Product.Controls.Add(this.pr_sendchecktype_label);
- this.Product.Controls.Add(this.pr_detail);
- this.Product.Controls.Add(this.pr_detail_label);
- this.Product.Controls.Add(this.pr_code);
- this.Product.Controls.Add(this.pr_code_label);
- this.Product.Location = new System.Drawing.Point(31, 132);
- this.Product.Margin = new System.Windows.Forms.Padding(2);
- this.Product.Name = "Product";
- this.Product.Padding = new System.Windows.Forms.Padding(2);
- this.Product.Size = new System.Drawing.Size(886, 84);
- this.Product.TabIndex = 18;
- this.Product.TabStop = false;
- this.Product.Text = "产品信息";
- this.Product.TextColor = System.Drawing.Color.Black;
- //
- // pr_cartonweight
- //
- this.pr_cartonweight.AutoSize = true;
- this.pr_cartonweight.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.pr_cartonweight.Location = new System.Drawing.Point(500, 53);
- this.pr_cartonweight.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.pr_cartonweight.Name = "pr_cartonweight";
- this.pr_cartonweight.Size = new System.Drawing.Size(0, 20);
- this.pr_cartonweight.TabIndex = 17;
- //
- // pr_cartonweight_label
- //
- this.pr_cartonweight_label.AutoSize = true;
- this.pr_cartonweight_label.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.pr_cartonweight_label.Location = new System.Drawing.Point(416, 53);
- this.pr_cartonweight_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.pr_cartonweight_label.Name = "pr_cartonweight_label";
- this.pr_cartonweight_label.Size = new System.Drawing.Size(79, 20);
- this.pr_cartonweight_label.TabIndex = 16;
- this.pr_cartonweight_label.Text = "卡通箱重量";
- //
- // pr_colorboxweight
- //
- this.pr_colorboxweight.AutoSize = true;
- this.pr_colorboxweight.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.pr_colorboxweight.Location = new System.Drawing.Point(307, 53);
- this.pr_colorboxweight.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.pr_colorboxweight.Name = "pr_colorboxweight";
- this.pr_colorboxweight.Size = new System.Drawing.Size(0, 20);
- this.pr_colorboxweight.TabIndex = 15;
- //
- // pr_colorboxweight_label
- //
- this.pr_colorboxweight_label.AutoSize = true;
- this.pr_colorboxweight_label.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.pr_colorboxweight_label.Location = new System.Drawing.Point(226, 53);
- this.pr_colorboxweight_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.pr_colorboxweight_label.Name = "pr_colorboxweight_label";
- this.pr_colorboxweight_label.Size = new System.Drawing.Size(65, 20);
- this.pr_colorboxweight_label.TabIndex = 14;
- this.pr_colorboxweight_label.Text = "彩盒重量";
- //
- // pr_agingtime
- //
- this.pr_agingtime.AutoSize = true;
- this.pr_agingtime.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.pr_agingtime.Location = new System.Drawing.Point(109, 53);
- this.pr_agingtime.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.pr_agingtime.Name = "pr_agingtime";
- this.pr_agingtime.Size = new System.Drawing.Size(0, 20);
- this.pr_agingtime.TabIndex = 13;
- //
- // pr_agingtime_label
- //
- this.pr_agingtime_label.AutoSize = true;
- this.pr_agingtime_label.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.pr_agingtime_label.Location = new System.Drawing.Point(29, 53);
- this.pr_agingtime_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.pr_agingtime_label.Name = "pr_agingtime_label";
- this.pr_agingtime_label.Size = new System.Drawing.Size(65, 20);
- this.pr_agingtime_label.TabIndex = 12;
- this.pr_agingtime_label.Text = "老化时长";
- //
- // pr_outboxinnerqty
- //
- this.pr_outboxinnerqty.AutoSize = true;
- this.pr_outboxinnerqty.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.pr_outboxinnerqty.Location = new System.Drawing.Point(696, 22);
- this.pr_outboxinnerqty.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.pr_outboxinnerqty.Name = "pr_outboxinnerqty";
- this.pr_outboxinnerqty.Size = new System.Drawing.Size(0, 20);
- this.pr_outboxinnerqty.TabIndex = 11;
- //
- // pr_outboxinnerqty_label
- //
- this.pr_outboxinnerqty_label.AutoSize = true;
- this.pr_outboxinnerqty_label.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.pr_outboxinnerqty_label.Location = new System.Drawing.Point(613, 22);
- this.pr_outboxinnerqty_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.pr_outboxinnerqty_label.Name = "pr_outboxinnerqty_label";
- this.pr_outboxinnerqty_label.Size = new System.Drawing.Size(65, 20);
- this.pr_outboxinnerqty_label.TabIndex = 10;
- this.pr_outboxinnerqty_label.Text = "装箱容量";
- //
- // pr_sendchecktype
- //
- this.pr_sendchecktype.AutoSize = true;
- this.pr_sendchecktype.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.pr_sendchecktype.Location = new System.Drawing.Point(500, 22);
- this.pr_sendchecktype.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.pr_sendchecktype.Name = "pr_sendchecktype";
- this.pr_sendchecktype.Size = new System.Drawing.Size(0, 20);
- this.pr_sendchecktype.TabIndex = 9;
- //
- // pr_sendchecktype_label
- //
- this.pr_sendchecktype_label.AutoSize = true;
- this.pr_sendchecktype_label.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.pr_sendchecktype_label.Location = new System.Drawing.Point(416, 22);
- this.pr_sendchecktype_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.pr_sendchecktype_label.Name = "pr_sendchecktype_label";
- this.pr_sendchecktype_label.Size = new System.Drawing.Size(65, 20);
- this.pr_sendchecktype_label.TabIndex = 8;
- this.pr_sendchecktype_label.Text = "送检类型";
- //
- // pr_detail
- //
- this.pr_detail.AutoSize = true;
- this.pr_detail.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.pr_detail.Location = new System.Drawing.Point(307, 22);
- this.pr_detail.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.pr_detail.Name = "pr_detail";
- this.pr_detail.Size = new System.Drawing.Size(0, 20);
- this.pr_detail.TabIndex = 7;
- //
- // pr_detail_label
- //
- this.pr_detail_label.AutoSize = true;
- this.pr_detail_label.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.pr_detail_label.Location = new System.Drawing.Point(226, 22);
- this.pr_detail_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.pr_detail_label.Name = "pr_detail_label";
- this.pr_detail_label.Size = new System.Drawing.Size(65, 20);
- this.pr_detail_label.TabIndex = 6;
- this.pr_detail_label.Text = "产品名称";
- //
- // pr_code
- //
- this.pr_code.AutoSize = true;
- this.pr_code.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.pr_code.Location = new System.Drawing.Point(109, 22);
- this.pr_code.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.pr_code.Name = "pr_code";
- this.pr_code.Size = new System.Drawing.Size(0, 20);
- this.pr_code.TabIndex = 5;
- //
- // pr_code_label
- //
- this.pr_code_label.AutoSize = true;
- this.pr_code_label.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.pr_code_label.Location = new System.Drawing.Point(29, 22);
- this.pr_code_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.pr_code_label.Name = "pr_code_label";
- this.pr_code_label.Size = new System.Drawing.Size(65, 20);
- this.pr_code_label.TabIndex = 4;
- this.pr_code_label.Text = "产品编号";
- //
- // MakeInf
- //
- this.MakeInf.BorderColor = System.Drawing.Color.Black;
- this.MakeInf.Controls.Add(this.ma_unlimitageqty);
- this.MakeInf.Controls.Add(this.ma_unlimitageqty_label);
- this.MakeInf.Controls.Add(this.ma_bomversion);
- this.MakeInf.Controls.Add(this.ma_bomversion_label);
- this.MakeInf.Controls.Add(this.ma_qty);
- this.MakeInf.Controls.Add(this.ma_qty_label);
- this.MakeInf.Controls.Add(this.ma_softversion);
- this.MakeInf.Controls.Add(this.ma_softversion_label);
- this.MakeInf.Controls.Add(this.ma_wccode);
- this.MakeInf.Controls.Add(this.ma_wccode_label);
- this.MakeInf.Controls.Add(this.ma_custname);
- this.MakeInf.Controls.Add(this.ma_custname_label);
- this.MakeInf.Controls.Add(this.ma_salecode);
- this.MakeInf.Controls.Add(this.ma_salecode_label);
- this.MakeInf.Location = new System.Drawing.Point(31, 40);
- this.MakeInf.Margin = new System.Windows.Forms.Padding(2);
- this.MakeInf.Name = "MakeInf";
- this.MakeInf.Padding = new System.Windows.Forms.Padding(2);
- this.MakeInf.Size = new System.Drawing.Size(886, 84);
- this.MakeInf.TabIndex = 3;
- this.MakeInf.TabStop = false;
- this.MakeInf.Text = "工单信息";
- this.MakeInf.TextColor = System.Drawing.Color.Black;
- //
- // ma_unlimitageqty
- //
- this.ma_unlimitageqty.AutoSize = true;
- this.ma_unlimitageqty.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.ma_unlimitageqty.Location = new System.Drawing.Point(500, 52);
- this.ma_unlimitageqty.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.ma_unlimitageqty.Name = "ma_unlimitageqty";
- this.ma_unlimitageqty.Size = new System.Drawing.Size(0, 20);
- this.ma_unlimitageqty.TabIndex = 17;
- //
- // ma_unlimitageqty_label
- //
- this.ma_unlimitageqty_label.AutoSize = true;
- this.ma_unlimitageqty_label.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.ma_unlimitageqty_label.Location = new System.Drawing.Point(416, 52);
- this.ma_unlimitageqty_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.ma_unlimitageqty_label.Name = "ma_unlimitageqty_label";
- this.ma_unlimitageqty_label.Size = new System.Drawing.Size(79, 20);
- this.ma_unlimitageqty_label.TabIndex = 16;
- this.ma_unlimitageqty_label.Text = "不限老化数";
- //
- // ma_bomversion
- //
- this.ma_bomversion.AutoSize = true;
- this.ma_bomversion.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.ma_bomversion.Location = new System.Drawing.Point(307, 52);
- this.ma_bomversion.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.ma_bomversion.Name = "ma_bomversion";
- this.ma_bomversion.Size = new System.Drawing.Size(0, 20);
- this.ma_bomversion.TabIndex = 15;
- //
- // ma_bomversion_label
- //
- this.ma_bomversion_label.AutoSize = true;
- this.ma_bomversion_label.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.ma_bomversion_label.Location = new System.Drawing.Point(226, 52);
- this.ma_bomversion_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.ma_bomversion_label.Name = "ma_bomversion_label";
- this.ma_bomversion_label.Size = new System.Drawing.Size(71, 20);
- this.ma_bomversion_label.TabIndex = 14;
- this.ma_bomversion_label.Text = "BOM版本";
- //
- // ma_qty
- //
- this.ma_qty.AutoSize = true;
- this.ma_qty.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.ma_qty.Location = new System.Drawing.Point(109, 52);
- this.ma_qty.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.ma_qty.Name = "ma_qty";
- this.ma_qty.Size = new System.Drawing.Size(0, 20);
- this.ma_qty.TabIndex = 13;
- //
- // ma_qty_label
- //
- this.ma_qty_label.AutoSize = true;
- this.ma_qty_label.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.ma_qty_label.Location = new System.Drawing.Point(29, 52);
- this.ma_qty_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.ma_qty_label.Name = "ma_qty_label";
- this.ma_qty_label.Size = new System.Drawing.Size(65, 20);
- this.ma_qty_label.TabIndex = 12;
- this.ma_qty_label.Text = "工单数量";
- //
- // ma_softversion
- //
- this.ma_softversion.AutoSize = true;
- this.ma_softversion.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.ma_softversion.Location = new System.Drawing.Point(696, 21);
- this.ma_softversion.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.ma_softversion.Name = "ma_softversion";
- this.ma_softversion.Size = new System.Drawing.Size(0, 20);
- this.ma_softversion.TabIndex = 11;
- //
- // ma_softversion_label
- //
- this.ma_softversion_label.AutoSize = true;
- this.ma_softversion_label.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.ma_softversion_label.Location = new System.Drawing.Point(613, 21);
- this.ma_softversion_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.ma_softversion_label.Name = "ma_softversion_label";
- this.ma_softversion_label.Size = new System.Drawing.Size(65, 20);
- this.ma_softversion_label.TabIndex = 10;
- this.ma_softversion_label.Text = "软件版本";
- //
- // ma_wccode
- //
- this.ma_wccode.AutoSize = true;
- this.ma_wccode.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.ma_wccode.Location = new System.Drawing.Point(500, 21);
- this.ma_wccode.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.ma_wccode.Name = "ma_wccode";
- this.ma_wccode.Size = new System.Drawing.Size(0, 20);
- this.ma_wccode.TabIndex = 9;
- //
- // ma_wccode_label
- //
- this.ma_wccode_label.AutoSize = true;
- this.ma_wccode_label.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.ma_wccode_label.Location = new System.Drawing.Point(416, 21);
- this.ma_wccode_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.ma_wccode_label.Name = "ma_wccode_label";
- this.ma_wccode_label.Size = new System.Drawing.Size(65, 20);
- this.ma_wccode_label.TabIndex = 8;
- this.ma_wccode_label.Text = "工作中心";
- //
- // ma_custname
- //
- this.ma_custname.AutoSize = true;
- this.ma_custname.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.ma_custname.Location = new System.Drawing.Point(307, 21);
- this.ma_custname.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.ma_custname.Name = "ma_custname";
- this.ma_custname.Size = new System.Drawing.Size(0, 20);
- this.ma_custname.TabIndex = 7;
- //
- // ma_custname_label
- //
- this.ma_custname_label.AutoSize = true;
- this.ma_custname_label.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.ma_custname_label.Location = new System.Drawing.Point(226, 21);
- this.ma_custname_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.ma_custname_label.Name = "ma_custname_label";
- this.ma_custname_label.Size = new System.Drawing.Size(65, 20);
- this.ma_custname_label.TabIndex = 6;
- this.ma_custname_label.Text = "客户名称";
- //
- // ma_salecode
- //
- this.ma_salecode.AutoSize = true;
- this.ma_salecode.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.ma_salecode.Location = new System.Drawing.Point(109, 21);
- this.ma_salecode.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.ma_salecode.Name = "ma_salecode";
- this.ma_salecode.Size = new System.Drawing.Size(0, 20);
- this.ma_salecode.TabIndex = 5;
- //
- // ma_salecode_label
- //
- this.ma_salecode_label.AutoSize = true;
- this.ma_salecode_label.Font = new System.Drawing.Font("微软雅黑", 10F);
- this.ma_salecode_label.Location = new System.Drawing.Point(29, 21);
- this.ma_salecode_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.ma_salecode_label.Name = "ma_salecode_label";
- this.ma_salecode_label.Size = new System.Drawing.Size(65, 20);
- this.ma_salecode_label.TabIndex = 4;
- this.ma_salecode_label.Text = "销售订单";
- //
- // Search
- //
- this.Search.AllPower = null;
- this.Search.BackColor = System.Drawing.Color.Transparent;
- this.Search.DownImage = ((System.Drawing.Image)(resources.GetObject("Search.DownImage")));
- this.Search.Image = null;
- this.Search.IsShowBorder = true;
- this.Search.Location = new System.Drawing.Point(268, 9);
- this.Search.Margin = new System.Windows.Forms.Padding(2);
- this.Search.MoveImage = ((System.Drawing.Image)(resources.GetObject("Search.MoveImage")));
- this.Search.Name = "Search";
- this.Search.NormalImage = ((System.Drawing.Image)(resources.GetObject("Search.NormalImage")));
- this.Search.Power = null;
- this.Search.Size = new System.Drawing.Size(56, 22);
- this.Search.TabIndex = 2;
- this.Search.Text = "查询";
- this.Search.UseVisualStyleBackColor = false;
- this.Search.Click += new System.EventHandler(this.Search_Click);
- //
- // MakeCode
- //
- this.MakeCode.AllPower = null;
- this.MakeCode.BackColor = System.Drawing.Color.White;
- this.MakeCode.ID = null;
- this.MakeCode.Location = new System.Drawing.Point(98, 9);
- this.MakeCode.Margin = new System.Windows.Forms.Padding(2);
- this.MakeCode.Name = "MakeCode";
- this.MakeCode.Power = null;
- this.MakeCode.Size = new System.Drawing.Size(148, 21);
- this.MakeCode.Str = null;
- this.MakeCode.Str1 = null;
- this.MakeCode.Str2 = null;
- this.MakeCode.TabIndex = 1;
- //
- // Query_MakeInf
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(926, 867);
- this.Controls.Add(this.label18_la_ll);
- this.Controls.Add(this.label17_ll_);
- this.Controls.Add(this.label16_lll_);
- this.Controls.Add(this.Label);
- this.Controls.Add(this.BOM);
- this.Controls.Add(this.Carft);
- this.Controls.Add(this.groupBoxWithBorder1);
- this.Controls.Add(this.Product);
- this.Controls.Add(this.MakeInf);
- this.Controls.Add(this.Search);
- this.Controls.Add(this.MakeCode);
- this.Controls.Add(this.label1_lll_);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Margin = new System.Windows.Forms.Padding(2);
- this.Name = "Query_MakeInf";
- this.Tag = "Query!MakeInf";
- this.Text = "Query_MakeInf";
- this.Load += new System.EventHandler(this.Query_MakeInf_Load);
- this.SizeChanged += new System.EventHandler(this.Query_MakeInf_SizeChanged);
- ((System.ComponentModel.ISupportInitialize)(this.Carft)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.BOM)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.Label)).EndInit();
- this.groupBoxWithBorder1.ResumeLayout(true);
- this.groupBoxWithBorder1.PerformLayout();
- this.Product.ResumeLayout(true);
- this.Product.PerformLayout();
- this.MakeInf.ResumeLayout(true);
- this.MakeInf.PerformLayout();
- this.ResumeLayout(true);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.Label label1_lll_;
- private CustomControl.TextBoxWithIcon.SnCollectionBox MakeCode;
- private CustomControl.ButtonUtil.NormalButton Search;
- private CustomControl.GroupBoxWithBorder.GroupBoxWithBorder MakeInf;
- private System.Windows.Forms.Label ma_softversion;
- private System.Windows.Forms.Label ma_softversion_label;
- private System.Windows.Forms.Label ma_wccode;
- private System.Windows.Forms.Label ma_wccode_label;
- private System.Windows.Forms.Label ma_custname;
- private System.Windows.Forms.Label ma_custname_label;
- private System.Windows.Forms.Label ma_salecode;
- private System.Windows.Forms.Label ma_salecode_label;
- private System.Windows.Forms.Label ma_bomversion;
- private System.Windows.Forms.Label ma_bomversion_label;
- private System.Windows.Forms.Label ma_qty;
- private System.Windows.Forms.Label ma_qty_label;
- private System.Windows.Forms.Label ma_unlimitageqty;
- private System.Windows.Forms.Label ma_unlimitageqty_label;
- private CustomControl.GroupBoxWithBorder.GroupBoxWithBorder Product;
- private System.Windows.Forms.Label pr_cartonweight;
- private System.Windows.Forms.Label pr_cartonweight_label;
- private System.Windows.Forms.Label pr_colorboxweight;
- private System.Windows.Forms.Label pr_colorboxweight_label;
- private System.Windows.Forms.Label pr_agingtime;
- private System.Windows.Forms.Label pr_agingtime_label;
- private System.Windows.Forms.Label pr_outboxinnerqty;
- private System.Windows.Forms.Label pr_outboxinnerqty_label;
- private System.Windows.Forms.Label pr_sendchecktype;
- private System.Windows.Forms.Label pr_sendchecktype_label;
- private System.Windows.Forms.Label pr_detail;
- private System.Windows.Forms.Label pr_detail_label;
- private System.Windows.Forms.Label pr_code;
- private System.Windows.Forms.Label pr_code_label;
- private CustomControl.GroupBoxWithBorder.GroupBoxWithBorder groupBoxWithBorder1;
- private System.Windows.Forms.Label BTNum;
- private System.Windows.Forms.Label label13_label_label;
- private System.Windows.Forms.Label MacNum;
- private System.Windows.Forms.Label Mac_label_label;
- private System.Windows.Forms.DataGridView Carft;
- private System.Windows.Forms.DataGridView BOM;
- private System.Windows.Forms.DataGridView Label;
- private System.Windows.Forms.Label label16_lll_;
- private System.Windows.Forms.Label label17_ll_;
- private System.Windows.Forms.Label label18_la_ll;
- private System.Windows.Forms.DataGridViewTextBoxColumn SP_MOTHERCODE;
- private System.Windows.Forms.DataGridViewTextBoxColumn SP_SONCODE;
- private System.Windows.Forms.DataGridViewTextBoxColumn SP_STEPCODE;
- private System.Windows.Forms.DataGridViewTextBoxColumn SP_REPCODE;
- private System.Windows.Forms.DataGridViewTextBoxColumn SP_TYPE;
- private System.Windows.Forms.DataGridViewTextBoxColumn SP_DESCRIPTION;
- private System.Windows.Forms.DataGridViewTextBoxColumn SP_DETNO;
- private System.Windows.Forms.DataGridViewTextBoxColumn SP_PREFIX;
- private System.Windows.Forms.DataGridViewTextBoxColumn SP_TRACEKIND;
- private System.Windows.Forms.DataGridViewTextBoxColumn SP_LENGTH;
- private System.Windows.Forms.DataGridViewTextBoxColumn SP_ONEUSEQTY;
- private System.Windows.Forms.DataGridViewTextBoxColumn SP_UPDATEMAN;
- private System.Windows.Forms.DataGridViewTextBoxColumn SP_UPDATEDATE;
- private System.Windows.Forms.DataGridViewTextBoxColumn LA_CODE;
- private System.Windows.Forms.DataGridViewTextBoxColumn LA_NAME;
- private System.Windows.Forms.DataGridViewTextBoxColumn LA_STATUS;
- private System.Windows.Forms.DataGridViewTextBoxColumn LA_INDATE;
- private System.Windows.Forms.DataGridViewTextBoxColumn LA_INMAN;
- private System.Windows.Forms.DataGridViewTextBoxColumn LA_PRINTNOS;
- private System.Windows.Forms.DataGridViewTextBoxColumn LA_URL;
- private System.Windows.Forms.DataGridViewTextBoxColumn LA_ISDEFAULT;
- private System.Windows.Forms.DataGridViewTextBoxColumn LA_TEMPLATETYPE;
- private System.Windows.Forms.DataGridViewTextBoxColumn LA_SOFTTYPE;
- private System.Windows.Forms.DataGridViewTextBoxColumn LA_PRODCODE;
- private System.Windows.Forms.DataGridViewTextBoxColumn CD_STEPNO;
- private System.Windows.Forms.DataGridViewCheckBoxColumn CD_IFINPUT;
- private System.Windows.Forms.DataGridViewCheckBoxColumn CD_IFOUTPUT;
- private System.Windows.Forms.DataGridViewCheckBoxColumn CD_IFTEST;
- private System.Windows.Forms.DataGridViewCheckBoxColumn CD_IFSNCHANGE;
- private System.Windows.Forms.DataGridViewCheckBoxColumn CD_IFOQC;
- private System.Windows.Forms.DataGridViewCheckBoxColumn CD_IFPACK;
- private System.Windows.Forms.DataGridViewCheckBoxColumn CD_IFREPAIR;
- private System.Windows.Forms.DataGridViewCheckBoxColumn CD_IFOUTLINE;
- private System.Windows.Forms.DataGridViewCheckBoxColumn CD_IFSMTINOUT;
- private System.Windows.Forms.DataGridViewCheckBoxColumn CD_IFSPC;
- private System.Windows.Forms.DataGridViewCheckBoxColumn CD_IFREDUCE;
- private System.Windows.Forms.DataGridViewCheckBoxColumn CD_IFMIDFINISH;
- private System.Windows.Forms.DataGridViewCheckBoxColumn CD_IFMIDINPUT;
- private System.Windows.Forms.DataGridViewCheckBoxColumn CD_IFBURNIN;
- private System.Windows.Forms.DataGridViewCheckBoxColumn CD_IFBURNOUT;
- private System.Windows.Forms.DataGridViewCheckBoxColumn CD_IFWEIGH;
- private System.Windows.Forms.DataGridViewCheckBoxColumn CD_FIRSTSTEP;
- private System.Windows.Forms.DataGridViewCheckBoxColumn CD_IFOFFLINE;
- private System.Windows.Forms.DataGridViewTextBoxColumn CD_DETNO;
- private System.Windows.Forms.DataGridViewTextBoxColumn CD_STEPCODE;
- private System.Windows.Forms.DataGridViewTextBoxColumn CD_STEPNAME;
- private System.Windows.Forms.DataGridViewTextBoxColumn CD_NEXTSTEPCODE;
- private System.Windows.Forms.DataGridViewTextBoxColumn CD_NEXTSTEPNAME;
- private System.Windows.Forms.DataGridViewTextBoxColumn CD_TABLE;
- private System.Windows.Forms.Label IMEINum;
- private System.Windows.Forms.Label label3_label_label;
- private System.Windows.Forms.Label BeforeSnRange_label_label;
- private System.Windows.Forms.Label BeforeSnRange;
- private System.Windows.Forms.Label beforesnqty_label_;
- private System.Windows.Forms.Label beforesnqty;
- private System.Windows.Forms.Label AfterSnRange;
- private System.Windows.Forms.Label AfterSnRange_label_;
- private System.Windows.Forms.Label aftersnqty;
- private System.Windows.Forms.Label aftersnqty_label_;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn1;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn2;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn3;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn4;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn5;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn6;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn7;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn8;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn9;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn10;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn11;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn12;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn13;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn14;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn15;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn16;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn17;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn18;
- 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 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.DataGridViewTextBoxColumn dataGridViewTextBoxColumn18;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn19;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn20;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn21;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn22;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn23;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn24;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn25;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn26;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn27;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn28;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn29;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn30;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn31;
- }
- }
|