| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202 |
- namespace Dongke.IBOSS.PRD.Client.ReportModule
- {
- partial class F_RPT_030112
- {
- /// <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.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = 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 dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = 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 dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = 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 dataGridViewCellStyle21 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle20 = 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 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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(F_RPT_030112));
- 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();
- this.tblScrapTotalModule = new System.Windows.Forms.TabControl();
- this.tapScrapTotalModule = new System.Windows.Forms.TabPage();
- this.dgvOrder = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
- this.orderno = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.logoname = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.g1goodscode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.goodsmodel = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.g1mcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.g1mremark = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.fhusercode_summary = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.fhtime = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.count = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.logoid = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.goodsid = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.orderid = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.tapScrapTotalModuleDetail = new System.Windows.Forms.TabPage();
- this.dgvOrderDetail = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
- this.OrderNo1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.FHTime1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.FHUserCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.BarCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.FinishedBarCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.SecurityCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.GoodsCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.g2goodsmodel = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.g2mcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.g2mremark = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.LogoName1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.GroutingUserCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.GroutingMouldCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.GroutingLineCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.GroutingDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.DeliverTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.ProductFinishedTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.TestMouldFlag = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.tapTotalNum = new System.Windows.Forms.TabPage();
- this.dgvNum = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
- this.coldate = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.collogoname = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.colgoodscode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.g3goodsmodel = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.g3mcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.g3mremark = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.fhusercode_number = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.colgoodscount = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.tabPage1 = new System.Windows.Forms.TabPage();
- this.dgvGoodsNum = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
- this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.g4mremark = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.taptemp = new System.Windows.Forms.TabPage();
- this.dgvtemporarily = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
- this.tapLuoCi = new System.Windows.Forms.TabPage();
- this.dgvlc = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
- this.dataGridViewTextBoxColumn30 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn31 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn32 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn33 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn34 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn35 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn36 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn37 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn38 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.tapLuoCiDetail = new System.Windows.Forms.TabPage();
- this.dgvlcDetail = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
- 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.dataGridViewCheckBoxColumn1 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.tsrOperate = new Dongke.IBOSS.PRD.Basics.BaseControls.C_ToolStrip();
- this.tsbtnAdaptive = new System.Windows.Forms.ToolStripButton();
- this.tsbtnClose = new System.Windows.Forms.ToolStripButton();
- this.tsbtnSynLog = new System.Windows.Forms.ToolStripButton();
- this.gbxCondition = new Dongke.IBOSS.PRD.Basics.BaseControls.C_GroupBox();
- this.chkTemporarilyFlag = new Dongke.IBOSS.PRD.Basics.BaseControls.C_StatusCheckBox();
- this.txtBarcode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
- this.c_Label2 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
- this.btnClearCondition = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Button();
- this.chkTestMouldFlag = new Dongke.IBOSS.PRD.Basics.BaseControls.C_StatusCheckBox();
- this.c_Label1 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
- this.lblGoodsType = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
- this.scbGoodsType = new Dongke.IBOSS.PRD.Client.Controls.SearchBox.ScbGoodsType();
- this.txtOrderNo = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
- this.dkLogoSearchBox1 = new Dongke.IBOSS.PRD.Client.Controls.SearchTextBox.dkLogoSearchBox();
- this.chkDateTime = new Dongke.IBOSS.PRD.Basics.BaseControls.C_CheckBox();
- this.lblAccountDateEnd = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
- this.dtpEndTime = new System.Windows.Forms.DateTimePicker();
- this.dtpStartTime = new System.Windows.Forms.DateTimePicker();
- this.btnSearch = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Button();
- this.txtFHUserCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TXT_Code();
- this.txtGoodsModel = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
- this.txtGoodsCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
- this.lblFHUserCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
- this.lblGoodsModel = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
- this.lblOrderNo = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
- this.Sel = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn2 = 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.BANMA = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.FINISHEDLOADBATCHNO = 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.dataGridViewTextBoxColumn39 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn40 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn41 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn42 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn43 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn44 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn45 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn46 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewCheckBoxColumn2 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.tblScrapTotalModule.SuspendLayout();
- this.tapScrapTotalModule.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvOrder)).BeginInit();
- this.tapScrapTotalModuleDetail.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvOrderDetail)).BeginInit();
- this.tapTotalNum.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvNum)).BeginInit();
- this.tabPage1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvGoodsNum)).BeginInit();
- this.taptemp.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvtemporarily)).BeginInit();
- this.tapLuoCi.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvlc)).BeginInit();
- this.tapLuoCiDetail.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvlcDetail)).BeginInit();
- this.tsrOperate.SuspendLayout();
- this.gbxCondition.SuspendLayout();
- this.SuspendLayout();
- //
- // tblScrapTotalModule
- //
- this.tblScrapTotalModule.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.tblScrapTotalModule.Controls.Add(this.tapScrapTotalModule);
- this.tblScrapTotalModule.Controls.Add(this.tapScrapTotalModuleDetail);
- this.tblScrapTotalModule.Controls.Add(this.tapTotalNum);
- this.tblScrapTotalModule.Controls.Add(this.tabPage1);
- this.tblScrapTotalModule.Controls.Add(this.taptemp);
- this.tblScrapTotalModule.Controls.Add(this.tapLuoCi);
- this.tblScrapTotalModule.Controls.Add(this.tapLuoCiDetail);
- this.tblScrapTotalModule.Location = new System.Drawing.Point(0, 109);
- this.tblScrapTotalModule.Margin = new System.Windows.Forms.Padding(0);
- this.tblScrapTotalModule.Name = "tblScrapTotalModule";
- this.tblScrapTotalModule.Padding = new System.Drawing.Point(0, 0);
- this.tblScrapTotalModule.SelectedIndex = 0;
- this.tblScrapTotalModule.Size = new System.Drawing.Size(1151, 427);
- this.tblScrapTotalModule.TabIndex = 2;
- //
- // tapScrapTotalModule
- //
- this.tapScrapTotalModule.Controls.Add(this.dgvOrder);
- this.tapScrapTotalModule.Location = new System.Drawing.Point(4, 22);
- this.tapScrapTotalModule.Margin = new System.Windows.Forms.Padding(0);
- this.tapScrapTotalModule.Name = "tapScrapTotalModule";
- this.tapScrapTotalModule.Size = new System.Drawing.Size(1143, 401);
- this.tapScrapTotalModule.TabIndex = 0;
- this.tapScrapTotalModule.Text = "产成品交接汇总表";
- this.tapScrapTotalModule.UseVisualStyleBackColor = true;
- //
- // dgvOrder
- //
- this.dgvOrder.AllowUserToAddRows = false;
- this.dgvOrder.AllowUserToDeleteRows = false;
- this.dgvOrder.AllowUserToModifyRows = true;
- this.dgvOrder.AllowUserToOrderColumns = true;
- this.dgvOrder.AllowUserToSortRows = false;
- dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
- this.dgvOrder.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
- this.dgvOrder.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.dgvOrder.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
- this.dgvOrder.CellHeight = 23;
- this.dgvOrder.ChildNodeColumnName = null;
- this.dgvOrder.ChildNodeColumnText = null;
- this.dgvOrder.ColumnDeep = 1;
- this.dgvOrder.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
- dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvOrder.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
- this.dgvOrder.ColumnHeadersHeight = 34;
- this.dgvOrder.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
- this.dgvOrder.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.orderno,
- this.logoname,
- this.g1goodscode,
- this.goodsmodel,
- this.g1mcode,
- this.g1mremark,
- this.fhusercode_summary,
- this.fhtime,
- this.count,
- this.logoid,
- this.goodsid,
- this.orderid});
- this.dgvOrder.ColumnTreeView = null;
- this.dgvOrder.ContextMenuVisible = ((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags)((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.Refine | Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.FileOut)));
- this.dgvOrder.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvOrder.DynamicColumnName = "";
- this.dgvOrder.EnableHeadersVisualStyles = false;
- this.dgvOrder.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvOrder.FormatQuantityColumns = null;
- this.dgvOrder.HasNode = false;
- this.dgvOrder.HorizontalMergeColumn = null;
- this.dgvOrder.IsAutoCountSum = true;
- this.dgvOrder.IsAutoResizeColumns = false;
- this.dgvOrder.IsClickF12 = false;
- this.dgvOrder.IsOpenMergeCellFlag = false;
- this.dgvOrder.IsSubTotalFlag = false;
- this.dgvOrder.IsTopDeep = false;
- this.dgvOrder.Location = new System.Drawing.Point(0, 0);
- this.dgvOrder.Margin = new System.Windows.Forms.Padding(0);
- this.dgvOrder.MergeColumnNames = null;
- this.dgvOrder.MergeDetailColumnNames = null;
- this.dgvOrder.MergeDetailOnlyColumn = null;
- this.dgvOrder.MergeOnlyColumn = null;
- this.dgvOrder.MultiSelect = false;
- this.dgvOrder.Name = "dgvOrder";
- this.dgvOrder.ReadOnly = true;
- this.dgvOrder.RefreshAtHscroll = false;
- this.dgvOrder.RowHeadersWidth = 50;
- this.dgvOrder.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
- dataGridViewCellStyle5.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
- this.dgvOrder.RowsDefaultCellStyle = dataGridViewCellStyle5;
- this.dgvOrder.RowTemplate.Height = 21;
- this.dgvOrder.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
- this.dgvOrder.Size = new System.Drawing.Size(1143, 401);
- this.dgvOrder.SortOrderColumnName = null;
- this.dgvOrder.TabIndex = 0;
- this.dgvOrder.Tag = true;
- this.dgvOrder.TotalSumColumns = null;
- this.dgvOrder.ViewRowFilter = "";
- this.dgvOrder.VirtualNodes = false;
- this.dgvOrder.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvScrapTotalModule_CellDoubleClick);
- //
- // orderno
- //
- this.orderno.DataPropertyName = "orderno";
- this.orderno.HeaderText = "生产订单";
- this.orderno.MinimumWidth = 8;
- this.orderno.Name = "orderno";
- this.orderno.ReadOnly = true;
- this.orderno.Width = 150;
- //
- // logoname
- //
- this.logoname.DataPropertyName = "logoname";
- this.logoname.HeaderText = "产品商标";
- this.logoname.MinimumWidth = 8;
- this.logoname.Name = "logoname";
- this.logoname.ReadOnly = true;
- this.logoname.Width = 150;
- //
- // g1goodscode
- //
- this.g1goodscode.DataPropertyName = "goodscode";
- this.g1goodscode.HeaderText = "产品编码";
- this.g1goodscode.MinimumWidth = 8;
- this.g1goodscode.Name = "g1goodscode";
- this.g1goodscode.ReadOnly = true;
- this.g1goodscode.Width = 150;
- //
- // goodsmodel
- //
- this.goodsmodel.DataPropertyName = "goodsmodel";
- this.goodsmodel.HeaderText = "产品型号";
- this.goodsmodel.MinimumWidth = 8;
- this.goodsmodel.Name = "goodsmodel";
- this.goodsmodel.ReadOnly = true;
- this.goodsmodel.Width = 150;
- //
- // g1mcode
- //
- this.g1mcode.DataPropertyName = "mcode";
- this.g1mcode.HeaderText = "物料编码";
- this.g1mcode.MinimumWidth = 8;
- this.g1mcode.Name = "g1mcode";
- this.g1mcode.ReadOnly = true;
- this.g1mcode.Width = 150;
- //
- // g1mremark
- //
- this.g1mremark.DataPropertyName = "mremark";
- this.g1mremark.HeaderText = "物料描述";
- this.g1mremark.MinimumWidth = 8;
- this.g1mremark.Name = "g1mremark";
- this.g1mremark.ReadOnly = true;
- this.g1mremark.Width = 150;
- //
- // fhusercode_summary
- //
- this.fhusercode_summary.DataPropertyName = "fhusercode_summary";
- this.fhusercode_summary.HeaderText = "交接工号";
- this.fhusercode_summary.MinimumWidth = 8;
- this.fhusercode_summary.Name = "fhusercode_summary";
- this.fhusercode_summary.ReadOnly = true;
- this.fhusercode_summary.Width = 150;
- //
- // fhtime
- //
- this.fhtime.DataPropertyName = "fhtime";
- dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle3.Format = "yyyy-MM-dd ";
- this.fhtime.DefaultCellStyle = dataGridViewCellStyle3;
- this.fhtime.HeaderText = "交接日期";
- this.fhtime.MinimumWidth = 8;
- this.fhtime.Name = "fhtime";
- this.fhtime.ReadOnly = true;
- this.fhtime.Visible = false;
- this.fhtime.Width = 150;
- //
- // count
- //
- this.count.DataPropertyName = "count";
- dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.count.DefaultCellStyle = dataGridViewCellStyle4;
- this.count.HeaderText = "产品数量";
- this.count.MinimumWidth = 8;
- this.count.Name = "count";
- this.count.ReadOnly = true;
- this.count.Width = 150;
- //
- // logoid
- //
- this.logoid.DataPropertyName = "logoid";
- this.logoid.HeaderText = "logoid";
- this.logoid.MinimumWidth = 8;
- this.logoid.Name = "logoid";
- this.logoid.ReadOnly = true;
- this.logoid.Visible = false;
- this.logoid.Width = 150;
- //
- // goodsid
- //
- this.goodsid.HeaderText = "goodsid";
- this.goodsid.MinimumWidth = 8;
- this.goodsid.Name = "goodsid";
- this.goodsid.ReadOnly = true;
- this.goodsid.Visible = false;
- this.goodsid.Width = 150;
- //
- // orderid
- //
- this.orderid.HeaderText = "orderid";
- this.orderid.MinimumWidth = 8;
- this.orderid.Name = "orderid";
- this.orderid.ReadOnly = true;
- this.orderid.Visible = false;
- this.orderid.Width = 150;
- //
- // tapScrapTotalModuleDetail
- //
- this.tapScrapTotalModuleDetail.Controls.Add(this.dgvOrderDetail);
- this.tapScrapTotalModuleDetail.Location = new System.Drawing.Point(4, 22);
- this.tapScrapTotalModuleDetail.Margin = new System.Windows.Forms.Padding(0);
- this.tapScrapTotalModuleDetail.Name = "tapScrapTotalModuleDetail";
- this.tapScrapTotalModuleDetail.Size = new System.Drawing.Size(1143, 401);
- this.tapScrapTotalModuleDetail.TabIndex = 1;
- this.tapScrapTotalModuleDetail.Text = "产成品交接明细表";
- this.tapScrapTotalModuleDetail.UseVisualStyleBackColor = true;
- //
- // dgvOrderDetail
- //
- this.dgvOrderDetail.AllowUserToAddRows = false;
- this.dgvOrderDetail.AllowUserToDeleteRows = false;
- this.dgvOrderDetail.AllowUserToModifyRows = true;
- this.dgvOrderDetail.AllowUserToOrderColumns = true;
- this.dgvOrderDetail.AllowUserToSortRows = false;
- dataGridViewCellStyle6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
- this.dgvOrderDetail.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle6;
- this.dgvOrderDetail.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.dgvOrderDetail.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
- this.dgvOrderDetail.CellHeight = 23;
- this.dgvOrderDetail.ChildNodeColumnName = null;
- this.dgvOrderDetail.ChildNodeColumnText = null;
- this.dgvOrderDetail.ColumnDeep = 1;
- this.dgvOrderDetail.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle7.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
- dataGridViewCellStyle7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle7.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle7.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle7.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle7.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvOrderDetail.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle7;
- this.dgvOrderDetail.ColumnHeadersHeight = 34;
- this.dgvOrderDetail.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
- this.dgvOrderDetail.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.OrderNo1,
- this.FHTime1,
- this.FHUserCode,
- this.BarCode,
- this.FinishedBarCode,
- this.SecurityCode,
- this.GoodsCode,
- this.g2goodsmodel,
- this.g2mcode,
- this.g2mremark,
- this.LogoName1,
- this.GroutingUserCode,
- this.GroutingMouldCode,
- this.GroutingLineCode,
- this.GroutingDate,
- this.DeliverTime,
- this.ProductFinishedTime,
- this.TestMouldFlag});
- this.dgvOrderDetail.ColumnTreeView = null;
- this.dgvOrderDetail.ContextMenuVisible = ((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags)((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.Refine | Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.FileOut)));
- this.dgvOrderDetail.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvOrderDetail.DynamicColumnName = "";
- this.dgvOrderDetail.EnableHeadersVisualStyles = false;
- this.dgvOrderDetail.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvOrderDetail.FormatQuantityColumns = null;
- this.dgvOrderDetail.HasNode = false;
- this.dgvOrderDetail.HorizontalMergeColumn = null;
- this.dgvOrderDetail.IsAutoCountSum = true;
- this.dgvOrderDetail.IsAutoResizeColumns = false;
- this.dgvOrderDetail.IsClickF12 = false;
- this.dgvOrderDetail.IsOpenMergeCellFlag = false;
- this.dgvOrderDetail.IsSubTotalFlag = false;
- this.dgvOrderDetail.IsTopDeep = false;
- this.dgvOrderDetail.Location = new System.Drawing.Point(0, 0);
- this.dgvOrderDetail.Margin = new System.Windows.Forms.Padding(0);
- this.dgvOrderDetail.MergeColumnNames = null;
- this.dgvOrderDetail.MergeDetailColumnNames = null;
- this.dgvOrderDetail.MergeDetailOnlyColumn = null;
- this.dgvOrderDetail.MergeOnlyColumn = null;
- this.dgvOrderDetail.MultiSelect = false;
- this.dgvOrderDetail.Name = "dgvOrderDetail";
- this.dgvOrderDetail.ReadOnly = true;
- this.dgvOrderDetail.RefreshAtHscroll = false;
- this.dgvOrderDetail.RowHeadersWidth = 50;
- this.dgvOrderDetail.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
- dataGridViewCellStyle12.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
- this.dgvOrderDetail.RowsDefaultCellStyle = dataGridViewCellStyle12;
- this.dgvOrderDetail.RowTemplate.Height = 21;
- this.dgvOrderDetail.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
- this.dgvOrderDetail.Size = new System.Drawing.Size(1143, 401);
- this.dgvOrderDetail.SortOrderColumnName = null;
- this.dgvOrderDetail.TabIndex = 0;
- this.dgvOrderDetail.Tag = true;
- this.dgvOrderDetail.TotalSumColumns = null;
- this.dgvOrderDetail.ViewRowFilter = "";
- this.dgvOrderDetail.VirtualNodes = false;
- //
- // OrderNo1
- //
- this.OrderNo1.DataPropertyName = "OrderNo";
- this.OrderNo1.HeaderText = "生产订单";
- this.OrderNo1.MinimumWidth = 8;
- this.OrderNo1.Name = "OrderNo1";
- this.OrderNo1.ReadOnly = true;
- this.OrderNo1.Width = 150;
- //
- // FHTime1
- //
- this.FHTime1.DataPropertyName = "FHTime";
- dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle8.Format = "yyyy-MM-dd HH:mm:ss";
- this.FHTime1.DefaultCellStyle = dataGridViewCellStyle8;
- this.FHTime1.HeaderText = "交接时间";
- this.FHTime1.MinimumWidth = 8;
- this.FHTime1.Name = "FHTime1";
- this.FHTime1.ReadOnly = true;
- this.FHTime1.Width = 150;
- //
- // FHUserCode
- //
- this.FHUserCode.DataPropertyName = "FHUserCode";
- this.FHUserCode.HeaderText = "交接工号";
- this.FHUserCode.MinimumWidth = 8;
- this.FHUserCode.Name = "FHUserCode";
- this.FHUserCode.ReadOnly = true;
- this.FHUserCode.Width = 150;
- //
- // BarCode
- //
- this.BarCode.DataPropertyName = "BarCode";
- this.BarCode.HeaderText = "产品条码";
- this.BarCode.MinimumWidth = 8;
- this.BarCode.Name = "BarCode";
- this.BarCode.ReadOnly = true;
- this.BarCode.Width = 150;
- //
- // FinishedBarCode
- //
- this.FinishedBarCode.DataPropertyName = "FinishedBarCode";
- this.FinishedBarCode.HeaderText = "包装条码";
- this.FinishedBarCode.MinimumWidth = 8;
- this.FinishedBarCode.Name = "FinishedBarCode";
- this.FinishedBarCode.ReadOnly = true;
- this.FinishedBarCode.Width = 150;
- //
- // SecurityCode
- //
- this.SecurityCode.DataPropertyName = "SecurityCode";
- this.SecurityCode.HeaderText = "防伪码";
- this.SecurityCode.MinimumWidth = 8;
- this.SecurityCode.Name = "SecurityCode";
- this.SecurityCode.ReadOnly = true;
- this.SecurityCode.Width = 150;
- //
- // GoodsCode
- //
- this.GoodsCode.DataPropertyName = "GoodsCode";
- this.GoodsCode.HeaderText = "产品编码";
- this.GoodsCode.MinimumWidth = 8;
- this.GoodsCode.Name = "GoodsCode";
- this.GoodsCode.ReadOnly = true;
- this.GoodsCode.Width = 150;
- //
- // g2goodsmodel
- //
- this.g2goodsmodel.DataPropertyName = "goodsmodel";
- this.g2goodsmodel.HeaderText = "产品型号";
- this.g2goodsmodel.MinimumWidth = 8;
- this.g2goodsmodel.Name = "g2goodsmodel";
- this.g2goodsmodel.ReadOnly = true;
- this.g2goodsmodel.Width = 150;
- //
- // g2mcode
- //
- this.g2mcode.DataPropertyName = "mcode";
- this.g2mcode.HeaderText = "物料编码";
- this.g2mcode.MinimumWidth = 8;
- this.g2mcode.Name = "g2mcode";
- this.g2mcode.ReadOnly = true;
- this.g2mcode.Width = 150;
- //
- // g2mremark
- //
- this.g2mremark.DataPropertyName = "mremark";
- this.g2mremark.HeaderText = "物料描述";
- this.g2mremark.MinimumWidth = 8;
- this.g2mremark.Name = "g2mremark";
- this.g2mremark.ReadOnly = true;
- this.g2mremark.Width = 150;
- //
- // LogoName1
- //
- this.LogoName1.DataPropertyName = "LogoName";
- this.LogoName1.HeaderText = "产品商标";
- this.LogoName1.MinimumWidth = 8;
- this.LogoName1.Name = "LogoName1";
- this.LogoName1.ReadOnly = true;
- this.LogoName1.Width = 150;
- //
- // GroutingUserCode
- //
- this.GroutingUserCode.DataPropertyName = "GroutingUserCode";
- this.GroutingUserCode.HeaderText = "成型工号";
- this.GroutingUserCode.MinimumWidth = 8;
- this.GroutingUserCode.Name = "GroutingUserCode";
- this.GroutingUserCode.ReadOnly = true;
- this.GroutingUserCode.Width = 150;
- //
- // GroutingMouldCode
- //
- this.GroutingMouldCode.DataPropertyName = "GroutingMouldCode";
- this.GroutingMouldCode.HeaderText = "模具编号";
- this.GroutingMouldCode.MinimumWidth = 8;
- this.GroutingMouldCode.Name = "GroutingMouldCode";
- this.GroutingMouldCode.ReadOnly = true;
- this.GroutingMouldCode.Width = 150;
- //
- // GroutingLineCode
- //
- this.GroutingLineCode.DataPropertyName = "GroutingLineCode";
- this.GroutingLineCode.HeaderText = "成型线编码";
- this.GroutingLineCode.MinimumWidth = 8;
- this.GroutingLineCode.Name = "GroutingLineCode";
- this.GroutingLineCode.ReadOnly = true;
- this.GroutingLineCode.Width = 150;
- //
- // GroutingDate
- //
- this.GroutingDate.DataPropertyName = "GroutingDate";
- dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle9.Format = "yyyy-MM-dd ";
- this.GroutingDate.DefaultCellStyle = dataGridViewCellStyle9;
- this.GroutingDate.HeaderText = "注浆日期";
- this.GroutingDate.MinimumWidth = 8;
- this.GroutingDate.Name = "GroutingDate";
- this.GroutingDate.ReadOnly = true;
- this.GroutingDate.Width = 150;
- //
- // DeliverTime
- //
- this.DeliverTime.DataPropertyName = "DeliverTime";
- dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle10.Format = "yyyy-MM-dd HH:mm:ss";
- this.DeliverTime.DefaultCellStyle = dataGridViewCellStyle10;
- this.DeliverTime.HeaderText = "交坯日期";
- this.DeliverTime.MinimumWidth = 8;
- this.DeliverTime.Name = "DeliverTime";
- this.DeliverTime.ReadOnly = true;
- this.DeliverTime.Width = 150;
- //
- // ProductFinishedTime
- //
- this.ProductFinishedTime.DataPropertyName = "ProductFinishedTime";
- dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle11.Format = "yyyy-MM-dd HH:mm:ss";
- dataGridViewCellStyle11.NullValue = null;
- this.ProductFinishedTime.DefaultCellStyle = dataGridViewCellStyle11;
- this.ProductFinishedTime.HeaderText = "生产完成时间";
- this.ProductFinishedTime.MinimumWidth = 8;
- this.ProductFinishedTime.Name = "ProductFinishedTime";
- this.ProductFinishedTime.ReadOnly = true;
- this.ProductFinishedTime.Width = 150;
- //
- // TestMouldFlag
- //
- this.TestMouldFlag.DataPropertyName = "TestMouldFlag";
- this.TestMouldFlag.FalseValue = "0";
- this.TestMouldFlag.HeaderText = "试验标识";
- this.TestMouldFlag.IndeterminateValue = "0";
- this.TestMouldFlag.MinimumWidth = 8;
- this.TestMouldFlag.Name = "TestMouldFlag";
- this.TestMouldFlag.ReadOnly = true;
- this.TestMouldFlag.TrueValue = "1";
- this.TestMouldFlag.Width = 150;
- //
- // tapTotalNum
- //
- this.tapTotalNum.Controls.Add(this.dgvNum);
- this.tapTotalNum.Location = new System.Drawing.Point(4, 22);
- this.tapTotalNum.Name = "tapTotalNum";
- this.tapTotalNum.Size = new System.Drawing.Size(1143, 401);
- this.tapTotalNum.TabIndex = 2;
- this.tapTotalNum.Text = "产成品交接数量";
- this.tapTotalNum.UseVisualStyleBackColor = true;
- //
- // dgvNum
- //
- this.dgvNum.AllowUserToAddRows = false;
- this.dgvNum.AllowUserToDeleteRows = false;
- this.dgvNum.AllowUserToModifyRows = true;
- this.dgvNum.AllowUserToOrderColumns = true;
- this.dgvNum.AllowUserToSortRows = false;
- dataGridViewCellStyle13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
- this.dgvNum.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle13;
- this.dgvNum.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.dgvNum.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
- this.dgvNum.CellHeight = 23;
- this.dgvNum.ChildNodeColumnName = null;
- this.dgvNum.ChildNodeColumnText = null;
- this.dgvNum.ColumnDeep = 1;
- this.dgvNum.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
- dataGridViewCellStyle14.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle14.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle14.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle14.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle14.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvNum.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle14;
- this.dgvNum.ColumnHeadersHeight = 34;
- this.dgvNum.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
- this.dgvNum.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.coldate,
- this.collogoname,
- this.colgoodscode,
- this.g3goodsmodel,
- this.g3mcode,
- this.g3mremark,
- this.fhusercode_number,
- this.colgoodscount});
- this.dgvNum.ColumnTreeView = null;
- this.dgvNum.ContextMenuVisible = ((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags)((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.Refine | Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.FileOut)));
- this.dgvNum.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvNum.DynamicColumnName = "";
- this.dgvNum.EnableHeadersVisualStyles = false;
- this.dgvNum.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvNum.FormatQuantityColumns = null;
- this.dgvNum.HasNode = false;
- this.dgvNum.HorizontalMergeColumn = null;
- this.dgvNum.IsAutoCountSum = true;
- this.dgvNum.IsAutoResizeColumns = false;
- this.dgvNum.IsClickF12 = false;
- this.dgvNum.IsOpenMergeCellFlag = false;
- this.dgvNum.IsSubTotalFlag = false;
- this.dgvNum.IsTopDeep = false;
- this.dgvNum.Location = new System.Drawing.Point(0, 0);
- this.dgvNum.Margin = new System.Windows.Forms.Padding(0);
- this.dgvNum.MergeColumnNames = null;
- this.dgvNum.MergeDetailColumnNames = null;
- this.dgvNum.MergeDetailOnlyColumn = null;
- this.dgvNum.MergeOnlyColumn = null;
- this.dgvNum.MultiSelect = false;
- this.dgvNum.Name = "dgvNum";
- this.dgvNum.ReadOnly = true;
- this.dgvNum.RefreshAtHscroll = false;
- this.dgvNum.RowHeadersWidth = 50;
- this.dgvNum.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
- dataGridViewCellStyle17.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
- this.dgvNum.RowsDefaultCellStyle = dataGridViewCellStyle17;
- this.dgvNum.RowTemplate.Height = 21;
- this.dgvNum.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
- this.dgvNum.Size = new System.Drawing.Size(1143, 401);
- this.dgvNum.SortOrderColumnName = null;
- this.dgvNum.TabIndex = 1;
- this.dgvNum.Tag = true;
- this.dgvNum.TotalSumColumns = null;
- this.dgvNum.ViewRowFilter = "";
- this.dgvNum.VirtualNodes = false;
- //
- // coldate
- //
- this.coldate.DataPropertyName = "fhtime";
- dataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle15.Format = "yyyy-MM-dd ";
- this.coldate.DefaultCellStyle = dataGridViewCellStyle15;
- this.coldate.HeaderText = "交接日期";
- this.coldate.MinimumWidth = 8;
- this.coldate.Name = "coldate";
- this.coldate.ReadOnly = true;
- this.coldate.Width = 150;
- //
- // collogoname
- //
- this.collogoname.DataPropertyName = "logoname";
- this.collogoname.HeaderText = "产品商标";
- this.collogoname.MinimumWidth = 8;
- this.collogoname.Name = "collogoname";
- this.collogoname.ReadOnly = true;
- this.collogoname.Width = 150;
- //
- // colgoodscode
- //
- this.colgoodscode.DataPropertyName = "goodscode";
- this.colgoodscode.HeaderText = "产品编码";
- this.colgoodscode.MinimumWidth = 8;
- this.colgoodscode.Name = "colgoodscode";
- this.colgoodscode.ReadOnly = true;
- this.colgoodscode.Width = 150;
- //
- // g3goodsmodel
- //
- this.g3goodsmodel.DataPropertyName = "goodsmodel";
- this.g3goodsmodel.HeaderText = "产品型号";
- this.g3goodsmodel.MinimumWidth = 8;
- this.g3goodsmodel.Name = "g3goodsmodel";
- this.g3goodsmodel.ReadOnly = true;
- this.g3goodsmodel.Width = 150;
- //
- // g3mcode
- //
- this.g3mcode.DataPropertyName = "mcode";
- this.g3mcode.HeaderText = "物料编码";
- this.g3mcode.MinimumWidth = 8;
- this.g3mcode.Name = "g3mcode";
- this.g3mcode.ReadOnly = true;
- this.g3mcode.Width = 150;
- //
- // g3mremark
- //
- this.g3mremark.DataPropertyName = "mremark";
- this.g3mremark.HeaderText = "物料描述";
- this.g3mremark.MinimumWidth = 8;
- this.g3mremark.Name = "g3mremark";
- this.g3mremark.ReadOnly = true;
- this.g3mremark.Width = 150;
- //
- // fhusercode_number
- //
- this.fhusercode_number.DataPropertyName = "fhusercode_number";
- this.fhusercode_number.HeaderText = "交接工号";
- this.fhusercode_number.MinimumWidth = 8;
- this.fhusercode_number.Name = "fhusercode_number";
- this.fhusercode_number.ReadOnly = true;
- this.fhusercode_number.Width = 150;
- //
- // colgoodscount
- //
- this.colgoodscount.DataPropertyName = "goodscount";
- dataGridViewCellStyle16.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- dataGridViewCellStyle16.Format = "N0";
- this.colgoodscount.DefaultCellStyle = dataGridViewCellStyle16;
- this.colgoodscount.HeaderText = "产品数量";
- this.colgoodscount.MinimumWidth = 8;
- this.colgoodscount.Name = "colgoodscount";
- this.colgoodscount.ReadOnly = true;
- this.colgoodscount.Width = 150;
- //
- // tabPage1
- //
- this.tabPage1.Controls.Add(this.dgvGoodsNum);
- this.tabPage1.Location = new System.Drawing.Point(4, 22);
- this.tabPage1.Name = "tabPage1";
- this.tabPage1.Size = new System.Drawing.Size(1143, 401);
- this.tabPage1.TabIndex = 3;
- this.tabPage1.Text = "产成品型号数量";
- this.tabPage1.UseVisualStyleBackColor = true;
- //
- // dgvGoodsNum
- //
- this.dgvGoodsNum.AllowUserToAddRows = false;
- this.dgvGoodsNum.AllowUserToDeleteRows = false;
- this.dgvGoodsNum.AllowUserToModifyRows = true;
- this.dgvGoodsNum.AllowUserToOrderColumns = true;
- this.dgvGoodsNum.AllowUserToSortRows = false;
- dataGridViewCellStyle18.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
- this.dgvGoodsNum.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle18;
- this.dgvGoodsNum.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.dgvGoodsNum.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
- this.dgvGoodsNum.CellHeight = 23;
- this.dgvGoodsNum.ChildNodeColumnName = null;
- this.dgvGoodsNum.ChildNodeColumnText = null;
- this.dgvGoodsNum.ColumnDeep = 1;
- this.dgvGoodsNum.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle19.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle19.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
- dataGridViewCellStyle19.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle19.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle19.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle19.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle19.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvGoodsNum.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle19;
- this.dgvGoodsNum.ColumnHeadersHeight = 34;
- this.dgvGoodsNum.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
- this.dgvGoodsNum.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.dataGridViewTextBoxColumn3,
- this.dataGridViewTextBoxColumn4,
- this.dataGridViewTextBoxColumn5,
- this.g4mremark,
- this.dataGridViewTextBoxColumn6});
- this.dgvGoodsNum.ColumnTreeView = null;
- this.dgvGoodsNum.ContextMenuVisible = ((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags)((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.Refine | Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.FileOut)));
- this.dgvGoodsNum.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvGoodsNum.DynamicColumnName = "";
- this.dgvGoodsNum.EnableHeadersVisualStyles = false;
- this.dgvGoodsNum.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvGoodsNum.FormatQuantityColumns = null;
- this.dgvGoodsNum.HasNode = false;
- this.dgvGoodsNum.HorizontalMergeColumn = null;
- this.dgvGoodsNum.IsAutoCountSum = true;
- this.dgvGoodsNum.IsAutoResizeColumns = false;
- this.dgvGoodsNum.IsClickF12 = false;
- this.dgvGoodsNum.IsOpenMergeCellFlag = false;
- this.dgvGoodsNum.IsSubTotalFlag = false;
- this.dgvGoodsNum.IsTopDeep = false;
- this.dgvGoodsNum.Location = new System.Drawing.Point(0, 0);
- this.dgvGoodsNum.Margin = new System.Windows.Forms.Padding(0);
- this.dgvGoodsNum.MergeColumnNames = null;
- this.dgvGoodsNum.MergeDetailColumnNames = null;
- this.dgvGoodsNum.MergeDetailOnlyColumn = null;
- this.dgvGoodsNum.MergeOnlyColumn = null;
- this.dgvGoodsNum.MultiSelect = false;
- this.dgvGoodsNum.Name = "dgvGoodsNum";
- this.dgvGoodsNum.ReadOnly = true;
- this.dgvGoodsNum.RefreshAtHscroll = false;
- this.dgvGoodsNum.RowHeadersWidth = 50;
- this.dgvGoodsNum.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
- dataGridViewCellStyle21.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
- this.dgvGoodsNum.RowsDefaultCellStyle = dataGridViewCellStyle21;
- this.dgvGoodsNum.RowTemplate.Height = 21;
- this.dgvGoodsNum.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
- this.dgvGoodsNum.Size = new System.Drawing.Size(1143, 401);
- this.dgvGoodsNum.SortOrderColumnName = null;
- this.dgvGoodsNum.TabIndex = 2;
- this.dgvGoodsNum.Tag = true;
- this.dgvGoodsNum.TotalSumColumns = null;
- this.dgvGoodsNum.ViewRowFilter = "";
- this.dgvGoodsNum.VirtualNodes = false;
- //
- // dataGridViewTextBoxColumn3
- //
- this.dataGridViewTextBoxColumn3.DataPropertyName = "goodscode";
- this.dataGridViewTextBoxColumn3.HeaderText = "产品编码";
- this.dataGridViewTextBoxColumn3.MinimumWidth = 8;
- this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
- this.dataGridViewTextBoxColumn3.ReadOnly = true;
- this.dataGridViewTextBoxColumn3.Width = 150;
- //
- // dataGridViewTextBoxColumn4
- //
- this.dataGridViewTextBoxColumn4.DataPropertyName = "goodsmodel";
- this.dataGridViewTextBoxColumn4.HeaderText = "产品型号";
- this.dataGridViewTextBoxColumn4.MinimumWidth = 8;
- this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
- this.dataGridViewTextBoxColumn4.ReadOnly = true;
- this.dataGridViewTextBoxColumn4.Width = 150;
- //
- // dataGridViewTextBoxColumn5
- //
- this.dataGridViewTextBoxColumn5.DataPropertyName = "mcode";
- this.dataGridViewTextBoxColumn5.HeaderText = "物料编码";
- this.dataGridViewTextBoxColumn5.MinimumWidth = 8;
- this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
- this.dataGridViewTextBoxColumn5.ReadOnly = true;
- this.dataGridViewTextBoxColumn5.Width = 150;
- //
- // g4mremark
- //
- this.g4mremark.DataPropertyName = "mremark";
- this.g4mremark.HeaderText = "物料描述";
- this.g4mremark.MinimumWidth = 8;
- this.g4mremark.Name = "g4mremark";
- this.g4mremark.ReadOnly = true;
- this.g4mremark.Width = 150;
- //
- // dataGridViewTextBoxColumn6
- //
- this.dataGridViewTextBoxColumn6.DataPropertyName = "goodscount";
- dataGridViewCellStyle20.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- dataGridViewCellStyle20.Format = "N0";
- this.dataGridViewTextBoxColumn6.DefaultCellStyle = dataGridViewCellStyle20;
- this.dataGridViewTextBoxColumn6.HeaderText = "产品数量";
- this.dataGridViewTextBoxColumn6.MinimumWidth = 8;
- this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
- this.dataGridViewTextBoxColumn6.ReadOnly = true;
- this.dataGridViewTextBoxColumn6.Width = 150;
- //
- // taptemp
- //
- this.taptemp.Controls.Add(this.dgvtemporarily);
- this.taptemp.Location = new System.Drawing.Point(4, 22);
- this.taptemp.Name = "taptemp";
- this.taptemp.Size = new System.Drawing.Size(1143, 401);
- this.taptemp.TabIndex = 4;
- this.taptemp.Text = "产成品交接未同步明细表";
- this.taptemp.UseVisualStyleBackColor = true;
- //
- // dgvtemporarily
- //
- this.dgvtemporarily.AllowUserToAddRows = false;
- this.dgvtemporarily.AllowUserToDeleteRows = false;
- this.dgvtemporarily.AllowUserToModifyRows = true;
- this.dgvtemporarily.AllowUserToOrderColumns = true;
- dataGridViewCellStyle22.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
- this.dgvtemporarily.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle22;
- this.dgvtemporarily.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.dgvtemporarily.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.dgvtemporarily.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
- this.dgvtemporarily.CellHeight = 23;
- this.dgvtemporarily.ChildNodeColumnName = null;
- this.dgvtemporarily.ChildNodeColumnText = null;
- this.dgvtemporarily.ColumnDeep = 1;
- this.dgvtemporarily.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle23.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle23.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
- dataGridViewCellStyle23.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle23.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle23.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle23.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle23.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvtemporarily.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle23;
- this.dgvtemporarily.ColumnHeadersHeight = 34;
- this.dgvtemporarily.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
- this.dgvtemporarily.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.Sel,
- this.dataGridViewTextBoxColumn1,
- this.dataGridViewTextBoxColumn2,
- this.dataGridViewTextBoxColumn7,
- this.dataGridViewTextBoxColumn8,
- this.dataGridViewTextBoxColumn9,
- this.BANMA,
- this.FINISHEDLOADBATCHNO,
- this.dataGridViewTextBoxColumn10,
- this.dataGridViewTextBoxColumn11,
- this.dataGridViewTextBoxColumn12,
- this.dataGridViewTextBoxColumn13,
- this.dataGridViewTextBoxColumn39,
- this.dataGridViewTextBoxColumn40,
- this.dataGridViewTextBoxColumn41,
- this.dataGridViewTextBoxColumn42,
- this.dataGridViewTextBoxColumn43,
- this.dataGridViewTextBoxColumn44,
- this.dataGridViewTextBoxColumn45,
- this.dataGridViewTextBoxColumn46,
- this.dataGridViewCheckBoxColumn2});
- this.dgvtemporarily.ColumnTreeView = null;
- this.dgvtemporarily.ContextMenuVisible = ((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags)((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.Refine | Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.FileOut)));
- this.dgvtemporarily.DynamicColumnName = "";
- this.dgvtemporarily.EnableHeadersVisualStyles = false;
- this.dgvtemporarily.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvtemporarily.FormatQuantityColumns = null;
- this.dgvtemporarily.HasNode = false;
- this.dgvtemporarily.HorizontalMergeColumn = null;
- this.dgvtemporarily.IsAutoCountSum = true;
- this.dgvtemporarily.IsAutoResizeColumns = false;
- this.dgvtemporarily.IsClickF12 = false;
- this.dgvtemporarily.IsOpenMergeCellFlag = false;
- this.dgvtemporarily.IsSubTotalFlag = false;
- this.dgvtemporarily.IsTopDeep = false;
- this.dgvtemporarily.Location = new System.Drawing.Point(0, 0);
- this.dgvtemporarily.Margin = new System.Windows.Forms.Padding(0);
- this.dgvtemporarily.MergeColumnNames = null;
- this.dgvtemporarily.MergeDetailColumnNames = null;
- this.dgvtemporarily.MergeDetailOnlyColumn = null;
- this.dgvtemporarily.MergeOnlyColumn = null;
- this.dgvtemporarily.MultiSelect = false;
- this.dgvtemporarily.Name = "dgvtemporarily";
- this.dgvtemporarily.RefreshAtHscroll = false;
- this.dgvtemporarily.RowHeadersWidth = 50;
- this.dgvtemporarily.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
- dataGridViewCellStyle28.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
- this.dgvtemporarily.RowsDefaultCellStyle = dataGridViewCellStyle28;
- this.dgvtemporarily.RowTemplate.Height = 21;
- this.dgvtemporarily.Size = new System.Drawing.Size(1143, 401);
- this.dgvtemporarily.SortOrderColumnName = null;
- this.dgvtemporarily.TabIndex = 1;
- this.dgvtemporarily.Tag = true;
- this.dgvtemporarily.TotalSumColumns = null;
- this.dgvtemporarily.ViewRowFilter = "";
- this.dgvtemporarily.VirtualNodes = false;
- this.dgvtemporarily.CurrentCellDirtyStateChanged += new System.EventHandler(this.dgvtemporarily_CurrentCellDirtyStateChanged);
- //
- // tapLuoCi
- //
- this.tapLuoCi.Controls.Add(this.dgvlc);
- this.tapLuoCi.Location = new System.Drawing.Point(4, 22);
- this.tapLuoCi.Name = "tapLuoCi";
- this.tapLuoCi.Size = new System.Drawing.Size(1143, 401);
- this.tapLuoCi.TabIndex = 5;
- this.tapLuoCi.Text = "裸瓷交接汇总表";
- this.tapLuoCi.UseVisualStyleBackColor = true;
- //
- // dgvlc
- //
- this.dgvlc.AllowUserToAddRows = false;
- this.dgvlc.AllowUserToDeleteRows = false;
- this.dgvlc.AllowUserToModifyRows = true;
- this.dgvlc.AllowUserToOrderColumns = true;
- dataGridViewCellStyle29.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
- this.dgvlc.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle29;
- this.dgvlc.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.dgvlc.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
- this.dgvlc.CellHeight = 23;
- this.dgvlc.ChildNodeColumnName = null;
- this.dgvlc.ChildNodeColumnText = null;
- this.dgvlc.ColumnDeep = 1;
- this.dgvlc.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle30.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle30.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
- dataGridViewCellStyle30.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle30.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle30.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle30.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle30.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvlc.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle30;
- this.dgvlc.ColumnHeadersHeight = 34;
- this.dgvlc.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
- this.dgvlc.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.dataGridViewTextBoxColumn30,
- this.dataGridViewTextBoxColumn31,
- this.dataGridViewTextBoxColumn32,
- this.dataGridViewTextBoxColumn33,
- this.dataGridViewTextBoxColumn34,
- this.dataGridViewTextBoxColumn35,
- this.dataGridViewTextBoxColumn36,
- this.dataGridViewTextBoxColumn37,
- this.dataGridViewTextBoxColumn38});
- this.dgvlc.ColumnTreeView = null;
- this.dgvlc.ContextMenuVisible = ((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags)((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.Refine | Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.FileOut)));
- this.dgvlc.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvlc.DynamicColumnName = "";
- this.dgvlc.EnableHeadersVisualStyles = false;
- this.dgvlc.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvlc.FormatQuantityColumns = null;
- this.dgvlc.HasNode = false;
- this.dgvlc.HorizontalMergeColumn = null;
- this.dgvlc.IsAutoCountSum = true;
- this.dgvlc.IsAutoResizeColumns = false;
- this.dgvlc.IsClickF12 = false;
- this.dgvlc.IsOpenMergeCellFlag = false;
- this.dgvlc.IsSubTotalFlag = false;
- this.dgvlc.IsTopDeep = false;
- this.dgvlc.Location = new System.Drawing.Point(0, 0);
- this.dgvlc.MergeColumnNames = null;
- this.dgvlc.MergeDetailColumnNames = null;
- this.dgvlc.MergeDetailOnlyColumn = null;
- this.dgvlc.MergeOnlyColumn = null;
- this.dgvlc.Name = "dgvlc";
- this.dgvlc.ReadOnly = true;
- this.dgvlc.RefreshAtHscroll = false;
- this.dgvlc.RowHeadersWidth = 50;
- this.dgvlc.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
- dataGridViewCellStyle31.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
- this.dgvlc.RowsDefaultCellStyle = dataGridViewCellStyle31;
- this.dgvlc.RowTemplate.Height = 21;
- this.dgvlc.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
- this.dgvlc.Size = new System.Drawing.Size(1143, 401);
- this.dgvlc.SortOrderColumnName = null;
- this.dgvlc.TabIndex = 1;
- this.dgvlc.Tag = true;
- this.dgvlc.TotalSumColumns = null;
- this.dgvlc.ViewRowFilter = "";
- this.dgvlc.VirtualNodes = false;
- //
- // dataGridViewTextBoxColumn30
- //
- this.dataGridViewTextBoxColumn30.DataPropertyName = "logoName";
- this.dataGridViewTextBoxColumn30.HeaderText = "产品商标";
- this.dataGridViewTextBoxColumn30.Name = "dataGridViewTextBoxColumn30";
- this.dataGridViewTextBoxColumn30.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn31
- //
- this.dataGridViewTextBoxColumn31.DataPropertyName = "goodsCode";
- this.dataGridViewTextBoxColumn31.HeaderText = "产品编码";
- this.dataGridViewTextBoxColumn31.Name = "dataGridViewTextBoxColumn31";
- this.dataGridViewTextBoxColumn31.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn32
- //
- this.dataGridViewTextBoxColumn32.DataPropertyName = "goodsModel";
- this.dataGridViewTextBoxColumn32.HeaderText = "产品型号";
- this.dataGridViewTextBoxColumn32.Name = "dataGridViewTextBoxColumn32";
- this.dataGridViewTextBoxColumn32.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn33
- //
- this.dataGridViewTextBoxColumn33.DataPropertyName = "materCode";
- this.dataGridViewTextBoxColumn33.HeaderText = "物料编码";
- this.dataGridViewTextBoxColumn33.Name = "dataGridViewTextBoxColumn33";
- this.dataGridViewTextBoxColumn33.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn34
- //
- this.dataGridViewTextBoxColumn34.DataPropertyName = "materRemark";
- this.dataGridViewTextBoxColumn34.HeaderText = "物料描述";
- this.dataGridViewTextBoxColumn34.Name = "dataGridViewTextBoxColumn34";
- this.dataGridViewTextBoxColumn34.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn35
- //
- this.dataGridViewTextBoxColumn35.DataPropertyName = "lcFhUserCode";
- this.dataGridViewTextBoxColumn35.HeaderText = "裸瓷交接工号";
- this.dataGridViewTextBoxColumn35.Name = "dataGridViewTextBoxColumn35";
- this.dataGridViewTextBoxColumn35.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn36
- //
- this.dataGridViewTextBoxColumn36.DataPropertyName = "lcFhCount";
- this.dataGridViewTextBoxColumn36.HeaderText = "裸瓷交接数量";
- this.dataGridViewTextBoxColumn36.Name = "dataGridViewTextBoxColumn36";
- this.dataGridViewTextBoxColumn36.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn37
- //
- this.dataGridViewTextBoxColumn37.DataPropertyName = "logoID";
- this.dataGridViewTextBoxColumn37.HeaderText = "logoid";
- this.dataGridViewTextBoxColumn37.Name = "dataGridViewTextBoxColumn37";
- this.dataGridViewTextBoxColumn37.ReadOnly = true;
- this.dataGridViewTextBoxColumn37.Visible = false;
- //
- // dataGridViewTextBoxColumn38
- //
- this.dataGridViewTextBoxColumn38.DataPropertyName = "goodsID";
- this.dataGridViewTextBoxColumn38.HeaderText = "goodsid";
- this.dataGridViewTextBoxColumn38.Name = "dataGridViewTextBoxColumn38";
- this.dataGridViewTextBoxColumn38.ReadOnly = true;
- this.dataGridViewTextBoxColumn38.Visible = false;
- //
- // tapLuoCiDetail
- //
- this.tapLuoCiDetail.Controls.Add(this.dgvlcDetail);
- this.tapLuoCiDetail.Location = new System.Drawing.Point(4, 22);
- this.tapLuoCiDetail.Name = "tapLuoCiDetail";
- this.tapLuoCiDetail.Padding = new System.Windows.Forms.Padding(3);
- this.tapLuoCiDetail.Size = new System.Drawing.Size(1143, 401);
- this.tapLuoCiDetail.TabIndex = 6;
- this.tapLuoCiDetail.Text = "裸瓷交接明细表";
- this.tapLuoCiDetail.UseVisualStyleBackColor = true;
- //
- // dgvlcDetail
- //
- this.dgvlcDetail.AllowUserToAddRows = false;
- this.dgvlcDetail.AllowUserToDeleteRows = false;
- this.dgvlcDetail.AllowUserToModifyRows = true;
- this.dgvlcDetail.AllowUserToOrderColumns = true;
- dataGridViewCellStyle32.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
- this.dgvlcDetail.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle32;
- this.dgvlcDetail.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.dgvlcDetail.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
- this.dgvlcDetail.CellHeight = 23;
- this.dgvlcDetail.ChildNodeColumnName = null;
- this.dgvlcDetail.ChildNodeColumnText = null;
- this.dgvlcDetail.ColumnDeep = 1;
- this.dgvlcDetail.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle33.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle33.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
- dataGridViewCellStyle33.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle33.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle33.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle33.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle33.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvlcDetail.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle33;
- this.dgvlcDetail.ColumnHeadersHeight = 34;
- this.dgvlcDetail.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
- this.dgvlcDetail.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.dataGridViewTextBoxColumn14,
- this.dataGridViewTextBoxColumn15,
- this.dataGridViewTextBoxColumn16,
- this.dataGridViewTextBoxColumn17,
- this.dataGridViewTextBoxColumn18,
- this.dataGridViewTextBoxColumn19,
- this.dataGridViewTextBoxColumn20,
- this.dataGridViewTextBoxColumn21,
- this.dataGridViewTextBoxColumn22,
- this.dataGridViewTextBoxColumn23,
- this.dataGridViewTextBoxColumn24,
- this.dataGridViewTextBoxColumn25,
- this.dataGridViewTextBoxColumn26,
- this.dataGridViewTextBoxColumn27,
- this.dataGridViewTextBoxColumn28,
- this.dataGridViewTextBoxColumn29,
- this.dataGridViewCheckBoxColumn1});
- this.dgvlcDetail.ColumnTreeView = null;
- this.dgvlcDetail.ContextMenuVisible = ((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags)((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.Refine | Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.FileOut)));
- this.dgvlcDetail.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvlcDetail.DynamicColumnName = "";
- this.dgvlcDetail.EnableHeadersVisualStyles = false;
- this.dgvlcDetail.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvlcDetail.FormatQuantityColumns = null;
- this.dgvlcDetail.HasNode = false;
- this.dgvlcDetail.HorizontalMergeColumn = null;
- this.dgvlcDetail.IsAutoCountSum = true;
- this.dgvlcDetail.IsAutoResizeColumns = false;
- this.dgvlcDetail.IsClickF12 = false;
- this.dgvlcDetail.IsOpenMergeCellFlag = false;
- this.dgvlcDetail.IsSubTotalFlag = false;
- this.dgvlcDetail.IsTopDeep = false;
- this.dgvlcDetail.Location = new System.Drawing.Point(3, 3);
- this.dgvlcDetail.MergeColumnNames = null;
- this.dgvlcDetail.MergeDetailColumnNames = null;
- this.dgvlcDetail.MergeDetailOnlyColumn = null;
- this.dgvlcDetail.MergeOnlyColumn = null;
- this.dgvlcDetail.Name = "dgvlcDetail";
- this.dgvlcDetail.ReadOnly = true;
- this.dgvlcDetail.RefreshAtHscroll = false;
- this.dgvlcDetail.RowHeadersWidth = 50;
- this.dgvlcDetail.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
- dataGridViewCellStyle34.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
- this.dgvlcDetail.RowsDefaultCellStyle = dataGridViewCellStyle34;
- this.dgvlcDetail.RowTemplate.Height = 21;
- this.dgvlcDetail.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
- this.dgvlcDetail.Size = new System.Drawing.Size(1137, 395);
- this.dgvlcDetail.SortOrderColumnName = null;
- this.dgvlcDetail.TabIndex = 1;
- this.dgvlcDetail.Tag = true;
- this.dgvlcDetail.TotalSumColumns = null;
- this.dgvlcDetail.ViewRowFilter = "";
- this.dgvlcDetail.VirtualNodes = false;
- //
- // dataGridViewTextBoxColumn14
- //
- this.dataGridViewTextBoxColumn14.DataPropertyName = "LCFHTime";
- this.dataGridViewTextBoxColumn14.HeaderText = "裸瓷交接时间";
- this.dataGridViewTextBoxColumn14.Name = "dataGridViewTextBoxColumn14";
- this.dataGridViewTextBoxColumn14.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn15
- //
- this.dataGridViewTextBoxColumn15.DataPropertyName = "LCFHUserCode";
- this.dataGridViewTextBoxColumn15.HeaderText = "裸瓷交接工号";
- this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
- this.dataGridViewTextBoxColumn15.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn16
- //
- this.dataGridViewTextBoxColumn16.DataPropertyName = "BarCode";
- this.dataGridViewTextBoxColumn16.HeaderText = "产品条码";
- this.dataGridViewTextBoxColumn16.Name = "dataGridViewTextBoxColumn16";
- this.dataGridViewTextBoxColumn16.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn17
- //
- this.dataGridViewTextBoxColumn17.DataPropertyName = "outLabelCode";
- this.dataGridViewTextBoxColumn17.HeaderText = "包装条码";
- this.dataGridViewTextBoxColumn17.Name = "dataGridViewTextBoxColumn17";
- this.dataGridViewTextBoxColumn17.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn18
- //
- this.dataGridViewTextBoxColumn18.DataPropertyName = "SecurityCode";
- this.dataGridViewTextBoxColumn18.HeaderText = "防伪码";
- this.dataGridViewTextBoxColumn18.Name = "dataGridViewTextBoxColumn18";
- this.dataGridViewTextBoxColumn18.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn19
- //
- this.dataGridViewTextBoxColumn19.DataPropertyName = "GoodsCode";
- this.dataGridViewTextBoxColumn19.HeaderText = "产品编码";
- this.dataGridViewTextBoxColumn19.Name = "dataGridViewTextBoxColumn19";
- this.dataGridViewTextBoxColumn19.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn20
- //
- this.dataGridViewTextBoxColumn20.DataPropertyName = "GoodsModel";
- this.dataGridViewTextBoxColumn20.HeaderText = "产品型号";
- this.dataGridViewTextBoxColumn20.Name = "dataGridViewTextBoxColumn20";
- this.dataGridViewTextBoxColumn20.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn21
- //
- this.dataGridViewTextBoxColumn21.DataPropertyName = "MaterCode";
- this.dataGridViewTextBoxColumn21.HeaderText = "物料编码";
- this.dataGridViewTextBoxColumn21.Name = "dataGridViewTextBoxColumn21";
- this.dataGridViewTextBoxColumn21.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn22
- //
- this.dataGridViewTextBoxColumn22.DataPropertyName = "MaterRemarks";
- this.dataGridViewTextBoxColumn22.HeaderText = "物料描述";
- this.dataGridViewTextBoxColumn22.Name = "dataGridViewTextBoxColumn22";
- this.dataGridViewTextBoxColumn22.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn23
- //
- this.dataGridViewTextBoxColumn23.DataPropertyName = "LogoName";
- this.dataGridViewTextBoxColumn23.HeaderText = "产品商标";
- this.dataGridViewTextBoxColumn23.Name = "dataGridViewTextBoxColumn23";
- this.dataGridViewTextBoxColumn23.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn24
- //
- this.dataGridViewTextBoxColumn24.DataPropertyName = "GroutingUserCode";
- this.dataGridViewTextBoxColumn24.HeaderText = "成型工号";
- this.dataGridViewTextBoxColumn24.Name = "dataGridViewTextBoxColumn24";
- this.dataGridViewTextBoxColumn24.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn25
- //
- this.dataGridViewTextBoxColumn25.DataPropertyName = "GroutingMouldCode";
- this.dataGridViewTextBoxColumn25.HeaderText = "模具编号";
- this.dataGridViewTextBoxColumn25.Name = "dataGridViewTextBoxColumn25";
- this.dataGridViewTextBoxColumn25.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn26
- //
- this.dataGridViewTextBoxColumn26.DataPropertyName = "GroutingLineCode";
- this.dataGridViewTextBoxColumn26.HeaderText = "成型线编码";
- this.dataGridViewTextBoxColumn26.Name = "dataGridViewTextBoxColumn26";
- this.dataGridViewTextBoxColumn26.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn27
- //
- this.dataGridViewTextBoxColumn27.DataPropertyName = "GroutingDate";
- this.dataGridViewTextBoxColumn27.HeaderText = "注浆日期";
- this.dataGridViewTextBoxColumn27.Name = "dataGridViewTextBoxColumn27";
- this.dataGridViewTextBoxColumn27.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn28
- //
- this.dataGridViewTextBoxColumn28.DataPropertyName = "DELIVERTIME";
- this.dataGridViewTextBoxColumn28.HeaderText = "交坯日期";
- this.dataGridViewTextBoxColumn28.Name = "dataGridViewTextBoxColumn28";
- this.dataGridViewTextBoxColumn28.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn29
- //
- this.dataGridViewTextBoxColumn29.DataPropertyName = "FINISHEDDATE";
- this.dataGridViewTextBoxColumn29.HeaderText = "生产完成时间";
- this.dataGridViewTextBoxColumn29.Name = "dataGridViewTextBoxColumn29";
- this.dataGridViewTextBoxColumn29.ReadOnly = true;
- //
- // dataGridViewCheckBoxColumn1
- //
- this.dataGridViewCheckBoxColumn1.DataPropertyName = "TestMouldFlag";
- 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;
- //
- // tsrOperate
- //
- this.tsrOperate.AutoSize = false;
- this.tsrOperate.BackColor = System.Drawing.Color.Transparent;
- this.tsrOperate.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tsrOperate.ImageScalingSize = new System.Drawing.Size(24, 24);
- this.tsrOperate.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.tsbtnAdaptive,
- this.tsbtnClose,
- this.tsbtnSynLog});
- this.tsrOperate.Location = new System.Drawing.Point(0, 0);
- this.tsrOperate.Name = "tsrOperate";
- this.tsrOperate.Padding = new System.Windows.Forms.Padding(0, 0, 2, 0);
- this.tsrOperate.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
- this.tsrOperate.ShowItemToolTips = false;
- this.tsrOperate.Size = new System.Drawing.Size(1167, 35);
- this.tsrOperate.TabIndex = 0;
- this.tsrOperate.Text = "toolStrip1";
- //
- // tsbtnAdaptive
- //
- this.tsbtnAdaptive.AutoSize = false;
- this.tsbtnAdaptive.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tsbtnAdaptive.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
- this.tsbtnAdaptive.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.tsbtnAdaptive.Name = "tsbtnAdaptive";
- this.tsbtnAdaptive.Size = new System.Drawing.Size(90, 25);
- this.tsbtnAdaptive.Text = "自适应列宽(&A)";
- this.tsbtnAdaptive.Click += new System.EventHandler(this.tsbtnAdaptive_Click);
- //
- // tsbtnClose
- //
- this.tsbtnClose.AutoSize = false;
- this.tsbtnClose.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tsbtnClose.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
- this.tsbtnClose.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.tsbtnClose.Name = "tsbtnClose";
- this.tsbtnClose.Size = new System.Drawing.Size(60, 25);
- this.tsbtnClose.Text = "关闭(&X)";
- this.tsbtnClose.Click += new System.EventHandler(this.tsbtnClose_Click);
- //
- // tsbtnSynLog
- //
- this.tsbtnSynLog.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.tsbtnSynLog.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.tsbtnSynLog.Name = "tsbtnSynLog";
- this.tsbtnSynLog.Size = new System.Drawing.Size(111, 32);
- this.tsbtnSynLog.Text = "同步未交接产品(&L)";
- this.tsbtnSynLog.Click += new System.EventHandler(this.tsbtnSynLog_Click);
- //
- // gbxCondition
- //
- this.gbxCondition.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.gbxCondition.BackColor = System.Drawing.Color.Transparent;
- this.gbxCondition.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gbxCondition.BackgroundImage")));
- this.gbxCondition.Controls.Add(this.chkTemporarilyFlag);
- this.gbxCondition.Controls.Add(this.txtBarcode);
- this.gbxCondition.Controls.Add(this.c_Label2);
- this.gbxCondition.Controls.Add(this.btnClearCondition);
- this.gbxCondition.Controls.Add(this.chkTestMouldFlag);
- this.gbxCondition.Controls.Add(this.c_Label1);
- this.gbxCondition.Controls.Add(this.lblGoodsType);
- this.gbxCondition.Controls.Add(this.scbGoodsType);
- this.gbxCondition.Controls.Add(this.txtOrderNo);
- this.gbxCondition.Controls.Add(this.dkLogoSearchBox1);
- this.gbxCondition.Controls.Add(this.chkDateTime);
- this.gbxCondition.Controls.Add(this.lblAccountDateEnd);
- this.gbxCondition.Controls.Add(this.dtpEndTime);
- this.gbxCondition.Controls.Add(this.dtpStartTime);
- this.gbxCondition.Controls.Add(this.btnSearch);
- this.gbxCondition.Controls.Add(this.txtFHUserCode);
- this.gbxCondition.Controls.Add(this.txtGoodsModel);
- this.gbxCondition.Controls.Add(this.txtGoodsCode);
- this.gbxCondition.Controls.Add(this.lblFHUserCode);
- this.gbxCondition.Controls.Add(this.lblGoodsModel);
- this.gbxCondition.Controls.Add(this.lblOrderNo);
- this.gbxCondition.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.gbxCondition.ForeColor = System.Drawing.SystemColors.ControlText;
- this.gbxCondition.IsMustInput = false;
- this.gbxCondition.Location = new System.Drawing.Point(4, 38);
- this.gbxCondition.Name = "gbxCondition";
- this.gbxCondition.OriginalHeight = -1;
- this.gbxCondition.Size = new System.Drawing.Size(1147, 68);
- this.gbxCondition.TabIndex = 1;
- this.gbxCondition.TabStop = false;
- this.gbxCondition.Text = "查询条件 ▼";
- //
- // chkTemporarilyFlag
- //
- this.chkTemporarilyFlag.BackColor = System.Drawing.SystemColors.Control;
- this.chkTemporarilyFlag.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("chkTemporarilyFlag.BackgroundImage")));
- this.chkTemporarilyFlag.FalseText = "否";
- this.chkTemporarilyFlag.Location = new System.Drawing.Point(903, 16);
- this.chkTemporarilyFlag.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.chkTemporarilyFlag.Name = "chkTemporarilyFlag";
- this.chkTemporarilyFlag.Size = new System.Drawing.Size(178, 16);
- this.chkTemporarilyFlag.TabIndex = 48;
- this.chkTemporarilyFlag.Title = "产成品暂存标识";
- this.chkTemporarilyFlag.TitleAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.chkTemporarilyFlag.TrueText = "是";
- //
- // txtBarcode
- //
- this.txtBarcode.BackColor = System.Drawing.SystemColors.Window;
- this.txtBarcode.BackgroundColor = System.Drawing.SystemColors.Window;
- this.txtBarcode.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
- this.txtBarcode.ErrorMessage = "";
- this.txtBarcode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtBarcode.ImeMode = System.Windows.Forms.ImeMode.Off;
- this.txtBarcode.Location = new System.Drawing.Point(445, 40);
- this.txtBarcode.MaxLength = 21;
- this.txtBarcode.Name = "txtBarcode";
- this.txtBarcode.Size = new System.Drawing.Size(110, 21);
- this.txtBarcode.TabIndex = 47;
- this.txtBarcode.TextValue = "";
- //
- // c_Label2
- //
- this.c_Label2.AutoSize = true;
- this.c_Label2.BackColor = System.Drawing.Color.Transparent;
- this.c_Label2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.c_Label2.ForeColor = System.Drawing.SystemColors.ControlText;
- this.c_Label2.Location = new System.Drawing.Point(383, 45);
- this.c_Label2.Name = "c_Label2";
- this.c_Label2.Size = new System.Drawing.Size(53, 12);
- this.c_Label2.TabIndex = 46;
- this.c_Label2.Text = "产品条码";
- //
- // btnClearCondition
- //
- this.btnClearCondition.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- this.btnClearCondition.BackColor = System.Drawing.Color.Transparent;
- this.btnClearCondition.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnClearCondition.BackgroundImage")));
- this.btnClearCondition.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnClearCondition.ForeColor = System.Drawing.Color.White;
- this.btnClearCondition.Location = new System.Drawing.Point(1045, 32);
- this.btnClearCondition.Name = "btnClearCondition";
- this.btnClearCondition.Size = new System.Drawing.Size(85, 30);
- this.btnClearCondition.TabIndex = 13;
- this.btnClearCondition.Text = "清空条件";
- this.btnClearCondition.UseVisualStyleBackColor = true;
- this.btnClearCondition.Click += new System.EventHandler(this.btnClearCondition_Click);
- //
- // chkTestMouldFlag
- //
- this.chkTestMouldFlag.BackColor = System.Drawing.SystemColors.Control;
- this.chkTestMouldFlag.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("chkTestMouldFlag.BackgroundImage")));
- this.chkTestMouldFlag.FalseText = "否";
- this.chkTestMouldFlag.Location = new System.Drawing.Point(748, 16);
- this.chkTestMouldFlag.Margin = new System.Windows.Forms.Padding(3, 1, 3, 1);
- this.chkTestMouldFlag.Name = "chkTestMouldFlag";
- this.chkTestMouldFlag.Size = new System.Drawing.Size(130, 16);
- this.chkTestMouldFlag.TabIndex = 45;
- this.chkTestMouldFlag.Title = "试验标识";
- this.chkTestMouldFlag.TitleAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.chkTestMouldFlag.TrueText = "是";
- //
- // c_Label1
- //
- this.c_Label1.AutoSize = true;
- this.c_Label1.BackColor = System.Drawing.Color.Transparent;
- this.c_Label1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.c_Label1.ForeColor = System.Drawing.SystemColors.ControlText;
- this.c_Label1.Location = new System.Drawing.Point(572, 45);
- this.c_Label1.Name = "c_Label1";
- this.c_Label1.Size = new System.Drawing.Size(53, 12);
- this.c_Label1.TabIndex = 42;
- this.c_Label1.Text = "产品型号";
- //
- // lblGoodsType
- //
- this.lblGoodsType.AutoSize = true;
- this.lblGoodsType.BackColor = System.Drawing.SystemColors.Control;
- this.lblGoodsType.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblGoodsType.ForeColor = System.Drawing.SystemColors.ControlText;
- this.lblGoodsType.Location = new System.Drawing.Point(7, 43);
- this.lblGoodsType.Name = "lblGoodsType";
- this.lblGoodsType.Size = new System.Drawing.Size(53, 12);
- this.lblGoodsType.TabIndex = 41;
- this.lblGoodsType.Text = "产品类别";
- //
- // scbGoodsType
- //
- this.scbGoodsType.CheckedData = null;
- this.scbGoodsType.IsOnlyDisplayEnd = false;
- this.scbGoodsType.Location = new System.Drawing.Point(66, 40);
- this.scbGoodsType.Name = "scbGoodsType";
- this.scbGoodsType.Size = new System.Drawing.Size(116, 21);
- this.scbGoodsType.TabIndex = 40;
- //
- // txtOrderNo
- //
- this.txtOrderNo.BackColor = System.Drawing.SystemColors.Window;
- this.txtOrderNo.BackgroundColor = System.Drawing.SystemColors.Window;
- this.txtOrderNo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtOrderNo.Location = new System.Drawing.Point(66, 14);
- this.txtOrderNo.MaxLength = 100;
- this.txtOrderNo.Name = "txtOrderNo";
- this.txtOrderNo.Size = new System.Drawing.Size(116, 21);
- this.txtOrderNo.TabIndex = 1;
- //
- // dkLogoSearchBox1
- //
- this.dkLogoSearchBox1.BackColor = System.Drawing.Color.Transparent;
- this.dkLogoSearchBox1.DataSource = null;
- this.dkLogoSearchBox1.Enabled = true;
- this.dkLogoSearchBox1.IsEnablePurview = false;
- this.dkLogoSearchBox1.IsMustInput = false;
- this.dkLogoSearchBox1.Location = new System.Drawing.Point(748, 40);
- this.dkLogoSearchBox1.LogoCode = "";
- this.dkLogoSearchBox1.LogoID = null;
- this.dkLogoSearchBox1.LogoIDS = null;
- this.dkLogoSearchBox1.LogoName = null;
- this.dkLogoSearchBox1.Margin = new System.Windows.Forms.Padding(4);
- this.dkLogoSearchBox1.ModelType = null;
- this.dkLogoSearchBox1.Name = "dkLogoSearchBox1";
- this.dkLogoSearchBox1.Purview = null;
- this.dkLogoSearchBox1.PurviewType = ((byte)(0));
- this.dkLogoSearchBox1.SelectMore = true;
- this.dkLogoSearchBox1.Size = new System.Drawing.Size(157, 21);
- this.dkLogoSearchBox1.TabIndex = 11;
- this.dkLogoSearchBox1.Title = "产品商标";
- this.dkLogoSearchBox1.TxtGoodsTypeBackColor = System.Drawing.SystemColors.Control;
- //
- // chkDateTime
- //
- this.chkDateTime.AutoSize = true;
- this.chkDateTime.Checked = true;
- this.chkDateTime.CheckState = System.Windows.Forms.CheckState.Checked;
- this.chkDateTime.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.chkDateTime.Location = new System.Drawing.Point(367, 16);
- this.chkDateTime.Name = "chkDateTime";
- this.chkDateTime.Size = new System.Drawing.Size(72, 16);
- this.chkDateTime.TabIndex = 4;
- this.chkDateTime.Text = "交接日期";
- this.chkDateTime.UseVisualStyleBackColor = true;
- this.chkDateTime.CheckedChanged += new System.EventHandler(this.chkDateTime_CheckedChanged);
- //
- // lblAccountDateEnd
- //
- this.lblAccountDateEnd.AutoSize = true;
- this.lblAccountDateEnd.BackColor = System.Drawing.Color.Transparent;
- this.lblAccountDateEnd.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblAccountDateEnd.ForeColor = System.Drawing.SystemColors.ControlText;
- this.lblAccountDateEnd.Location = new System.Drawing.Point(585, 18);
- this.lblAccountDateEnd.Name = "lblAccountDateEnd";
- this.lblAccountDateEnd.Size = new System.Drawing.Size(17, 12);
- this.lblAccountDateEnd.TabIndex = 6;
- this.lblAccountDateEnd.Text = "至";
- //
- // dtpEndTime
- //
- this.dtpEndTime.CustomFormat = "yyyy-MM-dd HH:mm";
- this.dtpEndTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
- this.dtpEndTime.Location = new System.Drawing.Point(608, 14);
- this.dtpEndTime.Name = "dtpEndTime";
- this.dtpEndTime.Size = new System.Drawing.Size(134, 21);
- this.dtpEndTime.TabIndex = 7;
- this.dtpEndTime.Value = new System.DateTime(2014, 9, 23, 0, 0, 0, 0);
- //
- // dtpStartTime
- //
- this.dtpStartTime.CustomFormat = "yyyy-MM-dd HH:mm";
- this.dtpStartTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
- this.dtpStartTime.Location = new System.Drawing.Point(445, 14);
- this.dtpStartTime.Name = "dtpStartTime";
- this.dtpStartTime.Size = new System.Drawing.Size(134, 21);
- this.dtpStartTime.TabIndex = 5;
- this.dtpStartTime.Value = new System.DateTime(2014, 9, 24, 0, 0, 0, 0);
- //
- // btnSearch
- //
- this.btnSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
- this.btnSearch.BackColor = System.Drawing.Color.Transparent;
- this.btnSearch.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnSearch.BackgroundImage")));
- this.btnSearch.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.btnSearch.ForeColor = System.Drawing.Color.White;
- this.btnSearch.Location = new System.Drawing.Point(954, 32);
- this.btnSearch.Name = "btnSearch";
- this.btnSearch.Size = new System.Drawing.Size(85, 30);
- this.btnSearch.TabIndex = 12;
- this.btnSearch.Text = "查询";
- this.btnSearch.UseVisualStyleBackColor = true;
- this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
- //
- // txtFHUserCode
- //
- this.txtFHUserCode.BackColor = System.Drawing.SystemColors.Window;
- this.txtFHUserCode.BackgroundColor = System.Drawing.SystemColors.Window;
- this.txtFHUserCode.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
- this.txtFHUserCode.ErrorMessage = "";
- this.txtFHUserCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtFHUserCode.ImeMode = System.Windows.Forms.ImeMode.Off;
- this.txtFHUserCode.Location = new System.Drawing.Point(246, 14);
- this.txtFHUserCode.MaxLength = 21;
- this.txtFHUserCode.Name = "txtFHUserCode";
- this.txtFHUserCode.Size = new System.Drawing.Size(116, 21);
- this.txtFHUserCode.TabIndex = 3;
- this.txtFHUserCode.TextValue = "";
- //
- // txtGoodsModel
- //
- this.txtGoodsModel.BackColor = System.Drawing.SystemColors.Window;
- this.txtGoodsModel.BackgroundColor = System.Drawing.SystemColors.Window;
- this.txtGoodsModel.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
- this.txtGoodsModel.ErrorMessage = "";
- this.txtGoodsModel.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtGoodsModel.ImeMode = System.Windows.Forms.ImeMode.Off;
- this.txtGoodsModel.Location = new System.Drawing.Point(631, 41);
- this.txtGoodsModel.MaxLength = 21;
- this.txtGoodsModel.Name = "txtGoodsModel";
- this.txtGoodsModel.Size = new System.Drawing.Size(110, 21);
- this.txtGoodsModel.TabIndex = 10;
- this.txtGoodsModel.TextValue = "";
- //
- // txtGoodsCode
- //
- this.txtGoodsCode.BackColor = System.Drawing.SystemColors.Window;
- this.txtGoodsCode.BackgroundColor = System.Drawing.SystemColors.Window;
- this.txtGoodsCode.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
- this.txtGoodsCode.ErrorMessage = "";
- this.txtGoodsCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtGoodsCode.ImeMode = System.Windows.Forms.ImeMode.Off;
- this.txtGoodsCode.Location = new System.Drawing.Point(246, 40);
- this.txtGoodsCode.MaxLength = 21;
- this.txtGoodsCode.Name = "txtGoodsCode";
- this.txtGoodsCode.Size = new System.Drawing.Size(116, 21);
- this.txtGoodsCode.TabIndex = 10;
- this.txtGoodsCode.TextValue = "";
- //
- // lblFHUserCode
- //
- this.lblFHUserCode.AutoSize = true;
- this.lblFHUserCode.BackColor = System.Drawing.Color.Transparent;
- this.lblFHUserCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblFHUserCode.ForeColor = System.Drawing.SystemColors.ControlText;
- this.lblFHUserCode.Location = new System.Drawing.Point(188, 18);
- this.lblFHUserCode.Name = "lblFHUserCode";
- this.lblFHUserCode.Size = new System.Drawing.Size(53, 12);
- this.lblFHUserCode.TabIndex = 2;
- this.lblFHUserCode.Text = "交接工号";
- //
- // lblGoodsModel
- //
- this.lblGoodsModel.AutoSize = true;
- this.lblGoodsModel.BackColor = System.Drawing.Color.Transparent;
- this.lblGoodsModel.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblGoodsModel.ForeColor = System.Drawing.SystemColors.ControlText;
- this.lblGoodsModel.Location = new System.Drawing.Point(188, 44);
- this.lblGoodsModel.Name = "lblGoodsModel";
- this.lblGoodsModel.Size = new System.Drawing.Size(53, 12);
- this.lblGoodsModel.TabIndex = 9;
- this.lblGoodsModel.Text = "产品编码";
- //
- // lblOrderNo
- //
- this.lblOrderNo.AutoSize = true;
- this.lblOrderNo.BackColor = System.Drawing.Color.Transparent;
- this.lblOrderNo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblOrderNo.ForeColor = System.Drawing.SystemColors.ControlText;
- this.lblOrderNo.Location = new System.Drawing.Point(7, 19);
- this.lblOrderNo.Name = "lblOrderNo";
- this.lblOrderNo.Size = new System.Drawing.Size(53, 12);
- this.lblOrderNo.TabIndex = 0;
- this.lblOrderNo.Text = "生产订单";
- //
- // Sel
- //
- this.Sel.DataPropertyName = "Sel";
- this.Sel.FalseValue = "0";
- this.Sel.HeaderText = "选择";
- this.Sel.Name = "Sel";
- this.Sel.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.Sel.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- this.Sel.TrueValue = "1";
- this.Sel.Width = 65;
- //
- // dataGridViewTextBoxColumn1
- //
- this.dataGridViewTextBoxColumn1.DataPropertyName = "OrderNo";
- this.dataGridViewTextBoxColumn1.HeaderText = "生产订单";
- this.dataGridViewTextBoxColumn1.MinimumWidth = 8;
- this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
- this.dataGridViewTextBoxColumn1.ReadOnly = true;
- this.dataGridViewTextBoxColumn1.Width = 150;
- //
- // dataGridViewTextBoxColumn2
- //
- this.dataGridViewTextBoxColumn2.DataPropertyName = "FHTime";
- dataGridViewCellStyle24.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle24.Format = "yyyy-MM-dd HH:mm:ss";
- this.dataGridViewTextBoxColumn2.DefaultCellStyle = dataGridViewCellStyle24;
- this.dataGridViewTextBoxColumn2.HeaderText = "交接时间";
- this.dataGridViewTextBoxColumn2.MinimumWidth = 8;
- this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
- this.dataGridViewTextBoxColumn2.ReadOnly = true;
- this.dataGridViewTextBoxColumn2.Width = 150;
- //
- // dataGridViewTextBoxColumn7
- //
- this.dataGridViewTextBoxColumn7.DataPropertyName = "FHUserCode";
- this.dataGridViewTextBoxColumn7.HeaderText = "交接工号";
- this.dataGridViewTextBoxColumn7.MinimumWidth = 8;
- this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
- this.dataGridViewTextBoxColumn7.ReadOnly = true;
- this.dataGridViewTextBoxColumn7.Width = 150;
- //
- // dataGridViewTextBoxColumn8
- //
- this.dataGridViewTextBoxColumn8.DataPropertyName = "BarCode";
- this.dataGridViewTextBoxColumn8.HeaderText = "产品条码";
- this.dataGridViewTextBoxColumn8.MinimumWidth = 8;
- this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
- this.dataGridViewTextBoxColumn8.ReadOnly = true;
- this.dataGridViewTextBoxColumn8.Width = 150;
- //
- // dataGridViewTextBoxColumn9
- //
- this.dataGridViewTextBoxColumn9.DataPropertyName = "FinishedBarCode";
- this.dataGridViewTextBoxColumn9.HeaderText = "包装条码";
- this.dataGridViewTextBoxColumn9.MinimumWidth = 8;
- this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9";
- this.dataGridViewTextBoxColumn9.ReadOnly = true;
- this.dataGridViewTextBoxColumn9.Width = 150;
- //
- // BANMA
- //
- this.BANMA.DataPropertyName = "BANMA";
- this.BANMA.HeaderText = "托盘码";
- this.BANMA.Name = "BANMA";
- this.BANMA.ReadOnly = true;
- //
- // FINISHEDLOADBATCHNO
- //
- this.FINISHEDLOADBATCHNO.DataPropertyName = "FINISHEDLOADBATCHNO";
- this.FINISHEDLOADBATCHNO.HeaderText = "板码";
- this.FINISHEDLOADBATCHNO.Name = "FINISHEDLOADBATCHNO";
- this.FINISHEDLOADBATCHNO.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn10
- //
- this.dataGridViewTextBoxColumn10.DataPropertyName = "SecurityCode";
- this.dataGridViewTextBoxColumn10.HeaderText = "防伪码";
- this.dataGridViewTextBoxColumn10.MinimumWidth = 8;
- this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10";
- this.dataGridViewTextBoxColumn10.ReadOnly = true;
- this.dataGridViewTextBoxColumn10.Width = 150;
- //
- // dataGridViewTextBoxColumn11
- //
- this.dataGridViewTextBoxColumn11.DataPropertyName = "GoodsCode";
- this.dataGridViewTextBoxColumn11.HeaderText = "产品编码";
- this.dataGridViewTextBoxColumn11.MinimumWidth = 8;
- this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
- this.dataGridViewTextBoxColumn11.ReadOnly = true;
- this.dataGridViewTextBoxColumn11.Width = 150;
- //
- // dataGridViewTextBoxColumn12
- //
- this.dataGridViewTextBoxColumn12.DataPropertyName = "goodsmodel";
- this.dataGridViewTextBoxColumn12.HeaderText = "产品型号";
- this.dataGridViewTextBoxColumn12.MinimumWidth = 8;
- this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
- this.dataGridViewTextBoxColumn12.ReadOnly = true;
- this.dataGridViewTextBoxColumn12.Width = 150;
- //
- // dataGridViewTextBoxColumn13
- //
- this.dataGridViewTextBoxColumn13.DataPropertyName = "mcode";
- this.dataGridViewTextBoxColumn13.HeaderText = "物料编码";
- this.dataGridViewTextBoxColumn13.MinimumWidth = 8;
- this.dataGridViewTextBoxColumn13.Name = "dataGridViewTextBoxColumn13";
- this.dataGridViewTextBoxColumn13.ReadOnly = true;
- this.dataGridViewTextBoxColumn13.Width = 150;
- //
- // dataGridViewTextBoxColumn39
- //
- this.dataGridViewTextBoxColumn39.DataPropertyName = "mremark";
- this.dataGridViewTextBoxColumn39.HeaderText = "物料描述";
- this.dataGridViewTextBoxColumn39.MinimumWidth = 8;
- this.dataGridViewTextBoxColumn39.Name = "dataGridViewTextBoxColumn39";
- this.dataGridViewTextBoxColumn39.ReadOnly = true;
- this.dataGridViewTextBoxColumn39.Width = 150;
- //
- // dataGridViewTextBoxColumn40
- //
- this.dataGridViewTextBoxColumn40.DataPropertyName = "LogoName";
- this.dataGridViewTextBoxColumn40.HeaderText = "产品商标";
- this.dataGridViewTextBoxColumn40.MinimumWidth = 8;
- this.dataGridViewTextBoxColumn40.Name = "dataGridViewTextBoxColumn40";
- this.dataGridViewTextBoxColumn40.ReadOnly = true;
- this.dataGridViewTextBoxColumn40.Width = 150;
- //
- // dataGridViewTextBoxColumn41
- //
- this.dataGridViewTextBoxColumn41.DataPropertyName = "GroutingUserCode";
- this.dataGridViewTextBoxColumn41.HeaderText = "成型工号";
- this.dataGridViewTextBoxColumn41.MinimumWidth = 8;
- this.dataGridViewTextBoxColumn41.Name = "dataGridViewTextBoxColumn41";
- this.dataGridViewTextBoxColumn41.ReadOnly = true;
- this.dataGridViewTextBoxColumn41.Width = 150;
- //
- // dataGridViewTextBoxColumn42
- //
- this.dataGridViewTextBoxColumn42.DataPropertyName = "GroutingMouldCode";
- this.dataGridViewTextBoxColumn42.HeaderText = "模具编号";
- this.dataGridViewTextBoxColumn42.MinimumWidth = 8;
- this.dataGridViewTextBoxColumn42.Name = "dataGridViewTextBoxColumn42";
- this.dataGridViewTextBoxColumn42.ReadOnly = true;
- this.dataGridViewTextBoxColumn42.Width = 150;
- //
- // dataGridViewTextBoxColumn43
- //
- this.dataGridViewTextBoxColumn43.DataPropertyName = "GroutingLineCode";
- this.dataGridViewTextBoxColumn43.HeaderText = "成型线编码";
- this.dataGridViewTextBoxColumn43.MinimumWidth = 8;
- this.dataGridViewTextBoxColumn43.Name = "dataGridViewTextBoxColumn43";
- this.dataGridViewTextBoxColumn43.ReadOnly = true;
- this.dataGridViewTextBoxColumn43.Width = 150;
- //
- // dataGridViewTextBoxColumn44
- //
- this.dataGridViewTextBoxColumn44.DataPropertyName = "GroutingDate";
- dataGridViewCellStyle25.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle25.Format = "yyyy-MM-dd ";
- this.dataGridViewTextBoxColumn44.DefaultCellStyle = dataGridViewCellStyle25;
- this.dataGridViewTextBoxColumn44.HeaderText = "注浆日期";
- this.dataGridViewTextBoxColumn44.MinimumWidth = 8;
- this.dataGridViewTextBoxColumn44.Name = "dataGridViewTextBoxColumn44";
- this.dataGridViewTextBoxColumn44.ReadOnly = true;
- this.dataGridViewTextBoxColumn44.Width = 150;
- //
- // dataGridViewTextBoxColumn45
- //
- this.dataGridViewTextBoxColumn45.DataPropertyName = "DeliverTime";
- dataGridViewCellStyle26.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle26.Format = "yyyy-MM-dd HH:mm:ss";
- this.dataGridViewTextBoxColumn45.DefaultCellStyle = dataGridViewCellStyle26;
- this.dataGridViewTextBoxColumn45.HeaderText = "交坯日期";
- this.dataGridViewTextBoxColumn45.MinimumWidth = 8;
- this.dataGridViewTextBoxColumn45.Name = "dataGridViewTextBoxColumn45";
- this.dataGridViewTextBoxColumn45.ReadOnly = true;
- this.dataGridViewTextBoxColumn45.Width = 150;
- //
- // dataGridViewTextBoxColumn46
- //
- this.dataGridViewTextBoxColumn46.DataPropertyName = "ProductFinishedTime";
- dataGridViewCellStyle27.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle27.Format = "yyyy-MM-dd HH:mm:ss";
- dataGridViewCellStyle27.NullValue = null;
- this.dataGridViewTextBoxColumn46.DefaultCellStyle = dataGridViewCellStyle27;
- this.dataGridViewTextBoxColumn46.HeaderText = "生产完成时间";
- this.dataGridViewTextBoxColumn46.MinimumWidth = 8;
- this.dataGridViewTextBoxColumn46.Name = "dataGridViewTextBoxColumn46";
- this.dataGridViewTextBoxColumn46.ReadOnly = true;
- this.dataGridViewTextBoxColumn46.Width = 150;
- //
- // dataGridViewCheckBoxColumn2
- //
- this.dataGridViewCheckBoxColumn2.DataPropertyName = "TestMouldFlag";
- this.dataGridViewCheckBoxColumn2.FalseValue = "0";
- this.dataGridViewCheckBoxColumn2.HeaderText = "试验标识";
- this.dataGridViewCheckBoxColumn2.IndeterminateValue = "0";
- this.dataGridViewCheckBoxColumn2.MinimumWidth = 8;
- this.dataGridViewCheckBoxColumn2.Name = "dataGridViewCheckBoxColumn2";
- this.dataGridViewCheckBoxColumn2.ReadOnly = true;
- this.dataGridViewCheckBoxColumn2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- this.dataGridViewCheckBoxColumn2.TrueValue = "1";
- this.dataGridViewCheckBoxColumn2.Width = 150;
- //
- // F_RPT_030112
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1167, 536);
- this.Controls.Add(this.gbxCondition);
- this.Controls.Add(this.tblScrapTotalModule);
- this.Controls.Add(this.tsrOperate);
- this.Margin = new System.Windows.Forms.Padding(4);
- this.Name = "F_RPT_030112";
- this.Text = "产成品交接汇总表";
- this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.F_RPT_030102_1_FormClosed);
- this.Load += new System.EventHandler(this.F_RPT_030102_1_Load);
- this.tblScrapTotalModule.ResumeLayout(false);
- this.tapScrapTotalModule.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvOrder)).EndInit();
- this.tapScrapTotalModuleDetail.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvOrderDetail)).EndInit();
- this.tapTotalNum.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvNum)).EndInit();
- this.tabPage1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvGoodsNum)).EndInit();
- this.taptemp.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvtemporarily)).EndInit();
- this.tapLuoCi.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvlc)).EndInit();
- this.tapLuoCiDetail.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvlcDetail)).EndInit();
- this.tsrOperate.ResumeLayout(false);
- this.tsrOperate.PerformLayout();
- this.gbxCondition.ResumeLayout(false);
- this.gbxCondition.PerformLayout();
- this.ResumeLayout(false);
- }
- #endregion
- private Basics.BaseControls.C_ToolStrip tsrOperate;
- private System.Windows.Forms.ToolStripButton tsbtnAdaptive;
- private System.Windows.Forms.ToolStripButton tsbtnClose;
- private System.Windows.Forms.TabControl tblScrapTotalModule;
- private System.Windows.Forms.TabPage tapScrapTotalModule;
- private Basics.BaseControls.C_DataGridView dgvOrder;
- private System.Windows.Forms.TabPage tapScrapTotalModuleDetail;
- private Basics.BaseControls.C_DataGridView dgvOrderDetail;
- private Basics.BaseControls.C_GroupBox gbxCondition;
- private Controls.SearchTextBox.dkLogoSearchBox dkLogoSearchBox1;
- private Basics.BaseControls.C_CheckBox chkDateTime;
- private Basics.BaseControls.C_Label lblAccountDateEnd;
- private System.Windows.Forms.DateTimePicker dtpEndTime;
- private System.Windows.Forms.DateTimePicker dtpStartTime;
- private Basics.BaseControls.C_Button btnSearch;
- private Basics.BaseControls.C_Button btnClearCondition;
- private Basics.BaseControls.C_TXT_Code txtFHUserCode;
- private Basics.BaseControls.C_TextBox txtGoodsCode;
- private Basics.BaseControls.C_Label lblFHUserCode;
- private Basics.BaseControls.C_Label lblGoodsModel;
- private Basics.BaseControls.C_Label lblOrderNo;
- private Basics.BaseControls.C_TextBox txtOrderNo;
- private System.Windows.Forms.TabPage tapTotalNum;
- private Basics.BaseControls.C_DataGridView dgvNum;
- private Basics.BaseControls.C_Label lblGoodsType;
- private Controls.SearchBox.ScbGoodsType scbGoodsType;
- private Basics.BaseControls.C_TextBox txtGoodsModel;
- private Basics.BaseControls.C_Label c_Label1;
- private System.Windows.Forms.TabPage tabPage1;
- private Basics.BaseControls.C_DataGridView dgvGoodsNum;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn4;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn5;
- private System.Windows.Forms.DataGridViewTextBoxColumn g4mremark;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn6;
- private Basics.BaseControls.C_StatusCheckBox chkTestMouldFlag;
- private System.Windows.Forms.DataGridViewTextBoxColumn OrderNo1;
- private System.Windows.Forms.DataGridViewTextBoxColumn FHTime1;
- private System.Windows.Forms.DataGridViewTextBoxColumn FHUserCode;
- private System.Windows.Forms.DataGridViewTextBoxColumn BarCode;
- private System.Windows.Forms.DataGridViewTextBoxColumn FinishedBarCode;
- private System.Windows.Forms.DataGridViewTextBoxColumn SecurityCode;
- private System.Windows.Forms.DataGridViewTextBoxColumn GoodsCode;
- private System.Windows.Forms.DataGridViewTextBoxColumn g2goodsmodel;
- private System.Windows.Forms.DataGridViewTextBoxColumn g2mcode;
- private System.Windows.Forms.DataGridViewTextBoxColumn g2mremark;
- private System.Windows.Forms.DataGridViewTextBoxColumn LogoName1;
- private System.Windows.Forms.DataGridViewTextBoxColumn GroutingUserCode;
- private System.Windows.Forms.DataGridViewTextBoxColumn GroutingMouldCode;
- private System.Windows.Forms.DataGridViewTextBoxColumn GroutingLineCode;
- private System.Windows.Forms.DataGridViewTextBoxColumn GroutingDate;
- private System.Windows.Forms.DataGridViewTextBoxColumn DeliverTime;
- private System.Windows.Forms.DataGridViewTextBoxColumn ProductFinishedTime;
- private System.Windows.Forms.DataGridViewCheckBoxColumn TestMouldFlag;
- private Basics.BaseControls.C_TextBox txtBarcode;
- private Basics.BaseControls.C_Label c_Label2;
- private System.Windows.Forms.DataGridViewTextBoxColumn coldate;
- private System.Windows.Forms.DataGridViewTextBoxColumn collogoname;
- private System.Windows.Forms.DataGridViewTextBoxColumn colgoodscode;
- private System.Windows.Forms.DataGridViewTextBoxColumn g3goodsmodel;
- private System.Windows.Forms.DataGridViewTextBoxColumn g3mcode;
- private System.Windows.Forms.DataGridViewTextBoxColumn g3mremark;
- private System.Windows.Forms.DataGridViewTextBoxColumn fhusercode_number;
- private System.Windows.Forms.DataGridViewTextBoxColumn colgoodscount;
- private System.Windows.Forms.DataGridViewTextBoxColumn orderno;
- private System.Windows.Forms.DataGridViewTextBoxColumn logoname;
- private System.Windows.Forms.DataGridViewTextBoxColumn g1goodscode;
- private System.Windows.Forms.DataGridViewTextBoxColumn goodsmodel;
- private System.Windows.Forms.DataGridViewTextBoxColumn g1mcode;
- private System.Windows.Forms.DataGridViewTextBoxColumn g1mremark;
- private System.Windows.Forms.DataGridViewTextBoxColumn fhusercode_summary;
- private System.Windows.Forms.DataGridViewTextBoxColumn fhtime;
- private System.Windows.Forms.DataGridViewTextBoxColumn count;
- private System.Windows.Forms.DataGridViewTextBoxColumn logoid;
- private System.Windows.Forms.DataGridViewTextBoxColumn goodsid;
- private System.Windows.Forms.DataGridViewTextBoxColumn orderid;
- private System.Windows.Forms.TabPage taptemp;
- private System.Windows.Forms.TabPage tapLuoCi;
- private System.Windows.Forms.TabPage tapLuoCiDetail;
- private Basics.BaseControls.C_DataGridView dgvlc;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn30;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn31;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn32;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn33;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn34;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn35;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn36;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn37;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn38;
- private Basics.BaseControls.C_DataGridView dgvlcDetail;
- 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.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn1;
- private Basics.BaseControls.C_DataGridView dgvtemporarily;
- private System.Windows.Forms.ToolStripButton tsbtnSynLog;
- private Basics.BaseControls.C_StatusCheckBox chkTemporarilyFlag;
- private System.Windows.Forms.DataGridViewCheckBoxColumn Sel;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn7;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn8;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn9;
- private System.Windows.Forms.DataGridViewTextBoxColumn BANMA;
- private System.Windows.Forms.DataGridViewTextBoxColumn FINISHEDLOADBATCHNO;
- 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 dataGridViewTextBoxColumn39;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn40;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn41;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn42;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn43;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn44;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn45;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn46;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn2;
- }
- }
|