| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815 |
- namespace Dongke.IBOSS.PRD.Client.PMModule
- {
- partial class F_PM_2601
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(F_PM_2601));
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle43 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle44 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle46 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle45 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle47 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle48 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle49 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle50 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle51 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle52 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle53 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle58 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle54 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle55 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle56 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle57 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle59 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle60 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle66 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle61 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle62 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle63 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle64 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle65 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle67 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle68 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle76 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle69 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle70 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle71 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle72 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle73 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle74 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle75 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle77 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle78 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle84 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle79 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle80 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle81 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle82 = new System.Windows.Forms.DataGridViewCellStyle();
- System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle83 = new System.Windows.Forms.DataGridViewCellStyle();
- this.tsrOperate = new Dongke.IBOSS.PRD.Basics.BaseControls.C_ToolStrip();
- this.tsbtnAdd = new System.Windows.Forms.ToolStripButton();
- this.tsbtnEdit = new System.Windows.Forms.ToolStripButton();
- this.tsbtnInChecked = new System.Windows.Forms.ToolStripButton();
- this.tsbtnDisable = new System.Windows.Forms.ToolStripButton();
- this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
- this.tsbtnAll = new System.Windows.Forms.ToolStripButton();
- this.tsbtnUnAll = new System.Windows.Forms.ToolStripButton();
- this.tsbtnClearData = new System.Windows.Forms.ToolStripButton();
- this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
- this.tsbtnAdaptive = new System.Windows.Forms.ToolStripButton();
- this.tsbtnClose = new System.Windows.Forms.ToolStripButton();
- this.gbxCondition = new Dongke.IBOSS.PRD.Basics.BaseControls.C_GroupBox();
- this.btnClearCondition = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Button();
- this.btnSearch = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Button();
- this.lblTo = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
- this.dtpEndTime = new System.Windows.Forms.DateTimePicker();
- this.dtpStartTime = new System.Windows.Forms.DateTimePicker();
- this.lblCreateTime = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
- this.c_Label1 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
- this.lblBarCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
- this.txtCheckedName = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
- this.txtInCheckedNo = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
- this.splitContainer1 = new System.Windows.Forms.SplitContainer();
- this.splitContainer2 = new System.Windows.Forms.SplitContainer();
- this.dgvInChecked = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
- this.GBCheckedID = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.GBCheckedNo = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.GBcheckname = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.CreateTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.CreateUserName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.Remarks = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dgvFunctionUsers = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
- this.UserCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.UserName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.UserID = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.tabControl1 = new System.Windows.Forms.TabControl();
- this.tabPage1 = new System.Windows.Forms.TabPage();
- this.dgvInCheckedNoDetail = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
- this.Sel = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.BarCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.GroutingLineCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.GroutingLineName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.GroutingMouldCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.GroutingDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.GroutingUserCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.GroutingBatchNo = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.GroutingCount = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.GoodsCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.GoodsName = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.g1Remarks = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.g1procedurename = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.g1PROCEDURETIME = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.tabPage2 = new System.Windows.Forms.TabPage();
- this.dgvInCheckededDetail = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
- this.CheckedDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.CheckedUserCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.g2procedurename = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.g2PROCEDURETIME = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.tabPage3 = new System.Windows.Forms.TabPage();
- this.dgvInCheckedWinDetail = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
- this.g3CheckedDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.g3CheckedUserCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewCheckBoxColumn2 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewTextBoxColumn23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn24 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewCheckBoxColumn3 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewCheckBoxColumn4 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
- this.dataGridViewTextBoxColumn25 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn26 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.g3procedurename = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.g3PROCEDURETIME = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.tabPage4 = new System.Windows.Forms.TabPage();
- this.dgvLossDetail = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
- this.dataGridViewTextBoxColumn27 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn28 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn29 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn30 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.dataGridViewTextBoxColumn31 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.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.dataGridViewTextBoxColumn39 = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.g4procedurename = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.g4PROCEDURETIME = new System.Windows.Forms.DataGridViewTextBoxColumn();
- this.tsbtnCheckData = new System.Windows.Forms.ToolStripButton();
- this.tsrOperate.SuspendLayout();
- this.gbxCondition.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
- this.splitContainer1.Panel1.SuspendLayout();
- this.splitContainer1.Panel2.SuspendLayout();
- this.splitContainer1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
- this.splitContainer2.Panel1.SuspendLayout();
- this.splitContainer2.Panel2.SuspendLayout();
- this.splitContainer2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvInChecked)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.dgvFunctionUsers)).BeginInit();
- this.tabControl1.SuspendLayout();
- this.tabPage1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvInCheckedNoDetail)).BeginInit();
- this.tabPage2.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvInCheckededDetail)).BeginInit();
- this.tabPage3.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvInCheckedWinDetail)).BeginInit();
- this.tabPage4.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.dgvLossDetail)).BeginInit();
- this.SuspendLayout();
- //
- // tsrOperate
- //
- this.tsrOperate.AutoSize = false;
- this.tsrOperate.BackColor = System.Drawing.Color.Transparent;
- this.tsrOperate.BackgroundImage = global::Dongke.IBOSS.PRD.Client.PMModule.Properties.Resources.functionbackground;
- this.tsrOperate.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tsrOperate.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.tsbtnAdd,
- this.tsbtnEdit,
- this.tsbtnInChecked,
- this.tsbtnDisable,
- this.toolStripSeparator2,
- this.tsbtnAll,
- this.tsbtnUnAll,
- this.tsbtnCheckData,
- this.tsbtnClearData,
- this.toolStripSeparator1,
- this.tsbtnAdaptive,
- this.tsbtnClose});
- this.tsrOperate.Location = new System.Drawing.Point(0, 0);
- this.tsrOperate.Name = "tsrOperate";
- this.tsrOperate.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
- this.tsrOperate.ShowItemToolTips = false;
- this.tsrOperate.Size = new System.Drawing.Size(1102, 35);
- this.tsrOperate.TabIndex = 0;
- this.tsrOperate.Text = "toolStrip1";
- //
- // tsbtnAdd
- //
- this.tsbtnAdd.AutoSize = false;
- this.tsbtnAdd.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tsbtnAdd.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
- this.tsbtnAdd.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.tsbtnAdd.Name = "tsbtnAdd";
- this.tsbtnAdd.Size = new System.Drawing.Size(60, 25);
- this.tsbtnAdd.Text = "新建(&N)";
- this.tsbtnAdd.Click += new System.EventHandler(this.tsbtnAdd_Click);
- //
- // tsbtnEdit
- //
- this.tsbtnEdit.AutoSize = false;
- this.tsbtnEdit.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.tsbtnEdit.Image = ((System.Drawing.Image)(resources.GetObject("tsbtnEdit.Image")));
- this.tsbtnEdit.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.tsbtnEdit.Name = "tsbtnEdit";
- this.tsbtnEdit.Size = new System.Drawing.Size(60, 25);
- this.tsbtnEdit.Tag = "";
- this.tsbtnEdit.Text = "编辑";
- this.tsbtnEdit.Click += new System.EventHandler(this.tsbtnEdit_Click);
- //
- // tsbtnInChecked
- //
- this.tsbtnInChecked.AutoSize = false;
- this.tsbtnInChecked.Enabled = false;
- this.tsbtnInChecked.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.tsbtnInChecked.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
- this.tsbtnInChecked.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.tsbtnInChecked.Name = "tsbtnInChecked";
- this.tsbtnInChecked.Size = new System.Drawing.Size(60, 25);
- this.tsbtnInChecked.Text = "盘点(&I)";
- this.tsbtnInChecked.Click += new System.EventHandler(this.tsbtnInChecked_Click);
- //
- // tsbtnDisable
- //
- this.tsbtnDisable.AutoSize = false;
- this.tsbtnDisable.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.tsbtnDisable.Enabled = false;
- this.tsbtnDisable.Image = ((System.Drawing.Image)(resources.GetObject("tsbtnDisable.Image")));
- this.tsbtnDisable.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.tsbtnDisable.Name = "tsbtnDisable";
- this.tsbtnDisable.Size = new System.Drawing.Size(60, 25);
- this.tsbtnDisable.Tag = "";
- this.tsbtnDisable.Text = "停用(S)";
- this.tsbtnDisable.Click += new System.EventHandler(this.tsbtnDisable_Click);
- //
- // toolStripSeparator2
- //
- this.toolStripSeparator2.AutoSize = false;
- this.toolStripSeparator2.Name = "toolStripSeparator2";
- this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
- //
- // tsbtnAll
- //
- this.tsbtnAll.AutoSize = false;
- this.tsbtnAll.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.tsbtnAll.Image = ((System.Drawing.Image)(resources.GetObject("tsbtnAll.Image")));
- this.tsbtnAll.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.tsbtnAll.Name = "tsbtnAll";
- this.tsbtnAll.Size = new System.Drawing.Size(60, 25);
- this.tsbtnAll.Text = "全选";
- this.tsbtnAll.Click += new System.EventHandler(this.tsbtnAll_Click);
- //
- // tsbtnUnAll
- //
- this.tsbtnUnAll.AutoSize = false;
- this.tsbtnUnAll.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.tsbtnUnAll.Image = ((System.Drawing.Image)(resources.GetObject("tsbtnUnAll.Image")));
- this.tsbtnUnAll.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.tsbtnUnAll.Name = "tsbtnUnAll";
- this.tsbtnUnAll.Size = new System.Drawing.Size(80, 25);
- this.tsbtnUnAll.Text = "不选";
- this.tsbtnUnAll.Click += new System.EventHandler(this.tsbtnUnAll_Click);
- //
- // tsbtnClearData
- //
- this.tsbtnClearData.AutoSize = false;
- this.tsbtnClearData.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.tsbtnClearData.Image = ((System.Drawing.Image)(resources.GetObject("tsbtnClearData.Image")));
- this.tsbtnClearData.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.tsbtnClearData.Name = "tsbtnClearData";
- this.tsbtnClearData.Size = new System.Drawing.Size(120, 25);
- this.tsbtnClearData.Tag = "";
- this.tsbtnClearData.Text = "报损未盘点产品(&D)";
- this.tsbtnClearData.Click += new System.EventHandler(this.tsbtnClearData_Click);
- //
- // toolStripSeparator1
- //
- this.toolStripSeparator1.AutoSize = false;
- this.toolStripSeparator1.Name = "toolStripSeparator1";
- this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
- //
- // 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);
- //
- // 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.btnClearCondition);
- this.gbxCondition.Controls.Add(this.btnSearch);
- this.gbxCondition.Controls.Add(this.lblTo);
- this.gbxCondition.Controls.Add(this.dtpEndTime);
- this.gbxCondition.Controls.Add(this.dtpStartTime);
- this.gbxCondition.Controls.Add(this.lblCreateTime);
- this.gbxCondition.Controls.Add(this.c_Label1);
- this.gbxCondition.Controls.Add(this.lblBarCode);
- this.gbxCondition.Controls.Add(this.txtCheckedName);
- this.gbxCondition.Controls.Add(this.txtInCheckedNo);
- 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(0, 38);
- this.gbxCondition.Name = "gbxCondition";
- this.gbxCondition.OriginalHeight = -1;
- this.gbxCondition.Size = new System.Drawing.Size(1090, 48);
- this.gbxCondition.TabIndex = 1;
- this.gbxCondition.TabStop = false;
- this.gbxCondition.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(998, 13);
- this.btnClearCondition.Name = "btnClearCondition";
- this.btnClearCondition.Size = new System.Drawing.Size(85, 30);
- this.btnClearCondition.TabIndex = 9;
- this.btnClearCondition.Text = "清空条件";
- this.btnClearCondition.UseVisualStyleBackColor = true;
- this.btnClearCondition.Click += new System.EventHandler(this.btnClearCondition_Click);
- //
- // 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(907, 13);
- this.btnSearch.Name = "btnSearch";
- this.btnSearch.Size = new System.Drawing.Size(85, 30);
- this.btnSearch.TabIndex = 8;
- this.btnSearch.Text = "查询";
- this.btnSearch.UseVisualStyleBackColor = true;
- this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
- //
- // lblTo
- //
- this.lblTo.AutoSize = true;
- this.lblTo.BackColor = System.Drawing.Color.Transparent;
- this.lblTo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblTo.ForeColor = System.Drawing.SystemColors.ControlText;
- this.lblTo.Location = new System.Drawing.Point(605, 22);
- this.lblTo.Name = "lblTo";
- this.lblTo.Size = new System.Drawing.Size(11, 12);
- this.lblTo.TabIndex = 6;
- this.lblTo.Text = "-";
- //
- // dtpEndTime
- //
- this.dtpEndTime.CustomFormat = "yyyy-MM-dd";
- this.dtpEndTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
- this.dtpEndTime.Location = new System.Drawing.Point(622, 18);
- this.dtpEndTime.Name = "dtpEndTime";
- this.dtpEndTime.Size = new System.Drawing.Size(134, 21);
- this.dtpEndTime.TabIndex = 7;
- //
- // dtpStartTime
- //
- this.dtpStartTime.CustomFormat = "yyyy-MM-dd";
- this.dtpStartTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
- this.dtpStartTime.Location = new System.Drawing.Point(465, 18);
- this.dtpStartTime.Name = "dtpStartTime";
- this.dtpStartTime.Size = new System.Drawing.Size(134, 21);
- this.dtpStartTime.TabIndex = 5;
- //
- // lblCreateTime
- //
- this.lblCreateTime.AutoSize = true;
- this.lblCreateTime.BackColor = System.Drawing.Color.Transparent;
- this.lblCreateTime.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblCreateTime.ForeColor = System.Drawing.SystemColors.ControlText;
- this.lblCreateTime.Location = new System.Drawing.Point(406, 22);
- this.lblCreateTime.Name = "lblCreateTime";
- this.lblCreateTime.Size = new System.Drawing.Size(53, 12);
- this.lblCreateTime.TabIndex = 4;
- this.lblCreateTime.Text = "创建时间";
- //
- // 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(207, 22);
- this.c_Label1.Name = "c_Label1";
- this.c_Label1.Size = new System.Drawing.Size(53, 12);
- this.c_Label1.TabIndex = 2;
- this.c_Label1.Text = "盘点名称";
- //
- // lblBarCode
- //
- this.lblBarCode.AutoSize = true;
- this.lblBarCode.BackColor = System.Drawing.Color.Transparent;
- this.lblBarCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.lblBarCode.ForeColor = System.Drawing.SystemColors.ControlText;
- this.lblBarCode.Location = new System.Drawing.Point(6, 22);
- this.lblBarCode.Name = "lblBarCode";
- this.lblBarCode.Size = new System.Drawing.Size(53, 12);
- this.lblBarCode.TabIndex = 0;
- this.lblBarCode.Text = "盘点单号";
- //
- // txtCheckedName
- //
- this.txtCheckedName.BackColor = System.Drawing.SystemColors.Window;
- this.txtCheckedName.BackgroundColor = System.Drawing.SystemColors.Window;
- this.txtCheckedName.ErrorMessage = "";
- this.txtCheckedName.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtCheckedName.Location = new System.Drawing.Point(266, 18);
- this.txtCheckedName.MaxLength = 20;
- this.txtCheckedName.Name = "txtCheckedName";
- this.txtCheckedName.Size = new System.Drawing.Size(134, 21);
- this.txtCheckedName.TabIndex = 3;
- //
- // txtInCheckedNo
- //
- this.txtInCheckedNo.BackColor = System.Drawing.SystemColors.Window;
- this.txtInCheckedNo.BackgroundColor = System.Drawing.SystemColors.Window;
- this.txtInCheckedNo.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
- this.txtInCheckedNo.ErrorMessage = "";
- this.txtInCheckedNo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.txtInCheckedNo.Location = new System.Drawing.Point(65, 18);
- this.txtInCheckedNo.MaxLength = 20;
- this.txtInCheckedNo.Name = "txtInCheckedNo";
- this.txtInCheckedNo.Size = new System.Drawing.Size(134, 21);
- this.txtInCheckedNo.TabIndex = 1;
- //
- // splitContainer1
- //
- this.splitContainer1.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.splitContainer1.Location = new System.Drawing.Point(0, 92);
- this.splitContainer1.Name = "splitContainer1";
- this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
- //
- // splitContainer1.Panel1
- //
- this.splitContainer1.Panel1.Controls.Add(this.splitContainer2);
- //
- // splitContainer1.Panel2
- //
- this.splitContainer1.Panel2.Controls.Add(this.tabControl1);
- this.splitContainer1.Size = new System.Drawing.Size(1090, 344);
- this.splitContainer1.SplitterDistance = 128;
- this.splitContainer1.TabIndex = 37;
- //
- // splitContainer2
- //
- this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
- this.splitContainer2.Location = new System.Drawing.Point(0, 0);
- this.splitContainer2.Name = "splitContainer2";
- //
- // splitContainer2.Panel1
- //
- this.splitContainer2.Panel1.Controls.Add(this.dgvInChecked);
- //
- // splitContainer2.Panel2
- //
- this.splitContainer2.Panel2.Controls.Add(this.dgvFunctionUsers);
- this.splitContainer2.Size = new System.Drawing.Size(1090, 128);
- this.splitContainer2.SplitterDistance = 690;
- this.splitContainer2.TabIndex = 1;
- //
- // dgvInChecked
- //
- this.dgvInChecked.AllowUserToAddRows = false;
- this.dgvInChecked.AllowUserToDeleteRows = false;
- this.dgvInChecked.AllowUserToModifyRows = true;
- this.dgvInChecked.AllowUserToOrderColumns = true;
- this.dgvInChecked.AllowUserToResizeRows = false;
- dataGridViewCellStyle43.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
- this.dgvInChecked.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle43;
- this.dgvInChecked.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.dgvInChecked.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
- this.dgvInChecked.CellHeight = 23;
- this.dgvInChecked.ChildNodeColumnName = null;
- this.dgvInChecked.ChildNodeColumnText = null;
- this.dgvInChecked.ColumnDeep = 1;
- this.dgvInChecked.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle44.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle44.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
- dataGridViewCellStyle44.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle44.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle44.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle44.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle44.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvInChecked.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle44;
- this.dgvInChecked.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
- this.dgvInChecked.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.GBCheckedID,
- this.GBCheckedNo,
- this.GBcheckname,
- this.CreateTime,
- this.CreateUserName,
- this.Remarks});
- this.dgvInChecked.ColumnTreeView = null;
- this.dgvInChecked.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.dgvInChecked.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvInChecked.DynamicColumnName = "";
- this.dgvInChecked.EnableHeadersVisualStyles = false;
- this.dgvInChecked.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvInChecked.HorizontalMergeColumn = null;
- this.dgvInChecked.IsAutoCountSum = true;
- this.dgvInChecked.IsAutoResizeColumns = false;
- this.dgvInChecked.IsClickF12 = false;
- this.dgvInChecked.IsOpenMergeCellFlag = false;
- this.dgvInChecked.IsSubTotalFlag = false;
- this.dgvInChecked.IsTopDeep = false;
- this.dgvInChecked.Location = new System.Drawing.Point(0, 0);
- this.dgvInChecked.Margin = new System.Windows.Forms.Padding(0);
- this.dgvInChecked.MergeColumnNames = null;
- this.dgvInChecked.MergeDetailColumnNames = null;
- this.dgvInChecked.MergeDetailOnlyColumn = null;
- this.dgvInChecked.MergeOnlyColumn = null;
- this.dgvInChecked.MultiSelect = false;
- this.dgvInChecked.Name = "dgvInChecked";
- this.dgvInChecked.ReadOnly = true;
- this.dgvInChecked.RefreshAtHscroll = false;
- this.dgvInChecked.RowHeadersWidth = 50;
- this.dgvInChecked.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
- dataGridViewCellStyle46.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
- this.dgvInChecked.RowsDefaultCellStyle = dataGridViewCellStyle46;
- this.dgvInChecked.RowTemplate.Height = 21;
- this.dgvInChecked.Size = new System.Drawing.Size(690, 128);
- this.dgvInChecked.SortOrderColumnName = null;
- this.dgvInChecked.TabIndex = 0;
- this.dgvInChecked.Tag = true;
- this.dgvInChecked.TotalSumColumns = null;
- this.dgvInChecked.ViewRowFilter = "";
- this.dgvInChecked.CellMouseDoubleClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgvInChecked_CellMouseDoubleClick);
- this.dgvInChecked.SelectionChanged += new System.EventHandler(this.dgvInChecked_SelectionChanged);
- //
- // GBCheckedID
- //
- this.GBCheckedID.DataPropertyName = "GBCheckedID";
- this.GBCheckedID.HeaderText = "盘点单ID";
- this.GBCheckedID.Name = "GBCheckedID";
- this.GBCheckedID.ReadOnly = true;
- this.GBCheckedID.Visible = false;
- //
- // GBCheckedNo
- //
- this.GBCheckedNo.DataPropertyName = "GBCheckedNo";
- this.GBCheckedNo.HeaderText = "盘点单号";
- this.GBCheckedNo.Name = "GBCheckedNo";
- this.GBCheckedNo.ReadOnly = true;
- this.GBCheckedNo.Width = 200;
- //
- // GBcheckname
- //
- this.GBcheckname.DataPropertyName = "GBcheckname";
- this.GBcheckname.HeaderText = "盘点名称";
- this.GBcheckname.Name = "GBcheckname";
- this.GBcheckname.ReadOnly = true;
- //
- // CreateTime
- //
- this.CreateTime.DataPropertyName = "CreateTime";
- dataGridViewCellStyle45.Format = "yyyy-MM-dd HH:mm:ss";
- dataGridViewCellStyle45.NullValue = null;
- this.CreateTime.DefaultCellStyle = dataGridViewCellStyle45;
- this.CreateTime.HeaderText = "创建时间";
- this.CreateTime.Name = "CreateTime";
- this.CreateTime.ReadOnly = true;
- //
- // CreateUserName
- //
- this.CreateUserName.DataPropertyName = "CreateUserName";
- this.CreateUserName.HeaderText = "创建者";
- this.CreateUserName.Name = "CreateUserName";
- this.CreateUserName.ReadOnly = true;
- //
- // Remarks
- //
- this.Remarks.DataPropertyName = "Remarks";
- this.Remarks.HeaderText = "备注";
- this.Remarks.Name = "Remarks";
- this.Remarks.ReadOnly = true;
- this.Remarks.Width = 300;
- //
- // dgvFunctionUsers
- //
- this.dgvFunctionUsers.AllowUserToAddRows = false;
- this.dgvFunctionUsers.AllowUserToDeleteRows = false;
- this.dgvFunctionUsers.AllowUserToModifyRows = true;
- this.dgvFunctionUsers.AllowUserToResizeRows = false;
- dataGridViewCellStyle47.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
- this.dgvFunctionUsers.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle47;
- this.dgvFunctionUsers.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.dgvFunctionUsers.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
- this.dgvFunctionUsers.CellHeight = 23;
- this.dgvFunctionUsers.ChildNodeColumnName = null;
- this.dgvFunctionUsers.ChildNodeColumnText = null;
- this.dgvFunctionUsers.ColumnDeep = 1;
- this.dgvFunctionUsers.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle48.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle48.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
- dataGridViewCellStyle48.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle48.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle48.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle48.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle48.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvFunctionUsers.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle48;
- this.dgvFunctionUsers.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
- this.dgvFunctionUsers.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.UserCode,
- this.UserName,
- this.UserID});
- this.dgvFunctionUsers.ColumnTreeView = null;
- this.dgvFunctionUsers.ContextMenuVisible = Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.None;
- dataGridViewCellStyle49.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle49.BackColor = System.Drawing.SystemColors.Window;
- dataGridViewCellStyle49.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle49.ForeColor = System.Drawing.SystemColors.ControlText;
- dataGridViewCellStyle49.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle49.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle49.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
- this.dgvFunctionUsers.DefaultCellStyle = dataGridViewCellStyle49;
- this.dgvFunctionUsers.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvFunctionUsers.DynamicColumnName = "";
- this.dgvFunctionUsers.EnableHeadersVisualStyles = false;
- this.dgvFunctionUsers.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvFunctionUsers.HorizontalMergeColumn = null;
- this.dgvFunctionUsers.IsAutoCountSum = true;
- this.dgvFunctionUsers.IsAutoResizeColumns = false;
- this.dgvFunctionUsers.IsClickF12 = false;
- this.dgvFunctionUsers.IsOpenMergeCellFlag = false;
- this.dgvFunctionUsers.IsSubTotalFlag = false;
- this.dgvFunctionUsers.IsTopDeep = false;
- this.dgvFunctionUsers.Location = new System.Drawing.Point(0, 0);
- this.dgvFunctionUsers.MergeColumnNames = null;
- this.dgvFunctionUsers.MergeDetailColumnNames = null;
- this.dgvFunctionUsers.MergeDetailOnlyColumn = null;
- this.dgvFunctionUsers.MergeOnlyColumn = null;
- this.dgvFunctionUsers.MultiSelect = false;
- this.dgvFunctionUsers.Name = "dgvFunctionUsers";
- this.dgvFunctionUsers.RefreshAtHscroll = false;
- dataGridViewCellStyle50.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
- dataGridViewCellStyle50.BackColor = System.Drawing.SystemColors.Control;
- dataGridViewCellStyle50.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle50.ForeColor = System.Drawing.SystemColors.WindowText;
- dataGridViewCellStyle50.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle50.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle50.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvFunctionUsers.RowHeadersDefaultCellStyle = dataGridViewCellStyle50;
- this.dgvFunctionUsers.RowHeadersWidth = 50;
- this.dgvFunctionUsers.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
- dataGridViewCellStyle51.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
- this.dgvFunctionUsers.RowsDefaultCellStyle = dataGridViewCellStyle51;
- this.dgvFunctionUsers.RowTemplate.Height = 21;
- this.dgvFunctionUsers.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
- this.dgvFunctionUsers.Size = new System.Drawing.Size(396, 128);
- this.dgvFunctionUsers.SortOrderColumnName = null;
- this.dgvFunctionUsers.TabIndex = 0;
- this.dgvFunctionUsers.Tag = true;
- this.dgvFunctionUsers.TotalSumColumns = null;
- this.dgvFunctionUsers.ViewRowFilter = "";
- //
- // UserCode
- //
- this.UserCode.DataPropertyName = "UserCode";
- this.UserCode.HeaderText = "用户编码";
- this.UserCode.Name = "UserCode";
- this.UserCode.ReadOnly = true;
- this.UserCode.Width = 80;
- //
- // UserName
- //
- this.UserName.DataPropertyName = "UserName";
- this.UserName.HeaderText = "用户名称";
- this.UserName.Name = "UserName";
- this.UserName.ReadOnly = true;
- this.UserName.Width = 80;
- //
- // UserID
- //
- this.UserID.DataPropertyName = "UserID";
- this.UserID.HeaderText = "UserID";
- this.UserID.Name = "UserID";
- this.UserID.Visible = false;
- //
- // tabControl1
- //
- this.tabControl1.Controls.Add(this.tabPage1);
- this.tabControl1.Controls.Add(this.tabPage2);
- this.tabControl1.Controls.Add(this.tabPage3);
- this.tabControl1.Controls.Add(this.tabPage4);
- this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.tabControl1.Location = new System.Drawing.Point(0, 0);
- this.tabControl1.Name = "tabControl1";
- this.tabControl1.SelectedIndex = 0;
- this.tabControl1.Size = new System.Drawing.Size(1090, 212);
- this.tabControl1.TabIndex = 0;
- //
- // tabPage1
- //
- this.tabPage1.Controls.Add(this.dgvInCheckedNoDetail);
- this.tabPage1.Location = new System.Drawing.Point(4, 22);
- this.tabPage1.Name = "tabPage1";
- this.tabPage1.Size = new System.Drawing.Size(1082, 186);
- this.tabPage1.TabIndex = 0;
- this.tabPage1.Text = "未盘点";
- this.tabPage1.UseVisualStyleBackColor = true;
- //
- // dgvInCheckedNoDetail
- //
- this.dgvInCheckedNoDetail.AllowUserToAddRows = false;
- this.dgvInCheckedNoDetail.AllowUserToDeleteRows = false;
- this.dgvInCheckedNoDetail.AllowUserToModifyRows = true;
- this.dgvInCheckedNoDetail.AllowUserToOrderColumns = true;
- dataGridViewCellStyle52.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
- this.dgvInCheckedNoDetail.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle52;
- this.dgvInCheckedNoDetail.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.dgvInCheckedNoDetail.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
- this.dgvInCheckedNoDetail.CellHeight = 23;
- this.dgvInCheckedNoDetail.ChildNodeColumnName = null;
- this.dgvInCheckedNoDetail.ChildNodeColumnText = null;
- this.dgvInCheckedNoDetail.ColumnDeep = 1;
- this.dgvInCheckedNoDetail.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle53.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle53.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
- dataGridViewCellStyle53.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle53.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle53.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle53.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle53.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvInCheckedNoDetail.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle53;
- this.dgvInCheckedNoDetail.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
- this.dgvInCheckedNoDetail.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.Sel,
- this.BarCode,
- this.GroutingLineCode,
- this.GroutingLineName,
- this.GroutingMouldCode,
- this.GroutingDate,
- this.GroutingUserCode,
- this.GroutingBatchNo,
- this.GroutingCount,
- this.GoodsCode,
- this.GoodsName,
- this.g1Remarks,
- this.g1procedurename,
- this.g1PROCEDURETIME});
- this.dgvInCheckedNoDetail.ColumnTreeView = null;
- this.dgvInCheckedNoDetail.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.dgvInCheckedNoDetail.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvInCheckedNoDetail.DynamicColumnName = "";
- this.dgvInCheckedNoDetail.EnableHeadersVisualStyles = false;
- this.dgvInCheckedNoDetail.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvInCheckedNoDetail.HorizontalMergeColumn = null;
- this.dgvInCheckedNoDetail.IsAutoCountSum = true;
- this.dgvInCheckedNoDetail.IsAutoResizeColumns = false;
- this.dgvInCheckedNoDetail.IsClickF12 = false;
- this.dgvInCheckedNoDetail.IsOpenMergeCellFlag = false;
- this.dgvInCheckedNoDetail.IsSubTotalFlag = false;
- this.dgvInCheckedNoDetail.IsTopDeep = false;
- this.dgvInCheckedNoDetail.Location = new System.Drawing.Point(0, 0);
- this.dgvInCheckedNoDetail.Margin = new System.Windows.Forms.Padding(0);
- this.dgvInCheckedNoDetail.MergeColumnNames = null;
- this.dgvInCheckedNoDetail.MergeDetailColumnNames = null;
- this.dgvInCheckedNoDetail.MergeDetailOnlyColumn = null;
- this.dgvInCheckedNoDetail.MergeOnlyColumn = null;
- this.dgvInCheckedNoDetail.MultiSelect = false;
- this.dgvInCheckedNoDetail.Name = "dgvInCheckedNoDetail";
- this.dgvInCheckedNoDetail.RefreshAtHscroll = false;
- this.dgvInCheckedNoDetail.RowHeadersWidth = 50;
- this.dgvInCheckedNoDetail.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
- dataGridViewCellStyle58.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
- this.dgvInCheckedNoDetail.RowsDefaultCellStyle = dataGridViewCellStyle58;
- this.dgvInCheckedNoDetail.RowTemplate.Height = 25;
- this.dgvInCheckedNoDetail.Size = new System.Drawing.Size(1082, 186);
- this.dgvInCheckedNoDetail.SortOrderColumnName = null;
- this.dgvInCheckedNoDetail.TabIndex = 0;
- this.dgvInCheckedNoDetail.Tag = true;
- this.dgvInCheckedNoDetail.TotalSumColumns = null;
- this.dgvInCheckedNoDetail.ViewRowFilter = "";
- this.dgvInCheckedNoDetail.CurrentCellDirtyStateChanged += new System.EventHandler(this.dgvInCheckedNoDetail_CurrentCellDirtyStateChanged);
- this.dgvInCheckedNoDetail.Sorted += new System.EventHandler(this.dgvInCheckedNoDetail_Sorted);
- //
- // Sel
- //
- this.Sel.DataPropertyName = "Sel";
- this.Sel.FalseValue = "0";
- this.Sel.HeaderText = "选择";
- this.Sel.Name = "Sel";
- this.Sel.TrueValue = "1";
- //
- // BarCode
- //
- this.BarCode.DataPropertyName = "BarCode";
- this.BarCode.HeaderText = "产品条码";
- this.BarCode.Name = "BarCode";
- this.BarCode.ReadOnly = true;
- //
- // GroutingLineCode
- //
- this.GroutingLineCode.DataPropertyName = "GroutingLineCode";
- this.GroutingLineCode.HeaderText = "成型线编码";
- this.GroutingLineCode.Name = "GroutingLineCode";
- this.GroutingLineCode.ReadOnly = true;
- //
- // GroutingLineName
- //
- this.GroutingLineName.DataPropertyName = "GroutingLineName";
- this.GroutingLineName.HeaderText = "成型线名称";
- this.GroutingLineName.Name = "GroutingLineName";
- this.GroutingLineName.ReadOnly = true;
- //
- // GroutingMouldCode
- //
- this.GroutingMouldCode.DataPropertyName = "GroutingMouldCode";
- this.GroutingMouldCode.HeaderText = "模具编号";
- this.GroutingMouldCode.Name = "GroutingMouldCode";
- this.GroutingMouldCode.ReadOnly = true;
- //
- // GroutingDate
- //
- this.GroutingDate.DataPropertyName = "GroutingDate";
- dataGridViewCellStyle54.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle54.Format = "yyyy-MM-dd";
- dataGridViewCellStyle54.NullValue = null;
- this.GroutingDate.DefaultCellStyle = dataGridViewCellStyle54;
- this.GroutingDate.HeaderText = "注浆日期";
- this.GroutingDate.Name = "GroutingDate";
- this.GroutingDate.ReadOnly = true;
- //
- // GroutingUserCode
- //
- this.GroutingUserCode.DataPropertyName = "UserCode";
- this.GroutingUserCode.HeaderText = "成型工号";
- this.GroutingUserCode.Name = "GroutingUserCode";
- this.GroutingUserCode.ReadOnly = true;
- //
- // GroutingBatchNo
- //
- this.GroutingBatchNo.DataPropertyName = "GroutingBatchNo";
- dataGridViewCellStyle55.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.GroutingBatchNo.DefaultCellStyle = dataGridViewCellStyle55;
- this.GroutingBatchNo.HeaderText = "注浆批次";
- this.GroutingBatchNo.Name = "GroutingBatchNo";
- this.GroutingBatchNo.ReadOnly = true;
- //
- // GroutingCount
- //
- this.GroutingCount.DataPropertyName = "GroutingCount";
- dataGridViewCellStyle56.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.GroutingCount.DefaultCellStyle = dataGridViewCellStyle56;
- this.GroutingCount.HeaderText = "注浆次数";
- this.GroutingCount.Name = "GroutingCount";
- this.GroutingCount.ReadOnly = true;
- //
- // GoodsCode
- //
- this.GoodsCode.DataPropertyName = "GoodsCode";
- this.GoodsCode.HeaderText = "产品编码";
- this.GoodsCode.Name = "GoodsCode";
- this.GoodsCode.ReadOnly = true;
- //
- // GoodsName
- //
- this.GoodsName.DataPropertyName = "GoodsName";
- this.GoodsName.HeaderText = "产品名称";
- this.GoodsName.Name = "GoodsName";
- this.GoodsName.ReadOnly = true;
- //
- // g1Remarks
- //
- this.g1Remarks.DataPropertyName = "Remarks";
- this.g1Remarks.HeaderText = "注浆备注";
- this.g1Remarks.Name = "g1Remarks";
- this.g1Remarks.ReadOnly = true;
- //
- // g1procedurename
- //
- this.g1procedurename.DataPropertyName = "procedurename";
- this.g1procedurename.HeaderText = "当前工序";
- this.g1procedurename.Name = "g1procedurename";
- this.g1procedurename.ReadOnly = true;
- //
- // g1PROCEDURETIME
- //
- this.g1PROCEDURETIME.DataPropertyName = "PROCEDURETIME";
- dataGridViewCellStyle57.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle57.Format = "yyyy-MM-dd HH:mm:ss";
- this.g1PROCEDURETIME.DefaultCellStyle = dataGridViewCellStyle57;
- this.g1PROCEDURETIME.HeaderText = "完成时间";
- this.g1PROCEDURETIME.Name = "g1PROCEDURETIME";
- this.g1PROCEDURETIME.ReadOnly = true;
- //
- // tabPage2
- //
- this.tabPage2.Controls.Add(this.dgvInCheckededDetail);
- this.tabPage2.Location = new System.Drawing.Point(4, 22);
- this.tabPage2.Name = "tabPage2";
- this.tabPage2.Size = new System.Drawing.Size(1082, 186);
- this.tabPage2.TabIndex = 1;
- this.tabPage2.Text = "己盘点";
- this.tabPage2.UseVisualStyleBackColor = true;
- //
- // dgvInCheckededDetail
- //
- this.dgvInCheckededDetail.AllowUserToAddRows = false;
- this.dgvInCheckededDetail.AllowUserToDeleteRows = false;
- this.dgvInCheckededDetail.AllowUserToModifyRows = true;
- this.dgvInCheckededDetail.AllowUserToOrderColumns = true;
- dataGridViewCellStyle59.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
- this.dgvInCheckededDetail.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle59;
- this.dgvInCheckededDetail.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.dgvInCheckededDetail.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
- this.dgvInCheckededDetail.CellHeight = 23;
- this.dgvInCheckededDetail.ChildNodeColumnName = null;
- this.dgvInCheckededDetail.ChildNodeColumnText = null;
- this.dgvInCheckededDetail.ColumnDeep = 1;
- this.dgvInCheckededDetail.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle60.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle60.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
- dataGridViewCellStyle60.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle60.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle60.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle60.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle60.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvInCheckededDetail.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle60;
- this.dgvInCheckededDetail.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
- this.dgvInCheckededDetail.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.CheckedDate,
- this.CheckedUserCode,
- this.dataGridViewTextBoxColumn1,
- this.dataGridViewTextBoxColumn2,
- this.dataGridViewTextBoxColumn3,
- this.dataGridViewTextBoxColumn4,
- this.dataGridViewTextBoxColumn5,
- this.dataGridViewTextBoxColumn6,
- this.dataGridViewTextBoxColumn7,
- this.dataGridViewTextBoxColumn8,
- this.dataGridViewTextBoxColumn9,
- this.dataGridViewTextBoxColumn10,
- this.dataGridViewTextBoxColumn11,
- this.g2procedurename,
- this.g2PROCEDURETIME});
- this.dgvInCheckededDetail.ColumnTreeView = null;
- this.dgvInCheckededDetail.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.dgvInCheckededDetail.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvInCheckededDetail.DynamicColumnName = "";
- this.dgvInCheckededDetail.EnableHeadersVisualStyles = false;
- this.dgvInCheckededDetail.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvInCheckededDetail.HorizontalMergeColumn = null;
- this.dgvInCheckededDetail.IsAutoCountSum = true;
- this.dgvInCheckededDetail.IsAutoResizeColumns = false;
- this.dgvInCheckededDetail.IsClickF12 = false;
- this.dgvInCheckededDetail.IsOpenMergeCellFlag = false;
- this.dgvInCheckededDetail.IsSubTotalFlag = false;
- this.dgvInCheckededDetail.IsTopDeep = false;
- this.dgvInCheckededDetail.Location = new System.Drawing.Point(0, 0);
- this.dgvInCheckededDetail.Margin = new System.Windows.Forms.Padding(0);
- this.dgvInCheckededDetail.MergeColumnNames = null;
- this.dgvInCheckededDetail.MergeDetailColumnNames = null;
- this.dgvInCheckededDetail.MergeDetailOnlyColumn = null;
- this.dgvInCheckededDetail.MergeOnlyColumn = null;
- this.dgvInCheckededDetail.MultiSelect = false;
- this.dgvInCheckededDetail.Name = "dgvInCheckededDetail";
- this.dgvInCheckededDetail.ReadOnly = true;
- this.dgvInCheckededDetail.RefreshAtHscroll = false;
- this.dgvInCheckededDetail.RowHeadersWidth = 50;
- this.dgvInCheckededDetail.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
- dataGridViewCellStyle66.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
- this.dgvInCheckededDetail.RowsDefaultCellStyle = dataGridViewCellStyle66;
- this.dgvInCheckededDetail.RowTemplate.Height = 25;
- this.dgvInCheckededDetail.Size = new System.Drawing.Size(1082, 186);
- this.dgvInCheckededDetail.SortOrderColumnName = null;
- this.dgvInCheckededDetail.TabIndex = 1;
- this.dgvInCheckededDetail.Tag = true;
- this.dgvInCheckededDetail.TotalSumColumns = null;
- this.dgvInCheckededDetail.ViewRowFilter = "";
- //
- // CheckedDate
- //
- this.CheckedDate.DataPropertyName = "CheckedDate";
- dataGridViewCellStyle61.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle61.Format = "yyyy-MM-dd HH:mm:ss";
- this.CheckedDate.DefaultCellStyle = dataGridViewCellStyle61;
- this.CheckedDate.HeaderText = "盘点时间";
- this.CheckedDate.Name = "CheckedDate";
- this.CheckedDate.ReadOnly = true;
- //
- // CheckedUserCode
- //
- this.CheckedUserCode.DataPropertyName = "CheckedUserCode";
- this.CheckedUserCode.HeaderText = "盘点工号";
- this.CheckedUserCode.Name = "CheckedUserCode";
- this.CheckedUserCode.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn1
- //
- this.dataGridViewTextBoxColumn1.DataPropertyName = "BarCode";
- this.dataGridViewTextBoxColumn1.HeaderText = "产品条码";
- this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
- this.dataGridViewTextBoxColumn1.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn2
- //
- this.dataGridViewTextBoxColumn2.DataPropertyName = "GroutingLineCode";
- this.dataGridViewTextBoxColumn2.HeaderText = "成型线编码";
- this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
- this.dataGridViewTextBoxColumn2.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn3
- //
- this.dataGridViewTextBoxColumn3.DataPropertyName = "GroutingLineName";
- this.dataGridViewTextBoxColumn3.HeaderText = "成型线名称";
- this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
- this.dataGridViewTextBoxColumn3.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn4
- //
- this.dataGridViewTextBoxColumn4.DataPropertyName = "GroutingMouldCode";
- this.dataGridViewTextBoxColumn4.HeaderText = "模具编号";
- this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
- this.dataGridViewTextBoxColumn4.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn5
- //
- this.dataGridViewTextBoxColumn5.DataPropertyName = "GroutingDate";
- dataGridViewCellStyle62.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle62.Format = "yyyy-MM-dd";
- dataGridViewCellStyle62.NullValue = null;
- this.dataGridViewTextBoxColumn5.DefaultCellStyle = dataGridViewCellStyle62;
- this.dataGridViewTextBoxColumn5.HeaderText = "注浆日期";
- this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
- this.dataGridViewTextBoxColumn5.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn6
- //
- this.dataGridViewTextBoxColumn6.DataPropertyName = "UserCode";
- this.dataGridViewTextBoxColumn6.HeaderText = "成型工号";
- this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
- this.dataGridViewTextBoxColumn6.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn7
- //
- this.dataGridViewTextBoxColumn7.DataPropertyName = "GroutingBatchNo";
- dataGridViewCellStyle63.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.dataGridViewTextBoxColumn7.DefaultCellStyle = dataGridViewCellStyle63;
- this.dataGridViewTextBoxColumn7.HeaderText = "注浆批次";
- this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
- this.dataGridViewTextBoxColumn7.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn8
- //
- this.dataGridViewTextBoxColumn8.DataPropertyName = "GroutingCount";
- dataGridViewCellStyle64.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.dataGridViewTextBoxColumn8.DefaultCellStyle = dataGridViewCellStyle64;
- this.dataGridViewTextBoxColumn8.HeaderText = "注浆次数";
- this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
- this.dataGridViewTextBoxColumn8.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn9
- //
- this.dataGridViewTextBoxColumn9.DataPropertyName = "GoodsCode";
- this.dataGridViewTextBoxColumn9.HeaderText = "产品编码";
- this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9";
- this.dataGridViewTextBoxColumn9.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn10
- //
- this.dataGridViewTextBoxColumn10.DataPropertyName = "GoodsName";
- this.dataGridViewTextBoxColumn10.HeaderText = "产品名称";
- this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10";
- this.dataGridViewTextBoxColumn10.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn11
- //
- this.dataGridViewTextBoxColumn11.DataPropertyName = "Remarks";
- this.dataGridViewTextBoxColumn11.HeaderText = "注浆备注";
- this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
- this.dataGridViewTextBoxColumn11.ReadOnly = true;
- //
- // g2procedurename
- //
- this.g2procedurename.DataPropertyName = "procedurename";
- this.g2procedurename.HeaderText = "当前工序";
- this.g2procedurename.Name = "g2procedurename";
- this.g2procedurename.ReadOnly = true;
- //
- // g2PROCEDURETIME
- //
- this.g2PROCEDURETIME.DataPropertyName = "PROCEDURETIME";
- dataGridViewCellStyle65.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle65.Format = "yyyy-MM-dd HH:mm:ss";
- this.g2PROCEDURETIME.DefaultCellStyle = dataGridViewCellStyle65;
- this.g2PROCEDURETIME.HeaderText = "完成时间";
- this.g2PROCEDURETIME.Name = "g2PROCEDURETIME";
- this.g2PROCEDURETIME.ReadOnly = true;
- //
- // tabPage3
- //
- this.tabPage3.Controls.Add(this.dgvInCheckedWinDetail);
- this.tabPage3.Location = new System.Drawing.Point(4, 22);
- this.tabPage3.Name = "tabPage3";
- this.tabPage3.Size = new System.Drawing.Size(1082, 186);
- this.tabPage3.TabIndex = 2;
- this.tabPage3.Text = "盘盈";
- this.tabPage3.UseVisualStyleBackColor = true;
- //
- // dgvInCheckedWinDetail
- //
- this.dgvInCheckedWinDetail.AllowUserToAddRows = false;
- this.dgvInCheckedWinDetail.AllowUserToDeleteRows = false;
- this.dgvInCheckedWinDetail.AllowUserToModifyRows = true;
- this.dgvInCheckedWinDetail.AllowUserToOrderColumns = true;
- dataGridViewCellStyle67.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
- this.dgvInCheckedWinDetail.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle67;
- this.dgvInCheckedWinDetail.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.dgvInCheckedWinDetail.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
- this.dgvInCheckedWinDetail.CellHeight = 23;
- this.dgvInCheckedWinDetail.ChildNodeColumnName = null;
- this.dgvInCheckedWinDetail.ChildNodeColumnText = null;
- this.dgvInCheckedWinDetail.ColumnDeep = 1;
- this.dgvInCheckedWinDetail.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle68.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle68.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
- dataGridViewCellStyle68.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle68.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle68.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle68.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle68.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvInCheckedWinDetail.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle68;
- this.dgvInCheckedWinDetail.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
- this.dgvInCheckedWinDetail.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.g3CheckedDate,
- this.g3CheckedUserCode,
- this.dataGridViewTextBoxColumn12,
- this.dataGridViewTextBoxColumn13,
- this.dataGridViewTextBoxColumn14,
- this.dataGridViewTextBoxColumn15,
- this.dataGridViewTextBoxColumn16,
- this.dataGridViewTextBoxColumn17,
- this.dataGridViewTextBoxColumn18,
- this.dataGridViewTextBoxColumn19,
- this.dataGridViewTextBoxColumn20,
- this.dataGridViewTextBoxColumn21,
- this.dataGridViewTextBoxColumn22,
- this.dataGridViewCheckBoxColumn2,
- this.dataGridViewTextBoxColumn23,
- this.dataGridViewTextBoxColumn24,
- this.dataGridViewCheckBoxColumn3,
- this.dataGridViewCheckBoxColumn4,
- this.dataGridViewTextBoxColumn25,
- this.dataGridViewTextBoxColumn26,
- this.g3procedurename,
- this.g3PROCEDURETIME});
- this.dgvInCheckedWinDetail.ColumnTreeView = null;
- this.dgvInCheckedWinDetail.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.dgvInCheckedWinDetail.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvInCheckedWinDetail.DynamicColumnName = "";
- this.dgvInCheckedWinDetail.EnableHeadersVisualStyles = false;
- this.dgvInCheckedWinDetail.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvInCheckedWinDetail.HorizontalMergeColumn = null;
- this.dgvInCheckedWinDetail.IsAutoCountSum = true;
- this.dgvInCheckedWinDetail.IsAutoResizeColumns = false;
- this.dgvInCheckedWinDetail.IsClickF12 = false;
- this.dgvInCheckedWinDetail.IsOpenMergeCellFlag = false;
- this.dgvInCheckedWinDetail.IsSubTotalFlag = false;
- this.dgvInCheckedWinDetail.IsTopDeep = false;
- this.dgvInCheckedWinDetail.Location = new System.Drawing.Point(0, 0);
- this.dgvInCheckedWinDetail.Margin = new System.Windows.Forms.Padding(0);
- this.dgvInCheckedWinDetail.MergeColumnNames = null;
- this.dgvInCheckedWinDetail.MergeDetailColumnNames = null;
- this.dgvInCheckedWinDetail.MergeDetailOnlyColumn = null;
- this.dgvInCheckedWinDetail.MergeOnlyColumn = null;
- this.dgvInCheckedWinDetail.MultiSelect = false;
- this.dgvInCheckedWinDetail.Name = "dgvInCheckedWinDetail";
- this.dgvInCheckedWinDetail.ReadOnly = true;
- this.dgvInCheckedWinDetail.RefreshAtHscroll = false;
- this.dgvInCheckedWinDetail.RowHeadersWidth = 50;
- this.dgvInCheckedWinDetail.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
- dataGridViewCellStyle76.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
- this.dgvInCheckedWinDetail.RowsDefaultCellStyle = dataGridViewCellStyle76;
- this.dgvInCheckedWinDetail.RowTemplate.Height = 25;
- this.dgvInCheckedWinDetail.Size = new System.Drawing.Size(1082, 186);
- this.dgvInCheckedWinDetail.SortOrderColumnName = null;
- this.dgvInCheckedWinDetail.TabIndex = 1;
- this.dgvInCheckedWinDetail.Tag = true;
- this.dgvInCheckedWinDetail.TotalSumColumns = null;
- this.dgvInCheckedWinDetail.ViewRowFilter = "";
- //
- // g3CheckedDate
- //
- this.g3CheckedDate.DataPropertyName = "CheckedDate";
- dataGridViewCellStyle69.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle69.Format = "yyyy-MM-dd HH:mm:ss";
- this.g3CheckedDate.DefaultCellStyle = dataGridViewCellStyle69;
- this.g3CheckedDate.HeaderText = "盘点时间";
- this.g3CheckedDate.Name = "g3CheckedDate";
- this.g3CheckedDate.ReadOnly = true;
- //
- // g3CheckedUserCode
- //
- this.g3CheckedUserCode.DataPropertyName = "CheckedUserCode";
- this.g3CheckedUserCode.HeaderText = "盘点工号";
- this.g3CheckedUserCode.Name = "g3CheckedUserCode";
- this.g3CheckedUserCode.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn12
- //
- this.dataGridViewTextBoxColumn12.DataPropertyName = "BarCode";
- this.dataGridViewTextBoxColumn12.HeaderText = "产品条码";
- this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
- this.dataGridViewTextBoxColumn12.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn13
- //
- this.dataGridViewTextBoxColumn13.DataPropertyName = "GroutingLineCode";
- this.dataGridViewTextBoxColumn13.HeaderText = "成型线编码";
- this.dataGridViewTextBoxColumn13.Name = "dataGridViewTextBoxColumn13";
- this.dataGridViewTextBoxColumn13.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn14
- //
- this.dataGridViewTextBoxColumn14.DataPropertyName = "GroutingLineName";
- this.dataGridViewTextBoxColumn14.HeaderText = "成型线名称";
- this.dataGridViewTextBoxColumn14.Name = "dataGridViewTextBoxColumn14";
- this.dataGridViewTextBoxColumn14.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn15
- //
- this.dataGridViewTextBoxColumn15.DataPropertyName = "GroutingMouldCode";
- this.dataGridViewTextBoxColumn15.HeaderText = "模具编号";
- this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
- this.dataGridViewTextBoxColumn15.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn16
- //
- this.dataGridViewTextBoxColumn16.DataPropertyName = "GroutingDate";
- dataGridViewCellStyle70.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle70.Format = "yyyy-MM-dd";
- dataGridViewCellStyle70.NullValue = null;
- this.dataGridViewTextBoxColumn16.DefaultCellStyle = dataGridViewCellStyle70;
- this.dataGridViewTextBoxColumn16.HeaderText = "注浆日期";
- this.dataGridViewTextBoxColumn16.Name = "dataGridViewTextBoxColumn16";
- this.dataGridViewTextBoxColumn16.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn17
- //
- this.dataGridViewTextBoxColumn17.DataPropertyName = "UserCode";
- this.dataGridViewTextBoxColumn17.HeaderText = "成型工号";
- this.dataGridViewTextBoxColumn17.Name = "dataGridViewTextBoxColumn17";
- this.dataGridViewTextBoxColumn17.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn18
- //
- this.dataGridViewTextBoxColumn18.DataPropertyName = "GroutingBatchNo";
- dataGridViewCellStyle71.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.dataGridViewTextBoxColumn18.DefaultCellStyle = dataGridViewCellStyle71;
- this.dataGridViewTextBoxColumn18.HeaderText = "注浆批次";
- this.dataGridViewTextBoxColumn18.Name = "dataGridViewTextBoxColumn18";
- this.dataGridViewTextBoxColumn18.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn19
- //
- this.dataGridViewTextBoxColumn19.DataPropertyName = "GroutingCount";
- dataGridViewCellStyle72.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.dataGridViewTextBoxColumn19.DefaultCellStyle = dataGridViewCellStyle72;
- this.dataGridViewTextBoxColumn19.HeaderText = "注浆次数";
- this.dataGridViewTextBoxColumn19.Name = "dataGridViewTextBoxColumn19";
- this.dataGridViewTextBoxColumn19.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn20
- //
- this.dataGridViewTextBoxColumn20.DataPropertyName = "GoodsCode";
- this.dataGridViewTextBoxColumn20.HeaderText = "产品编码";
- this.dataGridViewTextBoxColumn20.Name = "dataGridViewTextBoxColumn20";
- this.dataGridViewTextBoxColumn20.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn21
- //
- this.dataGridViewTextBoxColumn21.DataPropertyName = "GoodsName";
- this.dataGridViewTextBoxColumn21.HeaderText = "产品名称";
- this.dataGridViewTextBoxColumn21.Name = "dataGridViewTextBoxColumn21";
- this.dataGridViewTextBoxColumn21.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn22
- //
- this.dataGridViewTextBoxColumn22.DataPropertyName = "Remarks";
- this.dataGridViewTextBoxColumn22.HeaderText = "注浆备注";
- this.dataGridViewTextBoxColumn22.Name = "dataGridViewTextBoxColumn22";
- this.dataGridViewTextBoxColumn22.ReadOnly = true;
- //
- // dataGridViewCheckBoxColumn2
- //
- this.dataGridViewCheckBoxColumn2.DataPropertyName = "ScrapFlag";
- this.dataGridViewCheckBoxColumn2.FalseValue = "0";
- this.dataGridViewCheckBoxColumn2.HeaderText = "损坯标识";
- this.dataGridViewCheckBoxColumn2.Name = "dataGridViewCheckBoxColumn2";
- this.dataGridViewCheckBoxColumn2.ReadOnly = true;
- this.dataGridViewCheckBoxColumn2.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dataGridViewCheckBoxColumn2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- this.dataGridViewCheckBoxColumn2.TrueValue = "1";
- //
- // dataGridViewTextBoxColumn23
- //
- this.dataGridViewTextBoxColumn23.DataPropertyName = "ScrapUsercode";
- this.dataGridViewTextBoxColumn23.HeaderText = "报损工号";
- this.dataGridViewTextBoxColumn23.Name = "dataGridViewTextBoxColumn23";
- this.dataGridViewTextBoxColumn23.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn24
- //
- this.dataGridViewTextBoxColumn24.DataPropertyName = "ScrapTime";
- dataGridViewCellStyle73.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle73.Format = "yyyy-MM-dd";
- this.dataGridViewTextBoxColumn24.DefaultCellStyle = dataGridViewCellStyle73;
- this.dataGridViewTextBoxColumn24.HeaderText = "损坯日期";
- this.dataGridViewTextBoxColumn24.Name = "dataGridViewTextBoxColumn24";
- this.dataGridViewTextBoxColumn24.ReadOnly = true;
- //
- // dataGridViewCheckBoxColumn3
- //
- this.dataGridViewCheckBoxColumn3.DataPropertyName = "IsPublicBody";
- this.dataGridViewCheckBoxColumn3.FalseValue = "0";
- this.dataGridViewCheckBoxColumn3.HeaderText = "公坯标识";
- this.dataGridViewCheckBoxColumn3.Name = "dataGridViewCheckBoxColumn3";
- this.dataGridViewCheckBoxColumn3.ReadOnly = true;
- this.dataGridViewCheckBoxColumn3.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dataGridViewCheckBoxColumn3.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- this.dataGridViewCheckBoxColumn3.TrueValue = "1";
- //
- // dataGridViewCheckBoxColumn4
- //
- this.dataGridViewCheckBoxColumn4.DataPropertyName = "DeliverFlag";
- this.dataGridViewCheckBoxColumn4.FalseValue = "0";
- this.dataGridViewCheckBoxColumn4.HeaderText = "交坯标识";
- this.dataGridViewCheckBoxColumn4.Name = "dataGridViewCheckBoxColumn4";
- this.dataGridViewCheckBoxColumn4.ReadOnly = true;
- this.dataGridViewCheckBoxColumn4.Resizable = System.Windows.Forms.DataGridViewTriState.True;
- this.dataGridViewCheckBoxColumn4.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
- this.dataGridViewCheckBoxColumn4.TrueValue = "1";
- //
- // dataGridViewTextBoxColumn25
- //
- this.dataGridViewTextBoxColumn25.DataPropertyName = "DeliverUserCode";
- this.dataGridViewTextBoxColumn25.HeaderText = "交坯工号";
- this.dataGridViewTextBoxColumn25.Name = "dataGridViewTextBoxColumn25";
- this.dataGridViewTextBoxColumn25.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn26
- //
- this.dataGridViewTextBoxColumn26.DataPropertyName = "DeliverTime";
- dataGridViewCellStyle74.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle74.Format = "yyyy-MM-dd HH:mm:ss";
- this.dataGridViewTextBoxColumn26.DefaultCellStyle = dataGridViewCellStyle74;
- this.dataGridViewTextBoxColumn26.HeaderText = "交坯时间";
- this.dataGridViewTextBoxColumn26.Name = "dataGridViewTextBoxColumn26";
- this.dataGridViewTextBoxColumn26.ReadOnly = true;
- //
- // g3procedurename
- //
- this.g3procedurename.DataPropertyName = "procedurename";
- this.g3procedurename.HeaderText = "当前工序";
- this.g3procedurename.Name = "g3procedurename";
- this.g3procedurename.ReadOnly = true;
- //
- // g3PROCEDURETIME
- //
- this.g3PROCEDURETIME.DataPropertyName = "PROCEDURETIME";
- dataGridViewCellStyle75.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle75.Format = "yyyy-MM-dd HH:mm:ss";
- this.g3PROCEDURETIME.DefaultCellStyle = dataGridViewCellStyle75;
- this.g3PROCEDURETIME.HeaderText = "完成时间";
- this.g3PROCEDURETIME.Name = "g3PROCEDURETIME";
- this.g3PROCEDURETIME.ReadOnly = true;
- //
- // tabPage4
- //
- this.tabPage4.Controls.Add(this.dgvLossDetail);
- this.tabPage4.Location = new System.Drawing.Point(4, 22);
- this.tabPage4.Name = "tabPage4";
- this.tabPage4.Size = new System.Drawing.Size(1082, 186);
- this.tabPage4.TabIndex = 3;
- this.tabPage4.Text = "盘亏报损";
- this.tabPage4.UseVisualStyleBackColor = true;
- //
- // dgvLossDetail
- //
- this.dgvLossDetail.AllowUserToAddRows = false;
- this.dgvLossDetail.AllowUserToDeleteRows = false;
- this.dgvLossDetail.AllowUserToModifyRows = true;
- this.dgvLossDetail.AllowUserToOrderColumns = true;
- dataGridViewCellStyle77.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
- this.dgvLossDetail.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle77;
- this.dgvLossDetail.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
- this.dgvLossDetail.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
- this.dgvLossDetail.CellHeight = 23;
- this.dgvLossDetail.ChildNodeColumnName = null;
- this.dgvLossDetail.ChildNodeColumnText = null;
- this.dgvLossDetail.ColumnDeep = 1;
- this.dgvLossDetail.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
- dataGridViewCellStyle78.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle78.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
- dataGridViewCellStyle78.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- dataGridViewCellStyle78.ForeColor = System.Drawing.Color.White;
- dataGridViewCellStyle78.SelectionBackColor = System.Drawing.SystemColors.Highlight;
- dataGridViewCellStyle78.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
- dataGridViewCellStyle78.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
- this.dgvLossDetail.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle78;
- this.dgvLossDetail.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
- this.dgvLossDetail.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
- this.dataGridViewTextBoxColumn27,
- this.dataGridViewTextBoxColumn28,
- this.dataGridViewTextBoxColumn29,
- this.dataGridViewTextBoxColumn30,
- this.dataGridViewTextBoxColumn31,
- this.dataGridViewTextBoxColumn32,
- this.dataGridViewTextBoxColumn33,
- this.dataGridViewTextBoxColumn34,
- this.dataGridViewTextBoxColumn35,
- this.dataGridViewTextBoxColumn36,
- this.dataGridViewTextBoxColumn37,
- this.dataGridViewTextBoxColumn38,
- this.dataGridViewTextBoxColumn39,
- this.g4procedurename,
- this.g4PROCEDURETIME});
- this.dgvLossDetail.ColumnTreeView = null;
- this.dgvLossDetail.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.dgvLossDetail.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dgvLossDetail.DynamicColumnName = "";
- this.dgvLossDetail.EnableHeadersVisualStyles = false;
- this.dgvLossDetail.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.dgvLossDetail.HorizontalMergeColumn = null;
- this.dgvLossDetail.IsAutoCountSum = true;
- this.dgvLossDetail.IsAutoResizeColumns = false;
- this.dgvLossDetail.IsClickF12 = false;
- this.dgvLossDetail.IsOpenMergeCellFlag = false;
- this.dgvLossDetail.IsSubTotalFlag = false;
- this.dgvLossDetail.IsTopDeep = false;
- this.dgvLossDetail.Location = new System.Drawing.Point(0, 0);
- this.dgvLossDetail.Margin = new System.Windows.Forms.Padding(0);
- this.dgvLossDetail.MergeColumnNames = null;
- this.dgvLossDetail.MergeDetailColumnNames = null;
- this.dgvLossDetail.MergeDetailOnlyColumn = null;
- this.dgvLossDetail.MergeOnlyColumn = null;
- this.dgvLossDetail.MultiSelect = false;
- this.dgvLossDetail.Name = "dgvLossDetail";
- this.dgvLossDetail.ReadOnly = true;
- this.dgvLossDetail.RefreshAtHscroll = false;
- this.dgvLossDetail.RowHeadersWidth = 50;
- this.dgvLossDetail.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
- dataGridViewCellStyle84.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
- this.dgvLossDetail.RowsDefaultCellStyle = dataGridViewCellStyle84;
- this.dgvLossDetail.RowTemplate.Height = 25;
- this.dgvLossDetail.Size = new System.Drawing.Size(1082, 186);
- this.dgvLossDetail.SortOrderColumnName = null;
- this.dgvLossDetail.TabIndex = 2;
- this.dgvLossDetail.Tag = true;
- this.dgvLossDetail.TotalSumColumns = null;
- this.dgvLossDetail.ViewRowFilter = "";
- //
- // dataGridViewTextBoxColumn27
- //
- this.dataGridViewTextBoxColumn27.DataPropertyName = "CheckedDate";
- dataGridViewCellStyle79.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle79.Format = "yyyy-MM-dd HH:mm:ss";
- this.dataGridViewTextBoxColumn27.DefaultCellStyle = dataGridViewCellStyle79;
- this.dataGridViewTextBoxColumn27.HeaderText = "报损时间";
- this.dataGridViewTextBoxColumn27.Name = "dataGridViewTextBoxColumn27";
- this.dataGridViewTextBoxColumn27.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn28
- //
- this.dataGridViewTextBoxColumn28.DataPropertyName = "CheckedUserCode";
- this.dataGridViewTextBoxColumn28.HeaderText = "报损工号";
- this.dataGridViewTextBoxColumn28.Name = "dataGridViewTextBoxColumn28";
- this.dataGridViewTextBoxColumn28.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn29
- //
- this.dataGridViewTextBoxColumn29.DataPropertyName = "BarCode";
- this.dataGridViewTextBoxColumn29.HeaderText = "产品条码";
- this.dataGridViewTextBoxColumn29.Name = "dataGridViewTextBoxColumn29";
- this.dataGridViewTextBoxColumn29.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn30
- //
- this.dataGridViewTextBoxColumn30.DataPropertyName = "GroutingLineCode";
- this.dataGridViewTextBoxColumn30.HeaderText = "成型线编码";
- this.dataGridViewTextBoxColumn30.Name = "dataGridViewTextBoxColumn30";
- this.dataGridViewTextBoxColumn30.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn31
- //
- this.dataGridViewTextBoxColumn31.DataPropertyName = "GroutingLineName";
- this.dataGridViewTextBoxColumn31.HeaderText = "成型线名称";
- this.dataGridViewTextBoxColumn31.Name = "dataGridViewTextBoxColumn31";
- this.dataGridViewTextBoxColumn31.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn32
- //
- this.dataGridViewTextBoxColumn32.DataPropertyName = "GroutingMouldCode";
- this.dataGridViewTextBoxColumn32.HeaderText = "模具编号";
- this.dataGridViewTextBoxColumn32.Name = "dataGridViewTextBoxColumn32";
- this.dataGridViewTextBoxColumn32.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn33
- //
- this.dataGridViewTextBoxColumn33.DataPropertyName = "GroutingDate";
- dataGridViewCellStyle80.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle80.Format = "yyyy-MM-dd";
- dataGridViewCellStyle80.NullValue = null;
- this.dataGridViewTextBoxColumn33.DefaultCellStyle = dataGridViewCellStyle80;
- this.dataGridViewTextBoxColumn33.HeaderText = "注浆日期";
- this.dataGridViewTextBoxColumn33.Name = "dataGridViewTextBoxColumn33";
- this.dataGridViewTextBoxColumn33.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn34
- //
- this.dataGridViewTextBoxColumn34.DataPropertyName = "UserCode";
- this.dataGridViewTextBoxColumn34.HeaderText = "成型工号";
- this.dataGridViewTextBoxColumn34.Name = "dataGridViewTextBoxColumn34";
- this.dataGridViewTextBoxColumn34.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn35
- //
- this.dataGridViewTextBoxColumn35.DataPropertyName = "GroutingBatchNo";
- dataGridViewCellStyle81.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.dataGridViewTextBoxColumn35.DefaultCellStyle = dataGridViewCellStyle81;
- this.dataGridViewTextBoxColumn35.HeaderText = "注浆批次";
- this.dataGridViewTextBoxColumn35.Name = "dataGridViewTextBoxColumn35";
- this.dataGridViewTextBoxColumn35.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn36
- //
- this.dataGridViewTextBoxColumn36.DataPropertyName = "GroutingCount";
- dataGridViewCellStyle82.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
- this.dataGridViewTextBoxColumn36.DefaultCellStyle = dataGridViewCellStyle82;
- this.dataGridViewTextBoxColumn36.HeaderText = "注浆次数";
- this.dataGridViewTextBoxColumn36.Name = "dataGridViewTextBoxColumn36";
- this.dataGridViewTextBoxColumn36.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn37
- //
- this.dataGridViewTextBoxColumn37.DataPropertyName = "GoodsCode";
- this.dataGridViewTextBoxColumn37.HeaderText = "产品编码";
- this.dataGridViewTextBoxColumn37.Name = "dataGridViewTextBoxColumn37";
- this.dataGridViewTextBoxColumn37.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn38
- //
- this.dataGridViewTextBoxColumn38.DataPropertyName = "GoodsName";
- this.dataGridViewTextBoxColumn38.HeaderText = "产品名称";
- this.dataGridViewTextBoxColumn38.Name = "dataGridViewTextBoxColumn38";
- this.dataGridViewTextBoxColumn38.ReadOnly = true;
- //
- // dataGridViewTextBoxColumn39
- //
- this.dataGridViewTextBoxColumn39.DataPropertyName = "Remarks";
- this.dataGridViewTextBoxColumn39.HeaderText = "注浆备注";
- this.dataGridViewTextBoxColumn39.Name = "dataGridViewTextBoxColumn39";
- this.dataGridViewTextBoxColumn39.ReadOnly = true;
- //
- // g4procedurename
- //
- this.g4procedurename.DataPropertyName = "procedurename";
- this.g4procedurename.HeaderText = "当前工序";
- this.g4procedurename.Name = "g4procedurename";
- this.g4procedurename.ReadOnly = true;
- //
- // g4PROCEDURETIME
- //
- this.g4PROCEDURETIME.DataPropertyName = "PROCEDURETIME";
- dataGridViewCellStyle83.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
- dataGridViewCellStyle83.Format = "yyyy-MM-dd HH:mm:ss";
- this.g4PROCEDURETIME.DefaultCellStyle = dataGridViewCellStyle83;
- this.g4PROCEDURETIME.HeaderText = "完成时间";
- this.g4PROCEDURETIME.Name = "g4PROCEDURETIME";
- this.g4PROCEDURETIME.ReadOnly = true;
- //
- // tsbtnCheckData
- //
- this.tsbtnCheckData.AutoSize = false;
- this.tsbtnCheckData.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
- this.tsbtnCheckData.Image = ((System.Drawing.Image)(resources.GetObject("tsbtnCheckData.Image")));
- this.tsbtnCheckData.ImageTransparentColor = System.Drawing.Color.Magenta;
- this.tsbtnCheckData.Name = "tsbtnCheckData";
- this.tsbtnCheckData.Size = new System.Drawing.Size(100, 25);
- this.tsbtnCheckData.Tag = "";
- this.tsbtnCheckData.Text = "盘点选择数据(&P)";
- this.tsbtnCheckData.Click += new System.EventHandler(this.tsbtnCheckData_Click);
- //
- // F_PM_2601
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1102, 437);
- this.Controls.Add(this.splitContainer1);
- this.Controls.Add(this.gbxCondition);
- this.Controls.Add(this.tsrOperate);
- this.Name = "F_PM_2601";
- this.Text = "成型盘点";
- this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.F_PM_2101_FormClosed);
- this.Load += new System.EventHandler(this.F_PM_2101_Load);
- this.tsrOperate.ResumeLayout(false);
- this.tsrOperate.PerformLayout();
- this.gbxCondition.ResumeLayout(false);
- this.gbxCondition.PerformLayout();
- this.splitContainer1.Panel1.ResumeLayout(false);
- this.splitContainer1.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
- this.splitContainer1.ResumeLayout(false);
- this.splitContainer2.Panel1.ResumeLayout(false);
- this.splitContainer2.Panel2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
- this.splitContainer2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvInChecked)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.dgvFunctionUsers)).EndInit();
- this.tabControl1.ResumeLayout(false);
- this.tabPage1.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvInCheckedNoDetail)).EndInit();
- this.tabPage2.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvInCheckededDetail)).EndInit();
- this.tabPage3.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvInCheckedWinDetail)).EndInit();
- this.tabPage4.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.dgvLossDetail)).EndInit();
- this.ResumeLayout(false);
- }
- #endregion
- private Basics.BaseControls.C_ToolStrip tsrOperate;
- private System.Windows.Forms.ToolStripButton tsbtnAdd;
- private System.Windows.Forms.ToolStripButton tsbtnInChecked;
- private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
- private System.Windows.Forms.ToolStripButton tsbtnAdaptive;
- private System.Windows.Forms.ToolStripButton tsbtnClose;
- private System.Windows.Forms.ToolStripButton tsbtnDisable;
- private Basics.BaseControls.C_GroupBox gbxCondition;
- private Basics.BaseControls.C_Button btnClearCondition;
- private Basics.BaseControls.C_Button btnSearch;
- private Basics.BaseControls.C_Label lblTo;
- private System.Windows.Forms.DateTimePicker dtpEndTime;
- private System.Windows.Forms.DateTimePicker dtpStartTime;
- private Basics.BaseControls.C_Label lblCreateTime;
- private Basics.BaseControls.C_Label lblBarCode;
- private Basics.BaseControls.C_TextBox txtInCheckedNo;
- private System.Windows.Forms.SplitContainer splitContainer1;
- private Basics.BaseControls.C_DataGridView dgvInChecked;
- private Basics.BaseControls.C_DataGridView dgvInCheckedNoDetail;
- private System.Windows.Forms.TabControl tabControl1;
- private System.Windows.Forms.TabPage tabPage1;
- private System.Windows.Forms.TabPage tabPage2;
- private System.Windows.Forms.TabPage tabPage3;
- private System.Windows.Forms.ToolStripButton tsbtnClearData;
- private System.Windows.Forms.ToolStripButton tsbtnAll;
- private System.Windows.Forms.ToolStripButton tsbtnUnAll;
- private Basics.BaseControls.C_Label c_Label1;
- private Basics.BaseControls.C_TextBox txtCheckedName;
- private Basics.BaseControls.C_DataGridView dgvFunctionUsers;
- private System.Windows.Forms.DataGridViewTextBoxColumn UserCode;
- private System.Windows.Forms.DataGridViewTextBoxColumn UserName;
- private System.Windows.Forms.DataGridViewTextBoxColumn UserID;
- private System.Windows.Forms.ToolStripButton tsbtnEdit;
- private System.Windows.Forms.SplitContainer splitContainer2;
- private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
- private Basics.BaseControls.C_DataGridView dgvInCheckededDetail;
- private Basics.BaseControls.C_DataGridView dgvInCheckedWinDetail;
- private System.Windows.Forms.TabPage tabPage4;
- private Basics.BaseControls.C_DataGridView dgvLossDetail;
- private System.Windows.Forms.DataGridViewTextBoxColumn GBCheckedID;
- private System.Windows.Forms.DataGridViewTextBoxColumn GBCheckedNo;
- private System.Windows.Forms.DataGridViewTextBoxColumn GBcheckname;
- private System.Windows.Forms.DataGridViewTextBoxColumn CreateTime;
- private System.Windows.Forms.DataGridViewTextBoxColumn CreateUserName;
- private System.Windows.Forms.DataGridViewTextBoxColumn Remarks;
- private System.Windows.Forms.DataGridViewCheckBoxColumn Sel;
- private System.Windows.Forms.DataGridViewTextBoxColumn BarCode;
- private System.Windows.Forms.DataGridViewTextBoxColumn GroutingLineCode;
- private System.Windows.Forms.DataGridViewTextBoxColumn GroutingLineName;
- private System.Windows.Forms.DataGridViewTextBoxColumn GroutingMouldCode;
- private System.Windows.Forms.DataGridViewTextBoxColumn GroutingDate;
- private System.Windows.Forms.DataGridViewTextBoxColumn GroutingUserCode;
- private System.Windows.Forms.DataGridViewTextBoxColumn GroutingBatchNo;
- private System.Windows.Forms.DataGridViewTextBoxColumn GroutingCount;
- private System.Windows.Forms.DataGridViewTextBoxColumn GoodsCode;
- private System.Windows.Forms.DataGridViewTextBoxColumn GoodsName;
- private System.Windows.Forms.DataGridViewTextBoxColumn g1Remarks;
- private System.Windows.Forms.DataGridViewTextBoxColumn g1procedurename;
- private System.Windows.Forms.DataGridViewTextBoxColumn g1PROCEDURETIME;
- private System.Windows.Forms.DataGridViewTextBoxColumn CheckedDate;
- private System.Windows.Forms.DataGridViewTextBoxColumn CheckedUserCode;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn4;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn5;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn6;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn7;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn8;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn9;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn10;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn11;
- private System.Windows.Forms.DataGridViewTextBoxColumn g2procedurename;
- private System.Windows.Forms.DataGridViewTextBoxColumn g2PROCEDURETIME;
- private System.Windows.Forms.DataGridViewTextBoxColumn g3CheckedDate;
- private System.Windows.Forms.DataGridViewTextBoxColumn g3CheckedUserCode;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn12;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn13;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn14;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn15;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn16;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn17;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn18;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn19;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn20;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn21;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn22;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn2;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn23;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn24;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn3;
- private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn4;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn25;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn26;
- private System.Windows.Forms.DataGridViewTextBoxColumn g3procedurename;
- private System.Windows.Forms.DataGridViewTextBoxColumn g3PROCEDURETIME;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn27;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn28;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn29;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn30;
- private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn31;
- 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 System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn39;
- private System.Windows.Forms.DataGridViewTextBoxColumn g4procedurename;
- private System.Windows.Forms.DataGridViewTextBoxColumn g4PROCEDURETIME;
- private System.Windows.Forms.ToolStripButton tsbtnCheckData;
- }
- }
|