F_PM_2601.Designer.cs 115 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821
  1. namespace Dongke.IBOSS.PRD.Client.PMModule
  2. {
  3. partial class F_PM_2601
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(F_PM_2601));
  29. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  30. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
  31. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
  32. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
  33. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
  34. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
  35. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
  36. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
  37. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
  38. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
  39. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
  40. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle();
  41. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
  42. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle();
  43. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle();
  44. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle();
  45. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle17 = new System.Windows.Forms.DataGridViewCellStyle();
  46. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle18 = new System.Windows.Forms.DataGridViewCellStyle();
  47. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle24 = new System.Windows.Forms.DataGridViewCellStyle();
  48. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle19 = new System.Windows.Forms.DataGridViewCellStyle();
  49. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle20 = new System.Windows.Forms.DataGridViewCellStyle();
  50. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle21 = new System.Windows.Forms.DataGridViewCellStyle();
  51. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle22 = new System.Windows.Forms.DataGridViewCellStyle();
  52. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle23 = new System.Windows.Forms.DataGridViewCellStyle();
  53. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle25 = new System.Windows.Forms.DataGridViewCellStyle();
  54. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle26 = new System.Windows.Forms.DataGridViewCellStyle();
  55. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle34 = new System.Windows.Forms.DataGridViewCellStyle();
  56. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle27 = new System.Windows.Forms.DataGridViewCellStyle();
  57. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle28 = new System.Windows.Forms.DataGridViewCellStyle();
  58. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle29 = new System.Windows.Forms.DataGridViewCellStyle();
  59. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle30 = new System.Windows.Forms.DataGridViewCellStyle();
  60. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle31 = new System.Windows.Forms.DataGridViewCellStyle();
  61. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle32 = new System.Windows.Forms.DataGridViewCellStyle();
  62. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle33 = new System.Windows.Forms.DataGridViewCellStyle();
  63. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle35 = new System.Windows.Forms.DataGridViewCellStyle();
  64. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle36 = new System.Windows.Forms.DataGridViewCellStyle();
  65. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle42 = new System.Windows.Forms.DataGridViewCellStyle();
  66. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle37 = new System.Windows.Forms.DataGridViewCellStyle();
  67. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle38 = new System.Windows.Forms.DataGridViewCellStyle();
  68. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle39 = new System.Windows.Forms.DataGridViewCellStyle();
  69. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle40 = new System.Windows.Forms.DataGridViewCellStyle();
  70. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle41 = new System.Windows.Forms.DataGridViewCellStyle();
  71. this.tsrOperate = new Dongke.IBOSS.PRD.Basics.BaseControls.C_ToolStrip();
  72. this.tsbtnAdd = new System.Windows.Forms.ToolStripButton();
  73. this.tsbtnEdit = new System.Windows.Forms.ToolStripButton();
  74. this.tsbtnInChecked = new System.Windows.Forms.ToolStripButton();
  75. this.tsbtnDisable = new System.Windows.Forms.ToolStripButton();
  76. this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
  77. this.tsbtnAll = new System.Windows.Forms.ToolStripButton();
  78. this.tsbtnUnAll = new System.Windows.Forms.ToolStripButton();
  79. this.tsbtnCheckData = new System.Windows.Forms.ToolStripButton();
  80. this.tsbtnClearData = new System.Windows.Forms.ToolStripButton();
  81. this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
  82. this.tsbtnAdaptive = new System.Windows.Forms.ToolStripButton();
  83. this.tsbtnClose = new System.Windows.Forms.ToolStripButton();
  84. this.gbxCondition = new Dongke.IBOSS.PRD.Basics.BaseControls.C_GroupBox();
  85. this.btnClearCondition = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Button();
  86. this.btnSearch = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Button();
  87. this.lblTo = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  88. this.dtpEndTime = new System.Windows.Forms.DateTimePicker();
  89. this.dtpStartTime = new System.Windows.Forms.DateTimePicker();
  90. this.lblCreateTime = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  91. this.c_Label1 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  92. this.lblBarCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  93. this.txtCheckedName = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
  94. this.txtInCheckedNo = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
  95. this.splitContainer1 = new System.Windows.Forms.SplitContainer();
  96. this.splitContainer2 = new System.Windows.Forms.SplitContainer();
  97. this.dgvInChecked = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
  98. this.GBCheckedID = new System.Windows.Forms.DataGridViewTextBoxColumn();
  99. this.GBCheckedNo = new System.Windows.Forms.DataGridViewTextBoxColumn();
  100. this.GBcheckname = new System.Windows.Forms.DataGridViewTextBoxColumn();
  101. this.CreateTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
  102. this.CreateUserName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  103. this.Remarks = new System.Windows.Forms.DataGridViewTextBoxColumn();
  104. this.dgvFunctionUsers = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
  105. this.UserCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  106. this.UserName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  107. this.UserID = new System.Windows.Forms.DataGridViewTextBoxColumn();
  108. this.tabControl1 = new System.Windows.Forms.TabControl();
  109. this.tabPage1 = new System.Windows.Forms.TabPage();
  110. this.dgvInCheckedNoDetail = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
  111. this.Sel = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  112. this.BarCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  113. this.GroutingLineCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  114. this.GroutingLineName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  115. this.GroutingMouldCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  116. this.GroutingDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
  117. this.GroutingUserCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  118. this.GroutingBatchNo = new System.Windows.Forms.DataGridViewTextBoxColumn();
  119. this.GroutingCount = new System.Windows.Forms.DataGridViewTextBoxColumn();
  120. this.GoodsCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  121. this.GoodsName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  122. this.g1Remarks = new System.Windows.Forms.DataGridViewTextBoxColumn();
  123. this.g1procedurename = new System.Windows.Forms.DataGridViewTextBoxColumn();
  124. this.g1PROCEDURETIME = new System.Windows.Forms.DataGridViewTextBoxColumn();
  125. this.tabPage2 = new System.Windows.Forms.TabPage();
  126. this.dgvInCheckededDetail = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
  127. this.CheckedDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
  128. this.CheckedUserCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  129. this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  130. this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  131. this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  132. this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  133. this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  134. this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  135. this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  136. this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  137. this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  138. this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  139. this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  140. this.g2procedurename = new System.Windows.Forms.DataGridViewTextBoxColumn();
  141. this.g2PROCEDURETIME = new System.Windows.Forms.DataGridViewTextBoxColumn();
  142. this.tabPage3 = new System.Windows.Forms.TabPage();
  143. this.dgvInCheckedWinDetail = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
  144. this.g3CheckedDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
  145. this.g3CheckedUserCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  146. this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  147. this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  148. this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  149. this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  150. this.dataGridViewTextBoxColumn16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  151. this.dataGridViewTextBoxColumn17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  152. this.dataGridViewTextBoxColumn18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  153. this.dataGridViewTextBoxColumn19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  154. this.dataGridViewTextBoxColumn20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  155. this.dataGridViewTextBoxColumn21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  156. this.dataGridViewTextBoxColumn22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  157. this.dataGridViewCheckBoxColumn2 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  158. this.dataGridViewTextBoxColumn23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  159. this.dataGridViewTextBoxColumn24 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  160. this.dataGridViewCheckBoxColumn3 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  161. this.dataGridViewCheckBoxColumn4 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  162. this.dataGridViewTextBoxColumn25 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  163. this.dataGridViewTextBoxColumn26 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  164. this.g3procedurename = new System.Windows.Forms.DataGridViewTextBoxColumn();
  165. this.g3PROCEDURETIME = new System.Windows.Forms.DataGridViewTextBoxColumn();
  166. this.tabPage4 = new System.Windows.Forms.TabPage();
  167. this.dgvLossDetail = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
  168. this.dataGridViewTextBoxColumn27 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  169. this.dataGridViewTextBoxColumn28 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  170. this.dataGridViewTextBoxColumn29 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  171. this.dataGridViewTextBoxColumn30 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  172. this.dataGridViewTextBoxColumn31 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  173. this.dataGridViewTextBoxColumn32 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  174. this.dataGridViewTextBoxColumn33 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  175. this.dataGridViewTextBoxColumn34 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  176. this.dataGridViewTextBoxColumn35 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  177. this.dataGridViewTextBoxColumn36 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  178. this.dataGridViewTextBoxColumn37 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  179. this.dataGridViewTextBoxColumn38 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  180. this.dataGridViewTextBoxColumn39 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  181. this.g4procedurename = new System.Windows.Forms.DataGridViewTextBoxColumn();
  182. this.g4PROCEDURETIME = new System.Windows.Forms.DataGridViewTextBoxColumn();
  183. this.tsrOperate.SuspendLayout();
  184. this.gbxCondition.SuspendLayout();
  185. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
  186. this.splitContainer1.Panel1.SuspendLayout();
  187. this.splitContainer1.Panel2.SuspendLayout();
  188. this.splitContainer1.SuspendLayout();
  189. ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
  190. this.splitContainer2.Panel1.SuspendLayout();
  191. this.splitContainer2.Panel2.SuspendLayout();
  192. this.splitContainer2.SuspendLayout();
  193. ((System.ComponentModel.ISupportInitialize)(this.dgvInChecked)).BeginInit();
  194. ((System.ComponentModel.ISupportInitialize)(this.dgvFunctionUsers)).BeginInit();
  195. this.tabControl1.SuspendLayout();
  196. this.tabPage1.SuspendLayout();
  197. ((System.ComponentModel.ISupportInitialize)(this.dgvInCheckedNoDetail)).BeginInit();
  198. this.tabPage2.SuspendLayout();
  199. ((System.ComponentModel.ISupportInitialize)(this.dgvInCheckededDetail)).BeginInit();
  200. this.tabPage3.SuspendLayout();
  201. ((System.ComponentModel.ISupportInitialize)(this.dgvInCheckedWinDetail)).BeginInit();
  202. this.tabPage4.SuspendLayout();
  203. ((System.ComponentModel.ISupportInitialize)(this.dgvLossDetail)).BeginInit();
  204. this.SuspendLayout();
  205. //
  206. // tsrOperate
  207. //
  208. this.tsrOperate.AutoSize = false;
  209. this.tsrOperate.BackColor = System.Drawing.Color.Transparent;
  210. this.tsrOperate.BackgroundImage = global::Dongke.IBOSS.PRD.Client.PMModule.Properties.Resources.functionbackground;
  211. this.tsrOperate.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  212. this.tsrOperate.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  213. this.tsbtnAdd,
  214. this.tsbtnEdit,
  215. this.tsbtnInChecked,
  216. this.tsbtnDisable,
  217. this.toolStripSeparator2,
  218. this.tsbtnAll,
  219. this.tsbtnUnAll,
  220. this.tsbtnCheckData,
  221. this.tsbtnClearData,
  222. this.toolStripSeparator1,
  223. this.tsbtnAdaptive,
  224. this.tsbtnClose});
  225. this.tsrOperate.Location = new System.Drawing.Point(0, 0);
  226. this.tsrOperate.Name = "tsrOperate";
  227. this.tsrOperate.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
  228. this.tsrOperate.ShowItemToolTips = false;
  229. this.tsrOperate.Size = new System.Drawing.Size(1102, 35);
  230. this.tsrOperate.TabIndex = 0;
  231. this.tsrOperate.Text = "toolStrip1";
  232. //
  233. // tsbtnAdd
  234. //
  235. this.tsbtnAdd.AutoSize = false;
  236. this.tsbtnAdd.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  237. this.tsbtnAdd.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
  238. this.tsbtnAdd.ImageTransparentColor = System.Drawing.Color.Magenta;
  239. this.tsbtnAdd.Name = "tsbtnAdd";
  240. this.tsbtnAdd.Size = new System.Drawing.Size(60, 25);
  241. this.tsbtnAdd.Text = "新建(&N)";
  242. this.tsbtnAdd.Click += new System.EventHandler(this.tsbtnAdd_Click);
  243. //
  244. // tsbtnEdit
  245. //
  246. this.tsbtnEdit.AutoSize = false;
  247. this.tsbtnEdit.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  248. this.tsbtnEdit.Image = ((System.Drawing.Image)(resources.GetObject("tsbtnEdit.Image")));
  249. this.tsbtnEdit.ImageTransparentColor = System.Drawing.Color.Magenta;
  250. this.tsbtnEdit.Name = "tsbtnEdit";
  251. this.tsbtnEdit.Size = new System.Drawing.Size(60, 25);
  252. this.tsbtnEdit.Tag = "";
  253. this.tsbtnEdit.Text = "编辑";
  254. this.tsbtnEdit.Click += new System.EventHandler(this.tsbtnEdit_Click);
  255. //
  256. // tsbtnInChecked
  257. //
  258. this.tsbtnInChecked.AutoSize = false;
  259. this.tsbtnInChecked.Enabled = false;
  260. this.tsbtnInChecked.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  261. this.tsbtnInChecked.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
  262. this.tsbtnInChecked.ImageTransparentColor = System.Drawing.Color.Magenta;
  263. this.tsbtnInChecked.Name = "tsbtnInChecked";
  264. this.tsbtnInChecked.Size = new System.Drawing.Size(60, 25);
  265. this.tsbtnInChecked.Text = "盘点(&I)";
  266. this.tsbtnInChecked.Click += new System.EventHandler(this.tsbtnInChecked_Click);
  267. //
  268. // tsbtnDisable
  269. //
  270. this.tsbtnDisable.AutoSize = false;
  271. this.tsbtnDisable.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  272. this.tsbtnDisable.Enabled = false;
  273. this.tsbtnDisable.Image = ((System.Drawing.Image)(resources.GetObject("tsbtnDisable.Image")));
  274. this.tsbtnDisable.ImageTransparentColor = System.Drawing.Color.Magenta;
  275. this.tsbtnDisable.Name = "tsbtnDisable";
  276. this.tsbtnDisable.Size = new System.Drawing.Size(60, 25);
  277. this.tsbtnDisable.Tag = "";
  278. this.tsbtnDisable.Text = "停用(S)";
  279. this.tsbtnDisable.Click += new System.EventHandler(this.tsbtnDisable_Click);
  280. //
  281. // toolStripSeparator2
  282. //
  283. this.toolStripSeparator2.AutoSize = false;
  284. this.toolStripSeparator2.Name = "toolStripSeparator2";
  285. this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
  286. //
  287. // tsbtnAll
  288. //
  289. this.tsbtnAll.AutoSize = false;
  290. this.tsbtnAll.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  291. this.tsbtnAll.Image = ((System.Drawing.Image)(resources.GetObject("tsbtnAll.Image")));
  292. this.tsbtnAll.ImageTransparentColor = System.Drawing.Color.Magenta;
  293. this.tsbtnAll.Name = "tsbtnAll";
  294. this.tsbtnAll.Size = new System.Drawing.Size(60, 25);
  295. this.tsbtnAll.Text = "全选";
  296. this.tsbtnAll.Click += new System.EventHandler(this.tsbtnAll_Click);
  297. //
  298. // tsbtnUnAll
  299. //
  300. this.tsbtnUnAll.AutoSize = false;
  301. this.tsbtnUnAll.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  302. this.tsbtnUnAll.Image = ((System.Drawing.Image)(resources.GetObject("tsbtnUnAll.Image")));
  303. this.tsbtnUnAll.ImageTransparentColor = System.Drawing.Color.Magenta;
  304. this.tsbtnUnAll.Name = "tsbtnUnAll";
  305. this.tsbtnUnAll.Size = new System.Drawing.Size(80, 25);
  306. this.tsbtnUnAll.Text = "不选";
  307. this.tsbtnUnAll.Click += new System.EventHandler(this.tsbtnUnAll_Click);
  308. //
  309. // tsbtnCheckData
  310. //
  311. this.tsbtnCheckData.AutoSize = false;
  312. this.tsbtnCheckData.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  313. this.tsbtnCheckData.Image = ((System.Drawing.Image)(resources.GetObject("tsbtnCheckData.Image")));
  314. this.tsbtnCheckData.ImageTransparentColor = System.Drawing.Color.Magenta;
  315. this.tsbtnCheckData.Name = "tsbtnCheckData";
  316. this.tsbtnCheckData.Size = new System.Drawing.Size(100, 25);
  317. this.tsbtnCheckData.Tag = "";
  318. this.tsbtnCheckData.Text = "盘点选择数据(&P)";
  319. this.tsbtnCheckData.Click += new System.EventHandler(this.tsbtnCheckData_Click);
  320. //
  321. // tsbtnClearData
  322. //
  323. this.tsbtnClearData.AutoSize = false;
  324. this.tsbtnClearData.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
  325. this.tsbtnClearData.Image = ((System.Drawing.Image)(resources.GetObject("tsbtnClearData.Image")));
  326. this.tsbtnClearData.ImageTransparentColor = System.Drawing.Color.Magenta;
  327. this.tsbtnClearData.Name = "tsbtnClearData";
  328. this.tsbtnClearData.Size = new System.Drawing.Size(120, 25);
  329. this.tsbtnClearData.Tag = "";
  330. this.tsbtnClearData.Text = "报损未盘点产品(&D)";
  331. this.tsbtnClearData.Click += new System.EventHandler(this.tsbtnClearData_Click);
  332. //
  333. // toolStripSeparator1
  334. //
  335. this.toolStripSeparator1.AutoSize = false;
  336. this.toolStripSeparator1.Name = "toolStripSeparator1";
  337. this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
  338. //
  339. // tsbtnAdaptive
  340. //
  341. this.tsbtnAdaptive.AutoSize = false;
  342. this.tsbtnAdaptive.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  343. this.tsbtnAdaptive.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
  344. this.tsbtnAdaptive.ImageTransparentColor = System.Drawing.Color.Magenta;
  345. this.tsbtnAdaptive.Name = "tsbtnAdaptive";
  346. this.tsbtnAdaptive.Size = new System.Drawing.Size(90, 25);
  347. this.tsbtnAdaptive.Text = "自适应列宽(&A)";
  348. this.tsbtnAdaptive.Click += new System.EventHandler(this.tsbtnAdaptive_Click);
  349. //
  350. // tsbtnClose
  351. //
  352. this.tsbtnClose.AutoSize = false;
  353. this.tsbtnClose.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  354. this.tsbtnClose.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
  355. this.tsbtnClose.ImageTransparentColor = System.Drawing.Color.Magenta;
  356. this.tsbtnClose.Name = "tsbtnClose";
  357. this.tsbtnClose.Size = new System.Drawing.Size(60, 25);
  358. this.tsbtnClose.Text = "关闭(&X)";
  359. this.tsbtnClose.Click += new System.EventHandler(this.tsbtnClose_Click);
  360. //
  361. // gbxCondition
  362. //
  363. this.gbxCondition.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  364. | System.Windows.Forms.AnchorStyles.Right)));
  365. this.gbxCondition.BackColor = System.Drawing.Color.Transparent;
  366. this.gbxCondition.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("gbxCondition.BackgroundImage")));
  367. this.gbxCondition.Controls.Add(this.btnClearCondition);
  368. this.gbxCondition.Controls.Add(this.btnSearch);
  369. this.gbxCondition.Controls.Add(this.lblTo);
  370. this.gbxCondition.Controls.Add(this.dtpEndTime);
  371. this.gbxCondition.Controls.Add(this.dtpStartTime);
  372. this.gbxCondition.Controls.Add(this.lblCreateTime);
  373. this.gbxCondition.Controls.Add(this.c_Label1);
  374. this.gbxCondition.Controls.Add(this.lblBarCode);
  375. this.gbxCondition.Controls.Add(this.txtCheckedName);
  376. this.gbxCondition.Controls.Add(this.txtInCheckedNo);
  377. this.gbxCondition.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  378. this.gbxCondition.ForeColor = System.Drawing.SystemColors.ControlText;
  379. this.gbxCondition.IsMustInput = false;
  380. this.gbxCondition.Location = new System.Drawing.Point(0, 38);
  381. this.gbxCondition.Name = "gbxCondition";
  382. this.gbxCondition.OriginalHeight = -1;
  383. this.gbxCondition.Size = new System.Drawing.Size(1090, 48);
  384. this.gbxCondition.TabIndex = 1;
  385. this.gbxCondition.TabStop = false;
  386. this.gbxCondition.Text = "查询条件 ▼";
  387. //
  388. // btnClearCondition
  389. //
  390. this.btnClearCondition.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  391. this.btnClearCondition.BackColor = System.Drawing.Color.Transparent;
  392. this.btnClearCondition.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnClearCondition.BackgroundImage")));
  393. this.btnClearCondition.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  394. this.btnClearCondition.ForeColor = System.Drawing.Color.White;
  395. this.btnClearCondition.Location = new System.Drawing.Point(998, 13);
  396. this.btnClearCondition.Name = "btnClearCondition";
  397. this.btnClearCondition.Size = new System.Drawing.Size(85, 30);
  398. this.btnClearCondition.TabIndex = 9;
  399. this.btnClearCondition.Text = "清空条件";
  400. this.btnClearCondition.UseVisualStyleBackColor = true;
  401. this.btnClearCondition.Click += new System.EventHandler(this.btnClearCondition_Click);
  402. //
  403. // btnSearch
  404. //
  405. this.btnSearch.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  406. this.btnSearch.BackColor = System.Drawing.Color.Transparent;
  407. this.btnSearch.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnSearch.BackgroundImage")));
  408. this.btnSearch.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  409. this.btnSearch.ForeColor = System.Drawing.Color.White;
  410. this.btnSearch.Location = new System.Drawing.Point(907, 13);
  411. this.btnSearch.Name = "btnSearch";
  412. this.btnSearch.Size = new System.Drawing.Size(85, 30);
  413. this.btnSearch.TabIndex = 8;
  414. this.btnSearch.Text = "查询";
  415. this.btnSearch.UseVisualStyleBackColor = true;
  416. this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
  417. //
  418. // lblTo
  419. //
  420. this.lblTo.AutoSize = true;
  421. this.lblTo.BackColor = System.Drawing.Color.Transparent;
  422. this.lblTo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  423. this.lblTo.ForeColor = System.Drawing.SystemColors.ControlText;
  424. this.lblTo.Location = new System.Drawing.Point(605, 22);
  425. this.lblTo.Name = "lblTo";
  426. this.lblTo.Size = new System.Drawing.Size(11, 12);
  427. this.lblTo.TabIndex = 6;
  428. this.lblTo.Text = "-";
  429. //
  430. // dtpEndTime
  431. //
  432. this.dtpEndTime.CustomFormat = "yyyy-MM-dd";
  433. this.dtpEndTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  434. this.dtpEndTime.Location = new System.Drawing.Point(622, 18);
  435. this.dtpEndTime.Name = "dtpEndTime";
  436. this.dtpEndTime.Size = new System.Drawing.Size(134, 21);
  437. this.dtpEndTime.TabIndex = 7;
  438. //
  439. // dtpStartTime
  440. //
  441. this.dtpStartTime.CustomFormat = "yyyy-MM-dd";
  442. this.dtpStartTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  443. this.dtpStartTime.Location = new System.Drawing.Point(465, 18);
  444. this.dtpStartTime.Name = "dtpStartTime";
  445. this.dtpStartTime.Size = new System.Drawing.Size(134, 21);
  446. this.dtpStartTime.TabIndex = 5;
  447. //
  448. // lblCreateTime
  449. //
  450. this.lblCreateTime.AutoSize = true;
  451. this.lblCreateTime.BackColor = System.Drawing.Color.Transparent;
  452. this.lblCreateTime.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  453. this.lblCreateTime.ForeColor = System.Drawing.SystemColors.ControlText;
  454. this.lblCreateTime.Location = new System.Drawing.Point(406, 22);
  455. this.lblCreateTime.Name = "lblCreateTime";
  456. this.lblCreateTime.Size = new System.Drawing.Size(53, 12);
  457. this.lblCreateTime.TabIndex = 4;
  458. this.lblCreateTime.Text = "创建时间";
  459. //
  460. // c_Label1
  461. //
  462. this.c_Label1.AutoSize = true;
  463. this.c_Label1.BackColor = System.Drawing.Color.Transparent;
  464. this.c_Label1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  465. this.c_Label1.ForeColor = System.Drawing.SystemColors.ControlText;
  466. this.c_Label1.Location = new System.Drawing.Point(207, 22);
  467. this.c_Label1.Name = "c_Label1";
  468. this.c_Label1.Size = new System.Drawing.Size(53, 12);
  469. this.c_Label1.TabIndex = 2;
  470. this.c_Label1.Text = "盘点名称";
  471. //
  472. // lblBarCode
  473. //
  474. this.lblBarCode.AutoSize = true;
  475. this.lblBarCode.BackColor = System.Drawing.Color.Transparent;
  476. this.lblBarCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  477. this.lblBarCode.ForeColor = System.Drawing.SystemColors.ControlText;
  478. this.lblBarCode.Location = new System.Drawing.Point(6, 22);
  479. this.lblBarCode.Name = "lblBarCode";
  480. this.lblBarCode.Size = new System.Drawing.Size(53, 12);
  481. this.lblBarCode.TabIndex = 0;
  482. this.lblBarCode.Text = "盘点单号";
  483. //
  484. // txtCheckedName
  485. //
  486. this.txtCheckedName.BackColor = System.Drawing.SystemColors.Window;
  487. this.txtCheckedName.BackgroundColor = System.Drawing.SystemColors.Window;
  488. this.txtCheckedName.ErrorMessage = "";
  489. this.txtCheckedName.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  490. this.txtCheckedName.Location = new System.Drawing.Point(266, 18);
  491. this.txtCheckedName.MaxLength = 20;
  492. this.txtCheckedName.Name = "txtCheckedName";
  493. this.txtCheckedName.Size = new System.Drawing.Size(134, 21);
  494. this.txtCheckedName.TabIndex = 3;
  495. //
  496. // txtInCheckedNo
  497. //
  498. this.txtInCheckedNo.BackColor = System.Drawing.SystemColors.Window;
  499. this.txtInCheckedNo.BackgroundColor = System.Drawing.SystemColors.Window;
  500. this.txtInCheckedNo.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
  501. this.txtInCheckedNo.ErrorMessage = "";
  502. this.txtInCheckedNo.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  503. this.txtInCheckedNo.Location = new System.Drawing.Point(65, 18);
  504. this.txtInCheckedNo.MaxLength = 20;
  505. this.txtInCheckedNo.Name = "txtInCheckedNo";
  506. this.txtInCheckedNo.Size = new System.Drawing.Size(134, 21);
  507. this.txtInCheckedNo.TabIndex = 1;
  508. //
  509. // splitContainer1
  510. //
  511. this.splitContainer1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  512. | System.Windows.Forms.AnchorStyles.Left)
  513. | System.Windows.Forms.AnchorStyles.Right)));
  514. this.splitContainer1.Location = new System.Drawing.Point(0, 92);
  515. this.splitContainer1.Name = "splitContainer1";
  516. this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
  517. //
  518. // splitContainer1.Panel1
  519. //
  520. this.splitContainer1.Panel1.Controls.Add(this.splitContainer2);
  521. //
  522. // splitContainer1.Panel2
  523. //
  524. this.splitContainer1.Panel2.Controls.Add(this.tabControl1);
  525. this.splitContainer1.Size = new System.Drawing.Size(1090, 344);
  526. this.splitContainer1.SplitterDistance = 128;
  527. this.splitContainer1.TabIndex = 37;
  528. //
  529. // splitContainer2
  530. //
  531. this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
  532. this.splitContainer2.Location = new System.Drawing.Point(0, 0);
  533. this.splitContainer2.Name = "splitContainer2";
  534. //
  535. // splitContainer2.Panel1
  536. //
  537. this.splitContainer2.Panel1.Controls.Add(this.dgvInChecked);
  538. //
  539. // splitContainer2.Panel2
  540. //
  541. this.splitContainer2.Panel2.Controls.Add(this.dgvFunctionUsers);
  542. this.splitContainer2.Size = new System.Drawing.Size(1090, 128);
  543. this.splitContainer2.SplitterDistance = 690;
  544. this.splitContainer2.TabIndex = 1;
  545. //
  546. // dgvInChecked
  547. //
  548. this.dgvInChecked.AllowUserToAddRows = false;
  549. this.dgvInChecked.AllowUserToDeleteRows = false;
  550. this.dgvInChecked.AllowUserToModifyRows = true;
  551. this.dgvInChecked.AllowUserToOrderColumns = true;
  552. this.dgvInChecked.AllowUserToResizeRows = false;
  553. dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
  554. this.dgvInChecked.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
  555. this.dgvInChecked.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  556. this.dgvInChecked.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
  557. this.dgvInChecked.CellHeight = 23;
  558. this.dgvInChecked.ChildNodeColumnName = null;
  559. this.dgvInChecked.ChildNodeColumnText = null;
  560. this.dgvInChecked.ColumnDeep = 1;
  561. this.dgvInChecked.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  562. dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  563. dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
  564. dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  565. dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White;
  566. dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  567. dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  568. dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  569. this.dgvInChecked.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
  570. this.dgvInChecked.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  571. this.dgvInChecked.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  572. this.GBCheckedID,
  573. this.GBCheckedNo,
  574. this.GBcheckname,
  575. this.CreateTime,
  576. this.CreateUserName,
  577. this.Remarks});
  578. this.dgvInChecked.ColumnTreeView = null;
  579. 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)));
  580. this.dgvInChecked.Dock = System.Windows.Forms.DockStyle.Fill;
  581. this.dgvInChecked.DynamicColumnName = "";
  582. this.dgvInChecked.EnableHeadersVisualStyles = false;
  583. this.dgvInChecked.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  584. this.dgvInChecked.FormatQuantityColumns = null;
  585. this.dgvInChecked.HorizontalMergeColumn = null;
  586. this.dgvInChecked.IsAutoCountSum = true;
  587. this.dgvInChecked.IsAutoResizeColumns = false;
  588. this.dgvInChecked.IsClickF12 = false;
  589. this.dgvInChecked.IsOpenMergeCellFlag = false;
  590. this.dgvInChecked.IsSubTotalFlag = false;
  591. this.dgvInChecked.IsTopDeep = false;
  592. this.dgvInChecked.Location = new System.Drawing.Point(0, 0);
  593. this.dgvInChecked.Margin = new System.Windows.Forms.Padding(0);
  594. this.dgvInChecked.MergeColumnNames = null;
  595. this.dgvInChecked.MergeDetailColumnNames = null;
  596. this.dgvInChecked.MergeDetailOnlyColumn = null;
  597. this.dgvInChecked.MergeOnlyColumn = null;
  598. this.dgvInChecked.MultiSelect = false;
  599. this.dgvInChecked.Name = "dgvInChecked";
  600. this.dgvInChecked.ReadOnly = true;
  601. this.dgvInChecked.RefreshAtHscroll = false;
  602. this.dgvInChecked.RowHeadersWidth = 50;
  603. this.dgvInChecked.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  604. dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  605. this.dgvInChecked.RowsDefaultCellStyle = dataGridViewCellStyle4;
  606. this.dgvInChecked.RowTemplate.Height = 21;
  607. this.dgvInChecked.Size = new System.Drawing.Size(690, 128);
  608. this.dgvInChecked.SortOrderColumnName = null;
  609. this.dgvInChecked.TabIndex = 0;
  610. this.dgvInChecked.Tag = true;
  611. this.dgvInChecked.TotalSumColumns = null;
  612. this.dgvInChecked.ViewRowFilter = "";
  613. this.dgvInChecked.CellMouseDoubleClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgvInChecked_CellMouseDoubleClick);
  614. this.dgvInChecked.SelectionChanged += new System.EventHandler(this.dgvInChecked_SelectionChanged);
  615. //
  616. // GBCheckedID
  617. //
  618. this.GBCheckedID.DataPropertyName = "GBCheckedID";
  619. this.GBCheckedID.HeaderText = "盘点单ID";
  620. this.GBCheckedID.Name = "GBCheckedID";
  621. this.GBCheckedID.ReadOnly = true;
  622. this.GBCheckedID.Visible = false;
  623. //
  624. // GBCheckedNo
  625. //
  626. this.GBCheckedNo.DataPropertyName = "GBCheckedNo";
  627. this.GBCheckedNo.HeaderText = "盘点单号";
  628. this.GBCheckedNo.Name = "GBCheckedNo";
  629. this.GBCheckedNo.ReadOnly = true;
  630. this.GBCheckedNo.Width = 200;
  631. //
  632. // GBcheckname
  633. //
  634. this.GBcheckname.DataPropertyName = "GBcheckname";
  635. this.GBcheckname.HeaderText = "盘点名称";
  636. this.GBcheckname.Name = "GBcheckname";
  637. this.GBcheckname.ReadOnly = true;
  638. //
  639. // CreateTime
  640. //
  641. this.CreateTime.DataPropertyName = "CreateTime";
  642. dataGridViewCellStyle3.Format = "yyyy-MM-dd HH:mm:ss";
  643. dataGridViewCellStyle3.NullValue = null;
  644. this.CreateTime.DefaultCellStyle = dataGridViewCellStyle3;
  645. this.CreateTime.HeaderText = "创建时间";
  646. this.CreateTime.Name = "CreateTime";
  647. this.CreateTime.ReadOnly = true;
  648. //
  649. // CreateUserName
  650. //
  651. this.CreateUserName.DataPropertyName = "CreateUserName";
  652. this.CreateUserName.HeaderText = "创建者";
  653. this.CreateUserName.Name = "CreateUserName";
  654. this.CreateUserName.ReadOnly = true;
  655. //
  656. // Remarks
  657. //
  658. this.Remarks.DataPropertyName = "Remarks";
  659. this.Remarks.HeaderText = "备注";
  660. this.Remarks.Name = "Remarks";
  661. this.Remarks.ReadOnly = true;
  662. this.Remarks.Width = 300;
  663. //
  664. // dgvFunctionUsers
  665. //
  666. this.dgvFunctionUsers.AllowUserToAddRows = false;
  667. this.dgvFunctionUsers.AllowUserToDeleteRows = false;
  668. this.dgvFunctionUsers.AllowUserToModifyRows = true;
  669. this.dgvFunctionUsers.AllowUserToResizeRows = false;
  670. dataGridViewCellStyle5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
  671. this.dgvFunctionUsers.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle5;
  672. this.dgvFunctionUsers.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  673. this.dgvFunctionUsers.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
  674. this.dgvFunctionUsers.CellHeight = 23;
  675. this.dgvFunctionUsers.ChildNodeColumnName = null;
  676. this.dgvFunctionUsers.ChildNodeColumnText = null;
  677. this.dgvFunctionUsers.ColumnDeep = 1;
  678. this.dgvFunctionUsers.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  679. dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  680. dataGridViewCellStyle6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
  681. dataGridViewCellStyle6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  682. dataGridViewCellStyle6.ForeColor = System.Drawing.Color.White;
  683. dataGridViewCellStyle6.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  684. dataGridViewCellStyle6.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  685. dataGridViewCellStyle6.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  686. this.dgvFunctionUsers.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle6;
  687. this.dgvFunctionUsers.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  688. this.dgvFunctionUsers.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  689. this.UserCode,
  690. this.UserName,
  691. this.UserID});
  692. this.dgvFunctionUsers.ColumnTreeView = null;
  693. this.dgvFunctionUsers.ContextMenuVisible = Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.None;
  694. dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  695. dataGridViewCellStyle7.BackColor = System.Drawing.SystemColors.Window;
  696. dataGridViewCellStyle7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  697. dataGridViewCellStyle7.ForeColor = System.Drawing.SystemColors.ControlText;
  698. dataGridViewCellStyle7.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  699. dataGridViewCellStyle7.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  700. dataGridViewCellStyle7.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  701. this.dgvFunctionUsers.DefaultCellStyle = dataGridViewCellStyle7;
  702. this.dgvFunctionUsers.Dock = System.Windows.Forms.DockStyle.Fill;
  703. this.dgvFunctionUsers.DynamicColumnName = "";
  704. this.dgvFunctionUsers.EnableHeadersVisualStyles = false;
  705. this.dgvFunctionUsers.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  706. this.dgvFunctionUsers.FormatQuantityColumns = null;
  707. this.dgvFunctionUsers.HorizontalMergeColumn = null;
  708. this.dgvFunctionUsers.IsAutoCountSum = true;
  709. this.dgvFunctionUsers.IsAutoResizeColumns = false;
  710. this.dgvFunctionUsers.IsClickF12 = false;
  711. this.dgvFunctionUsers.IsOpenMergeCellFlag = false;
  712. this.dgvFunctionUsers.IsSubTotalFlag = false;
  713. this.dgvFunctionUsers.IsTopDeep = false;
  714. this.dgvFunctionUsers.Location = new System.Drawing.Point(0, 0);
  715. this.dgvFunctionUsers.MergeColumnNames = null;
  716. this.dgvFunctionUsers.MergeDetailColumnNames = null;
  717. this.dgvFunctionUsers.MergeDetailOnlyColumn = null;
  718. this.dgvFunctionUsers.MergeOnlyColumn = null;
  719. this.dgvFunctionUsers.MultiSelect = false;
  720. this.dgvFunctionUsers.Name = "dgvFunctionUsers";
  721. this.dgvFunctionUsers.RefreshAtHscroll = false;
  722. dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  723. dataGridViewCellStyle8.BackColor = System.Drawing.SystemColors.Control;
  724. dataGridViewCellStyle8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  725. dataGridViewCellStyle8.ForeColor = System.Drawing.SystemColors.WindowText;
  726. dataGridViewCellStyle8.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  727. dataGridViewCellStyle8.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  728. dataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  729. this.dgvFunctionUsers.RowHeadersDefaultCellStyle = dataGridViewCellStyle8;
  730. this.dgvFunctionUsers.RowHeadersWidth = 50;
  731. this.dgvFunctionUsers.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  732. dataGridViewCellStyle9.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  733. this.dgvFunctionUsers.RowsDefaultCellStyle = dataGridViewCellStyle9;
  734. this.dgvFunctionUsers.RowTemplate.Height = 21;
  735. this.dgvFunctionUsers.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  736. this.dgvFunctionUsers.Size = new System.Drawing.Size(396, 128);
  737. this.dgvFunctionUsers.SortOrderColumnName = null;
  738. this.dgvFunctionUsers.TabIndex = 0;
  739. this.dgvFunctionUsers.Tag = true;
  740. this.dgvFunctionUsers.TotalSumColumns = null;
  741. this.dgvFunctionUsers.ViewRowFilter = "";
  742. //
  743. // UserCode
  744. //
  745. this.UserCode.DataPropertyName = "UserCode";
  746. this.UserCode.HeaderText = "用户编码";
  747. this.UserCode.Name = "UserCode";
  748. this.UserCode.ReadOnly = true;
  749. this.UserCode.Width = 80;
  750. //
  751. // UserName
  752. //
  753. this.UserName.DataPropertyName = "UserName";
  754. this.UserName.HeaderText = "用户名称";
  755. this.UserName.Name = "UserName";
  756. this.UserName.ReadOnly = true;
  757. this.UserName.Width = 80;
  758. //
  759. // UserID
  760. //
  761. this.UserID.DataPropertyName = "UserID";
  762. this.UserID.HeaderText = "UserID";
  763. this.UserID.Name = "UserID";
  764. this.UserID.Visible = false;
  765. //
  766. // tabControl1
  767. //
  768. this.tabControl1.Controls.Add(this.tabPage1);
  769. this.tabControl1.Controls.Add(this.tabPage2);
  770. this.tabControl1.Controls.Add(this.tabPage3);
  771. this.tabControl1.Controls.Add(this.tabPage4);
  772. this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
  773. this.tabControl1.Location = new System.Drawing.Point(0, 0);
  774. this.tabControl1.Name = "tabControl1";
  775. this.tabControl1.SelectedIndex = 0;
  776. this.tabControl1.Size = new System.Drawing.Size(1090, 212);
  777. this.tabControl1.TabIndex = 0;
  778. //
  779. // tabPage1
  780. //
  781. this.tabPage1.Controls.Add(this.dgvInCheckedNoDetail);
  782. this.tabPage1.Location = new System.Drawing.Point(4, 22);
  783. this.tabPage1.Name = "tabPage1";
  784. this.tabPage1.Size = new System.Drawing.Size(1082, 186);
  785. this.tabPage1.TabIndex = 0;
  786. this.tabPage1.Text = "未盘点";
  787. this.tabPage1.UseVisualStyleBackColor = true;
  788. //
  789. // dgvInCheckedNoDetail
  790. //
  791. this.dgvInCheckedNoDetail.AllowUserToAddRows = false;
  792. this.dgvInCheckedNoDetail.AllowUserToDeleteRows = false;
  793. this.dgvInCheckedNoDetail.AllowUserToModifyRows = true;
  794. this.dgvInCheckedNoDetail.AllowUserToOrderColumns = true;
  795. dataGridViewCellStyle10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
  796. this.dgvInCheckedNoDetail.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle10;
  797. this.dgvInCheckedNoDetail.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  798. this.dgvInCheckedNoDetail.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
  799. this.dgvInCheckedNoDetail.CellHeight = 23;
  800. this.dgvInCheckedNoDetail.ChildNodeColumnName = null;
  801. this.dgvInCheckedNoDetail.ChildNodeColumnText = null;
  802. this.dgvInCheckedNoDetail.ColumnDeep = 1;
  803. this.dgvInCheckedNoDetail.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  804. dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  805. dataGridViewCellStyle11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
  806. dataGridViewCellStyle11.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  807. dataGridViewCellStyle11.ForeColor = System.Drawing.Color.White;
  808. dataGridViewCellStyle11.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  809. dataGridViewCellStyle11.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  810. dataGridViewCellStyle11.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  811. this.dgvInCheckedNoDetail.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle11;
  812. this.dgvInCheckedNoDetail.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  813. this.dgvInCheckedNoDetail.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  814. this.Sel,
  815. this.BarCode,
  816. this.GroutingLineCode,
  817. this.GroutingLineName,
  818. this.GroutingMouldCode,
  819. this.GroutingDate,
  820. this.GroutingUserCode,
  821. this.GroutingBatchNo,
  822. this.GroutingCount,
  823. this.GoodsCode,
  824. this.GoodsName,
  825. this.g1Remarks,
  826. this.g1procedurename,
  827. this.g1PROCEDURETIME});
  828. this.dgvInCheckedNoDetail.ColumnTreeView = null;
  829. 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)));
  830. this.dgvInCheckedNoDetail.Dock = System.Windows.Forms.DockStyle.Fill;
  831. this.dgvInCheckedNoDetail.DynamicColumnName = "";
  832. this.dgvInCheckedNoDetail.EnableHeadersVisualStyles = false;
  833. this.dgvInCheckedNoDetail.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  834. this.dgvInCheckedNoDetail.FormatQuantityColumns = null;
  835. this.dgvInCheckedNoDetail.HorizontalMergeColumn = null;
  836. this.dgvInCheckedNoDetail.IsAutoCountSum = true;
  837. this.dgvInCheckedNoDetail.IsAutoResizeColumns = false;
  838. this.dgvInCheckedNoDetail.IsClickF12 = false;
  839. this.dgvInCheckedNoDetail.IsOpenMergeCellFlag = false;
  840. this.dgvInCheckedNoDetail.IsSubTotalFlag = false;
  841. this.dgvInCheckedNoDetail.IsTopDeep = false;
  842. this.dgvInCheckedNoDetail.Location = new System.Drawing.Point(0, 0);
  843. this.dgvInCheckedNoDetail.Margin = new System.Windows.Forms.Padding(0);
  844. this.dgvInCheckedNoDetail.MergeColumnNames = null;
  845. this.dgvInCheckedNoDetail.MergeDetailColumnNames = null;
  846. this.dgvInCheckedNoDetail.MergeDetailOnlyColumn = null;
  847. this.dgvInCheckedNoDetail.MergeOnlyColumn = null;
  848. this.dgvInCheckedNoDetail.MultiSelect = false;
  849. this.dgvInCheckedNoDetail.Name = "dgvInCheckedNoDetail";
  850. this.dgvInCheckedNoDetail.RefreshAtHscroll = false;
  851. this.dgvInCheckedNoDetail.RowHeadersWidth = 50;
  852. this.dgvInCheckedNoDetail.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  853. dataGridViewCellStyle16.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  854. this.dgvInCheckedNoDetail.RowsDefaultCellStyle = dataGridViewCellStyle16;
  855. this.dgvInCheckedNoDetail.RowTemplate.Height = 25;
  856. this.dgvInCheckedNoDetail.Size = new System.Drawing.Size(1082, 186);
  857. this.dgvInCheckedNoDetail.SortOrderColumnName = null;
  858. this.dgvInCheckedNoDetail.TabIndex = 0;
  859. this.dgvInCheckedNoDetail.Tag = true;
  860. this.dgvInCheckedNoDetail.TotalSumColumns = null;
  861. this.dgvInCheckedNoDetail.ViewRowFilter = "";
  862. this.dgvInCheckedNoDetail.CurrentCellDirtyStateChanged += new System.EventHandler(this.dgvInCheckedNoDetail_CurrentCellDirtyStateChanged);
  863. this.dgvInCheckedNoDetail.Sorted += new System.EventHandler(this.dgvInCheckedNoDetail_Sorted);
  864. //
  865. // Sel
  866. //
  867. this.Sel.DataPropertyName = "Sel";
  868. this.Sel.FalseValue = "0";
  869. this.Sel.HeaderText = "选择";
  870. this.Sel.Name = "Sel";
  871. this.Sel.TrueValue = "1";
  872. //
  873. // BarCode
  874. //
  875. this.BarCode.DataPropertyName = "BarCode";
  876. this.BarCode.HeaderText = "产品条码";
  877. this.BarCode.Name = "BarCode";
  878. this.BarCode.ReadOnly = true;
  879. //
  880. // GroutingLineCode
  881. //
  882. this.GroutingLineCode.DataPropertyName = "GroutingLineCode";
  883. this.GroutingLineCode.HeaderText = "成型线编码";
  884. this.GroutingLineCode.Name = "GroutingLineCode";
  885. this.GroutingLineCode.ReadOnly = true;
  886. //
  887. // GroutingLineName
  888. //
  889. this.GroutingLineName.DataPropertyName = "GroutingLineName";
  890. this.GroutingLineName.HeaderText = "成型线名称";
  891. this.GroutingLineName.Name = "GroutingLineName";
  892. this.GroutingLineName.ReadOnly = true;
  893. //
  894. // GroutingMouldCode
  895. //
  896. this.GroutingMouldCode.DataPropertyName = "GroutingMouldCode";
  897. this.GroutingMouldCode.HeaderText = "模具编号";
  898. this.GroutingMouldCode.Name = "GroutingMouldCode";
  899. this.GroutingMouldCode.ReadOnly = true;
  900. //
  901. // GroutingDate
  902. //
  903. this.GroutingDate.DataPropertyName = "GroutingDate";
  904. dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  905. dataGridViewCellStyle12.Format = "yyyy-MM-dd";
  906. dataGridViewCellStyle12.NullValue = null;
  907. this.GroutingDate.DefaultCellStyle = dataGridViewCellStyle12;
  908. this.GroutingDate.HeaderText = "注浆日期";
  909. this.GroutingDate.Name = "GroutingDate";
  910. this.GroutingDate.ReadOnly = true;
  911. //
  912. // GroutingUserCode
  913. //
  914. this.GroutingUserCode.DataPropertyName = "UserCode";
  915. this.GroutingUserCode.HeaderText = "成型工号";
  916. this.GroutingUserCode.Name = "GroutingUserCode";
  917. this.GroutingUserCode.ReadOnly = true;
  918. //
  919. // GroutingBatchNo
  920. //
  921. this.GroutingBatchNo.DataPropertyName = "GroutingBatchNo";
  922. dataGridViewCellStyle13.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  923. this.GroutingBatchNo.DefaultCellStyle = dataGridViewCellStyle13;
  924. this.GroutingBatchNo.HeaderText = "注浆批次";
  925. this.GroutingBatchNo.Name = "GroutingBatchNo";
  926. this.GroutingBatchNo.ReadOnly = true;
  927. //
  928. // GroutingCount
  929. //
  930. this.GroutingCount.DataPropertyName = "GroutingCount";
  931. dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  932. this.GroutingCount.DefaultCellStyle = dataGridViewCellStyle14;
  933. this.GroutingCount.HeaderText = "注浆次数";
  934. this.GroutingCount.Name = "GroutingCount";
  935. this.GroutingCount.ReadOnly = true;
  936. //
  937. // GoodsCode
  938. //
  939. this.GoodsCode.DataPropertyName = "GoodsCode";
  940. this.GoodsCode.HeaderText = "产品编码";
  941. this.GoodsCode.Name = "GoodsCode";
  942. this.GoodsCode.ReadOnly = true;
  943. //
  944. // GoodsName
  945. //
  946. this.GoodsName.DataPropertyName = "GoodsName";
  947. this.GoodsName.HeaderText = "产品名称";
  948. this.GoodsName.Name = "GoodsName";
  949. this.GoodsName.ReadOnly = true;
  950. //
  951. // g1Remarks
  952. //
  953. this.g1Remarks.DataPropertyName = "Remarks";
  954. this.g1Remarks.HeaderText = "注浆备注";
  955. this.g1Remarks.Name = "g1Remarks";
  956. this.g1Remarks.ReadOnly = true;
  957. //
  958. // g1procedurename
  959. //
  960. this.g1procedurename.DataPropertyName = "procedurename";
  961. this.g1procedurename.HeaderText = "当前工序";
  962. this.g1procedurename.Name = "g1procedurename";
  963. this.g1procedurename.ReadOnly = true;
  964. //
  965. // g1PROCEDURETIME
  966. //
  967. this.g1PROCEDURETIME.DataPropertyName = "PROCEDURETIME";
  968. dataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  969. dataGridViewCellStyle15.Format = "yyyy-MM-dd HH:mm:ss";
  970. this.g1PROCEDURETIME.DefaultCellStyle = dataGridViewCellStyle15;
  971. this.g1PROCEDURETIME.HeaderText = "完成时间";
  972. this.g1PROCEDURETIME.Name = "g1PROCEDURETIME";
  973. this.g1PROCEDURETIME.ReadOnly = true;
  974. //
  975. // tabPage2
  976. //
  977. this.tabPage2.Controls.Add(this.dgvInCheckededDetail);
  978. this.tabPage2.Location = new System.Drawing.Point(4, 22);
  979. this.tabPage2.Name = "tabPage2";
  980. this.tabPage2.Size = new System.Drawing.Size(1082, 186);
  981. this.tabPage2.TabIndex = 1;
  982. this.tabPage2.Text = "己盘点";
  983. this.tabPage2.UseVisualStyleBackColor = true;
  984. //
  985. // dgvInCheckededDetail
  986. //
  987. this.dgvInCheckededDetail.AllowUserToAddRows = false;
  988. this.dgvInCheckededDetail.AllowUserToDeleteRows = false;
  989. this.dgvInCheckededDetail.AllowUserToModifyRows = true;
  990. this.dgvInCheckededDetail.AllowUserToOrderColumns = true;
  991. dataGridViewCellStyle17.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
  992. this.dgvInCheckededDetail.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle17;
  993. this.dgvInCheckededDetail.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  994. this.dgvInCheckededDetail.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
  995. this.dgvInCheckededDetail.CellHeight = 23;
  996. this.dgvInCheckededDetail.ChildNodeColumnName = null;
  997. this.dgvInCheckededDetail.ChildNodeColumnText = null;
  998. this.dgvInCheckededDetail.ColumnDeep = 1;
  999. this.dgvInCheckededDetail.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1000. dataGridViewCellStyle18.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1001. dataGridViewCellStyle18.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
  1002. dataGridViewCellStyle18.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1003. dataGridViewCellStyle18.ForeColor = System.Drawing.Color.White;
  1004. dataGridViewCellStyle18.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1005. dataGridViewCellStyle18.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1006. dataGridViewCellStyle18.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1007. this.dgvInCheckededDetail.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle18;
  1008. this.dgvInCheckededDetail.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  1009. this.dgvInCheckededDetail.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  1010. this.CheckedDate,
  1011. this.CheckedUserCode,
  1012. this.dataGridViewTextBoxColumn1,
  1013. this.dataGridViewTextBoxColumn2,
  1014. this.dataGridViewTextBoxColumn3,
  1015. this.dataGridViewTextBoxColumn4,
  1016. this.dataGridViewTextBoxColumn5,
  1017. this.dataGridViewTextBoxColumn6,
  1018. this.dataGridViewTextBoxColumn7,
  1019. this.dataGridViewTextBoxColumn8,
  1020. this.dataGridViewTextBoxColumn9,
  1021. this.dataGridViewTextBoxColumn10,
  1022. this.dataGridViewTextBoxColumn11,
  1023. this.g2procedurename,
  1024. this.g2PROCEDURETIME});
  1025. this.dgvInCheckededDetail.ColumnTreeView = null;
  1026. 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)));
  1027. this.dgvInCheckededDetail.Dock = System.Windows.Forms.DockStyle.Fill;
  1028. this.dgvInCheckededDetail.DynamicColumnName = "";
  1029. this.dgvInCheckededDetail.EnableHeadersVisualStyles = false;
  1030. this.dgvInCheckededDetail.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1031. this.dgvInCheckededDetail.FormatQuantityColumns = null;
  1032. this.dgvInCheckededDetail.HorizontalMergeColumn = null;
  1033. this.dgvInCheckededDetail.IsAutoCountSum = true;
  1034. this.dgvInCheckededDetail.IsAutoResizeColumns = false;
  1035. this.dgvInCheckededDetail.IsClickF12 = false;
  1036. this.dgvInCheckededDetail.IsOpenMergeCellFlag = false;
  1037. this.dgvInCheckededDetail.IsSubTotalFlag = false;
  1038. this.dgvInCheckededDetail.IsTopDeep = false;
  1039. this.dgvInCheckededDetail.Location = new System.Drawing.Point(0, 0);
  1040. this.dgvInCheckededDetail.Margin = new System.Windows.Forms.Padding(0);
  1041. this.dgvInCheckededDetail.MergeColumnNames = null;
  1042. this.dgvInCheckededDetail.MergeDetailColumnNames = null;
  1043. this.dgvInCheckededDetail.MergeDetailOnlyColumn = null;
  1044. this.dgvInCheckededDetail.MergeOnlyColumn = null;
  1045. this.dgvInCheckededDetail.MultiSelect = false;
  1046. this.dgvInCheckededDetail.Name = "dgvInCheckededDetail";
  1047. this.dgvInCheckededDetail.ReadOnly = true;
  1048. this.dgvInCheckededDetail.RefreshAtHscroll = false;
  1049. this.dgvInCheckededDetail.RowHeadersWidth = 50;
  1050. this.dgvInCheckededDetail.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  1051. dataGridViewCellStyle24.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  1052. this.dgvInCheckededDetail.RowsDefaultCellStyle = dataGridViewCellStyle24;
  1053. this.dgvInCheckededDetail.RowTemplate.Height = 25;
  1054. this.dgvInCheckededDetail.Size = new System.Drawing.Size(1082, 186);
  1055. this.dgvInCheckededDetail.SortOrderColumnName = null;
  1056. this.dgvInCheckededDetail.TabIndex = 1;
  1057. this.dgvInCheckededDetail.Tag = true;
  1058. this.dgvInCheckededDetail.TotalSumColumns = null;
  1059. this.dgvInCheckededDetail.ViewRowFilter = "";
  1060. //
  1061. // CheckedDate
  1062. //
  1063. this.CheckedDate.DataPropertyName = "CheckedDate";
  1064. dataGridViewCellStyle19.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1065. dataGridViewCellStyle19.Format = "yyyy-MM-dd HH:mm:ss";
  1066. this.CheckedDate.DefaultCellStyle = dataGridViewCellStyle19;
  1067. this.CheckedDate.HeaderText = "盘点时间";
  1068. this.CheckedDate.Name = "CheckedDate";
  1069. this.CheckedDate.ReadOnly = true;
  1070. //
  1071. // CheckedUserCode
  1072. //
  1073. this.CheckedUserCode.DataPropertyName = "CheckedUserCode";
  1074. this.CheckedUserCode.HeaderText = "盘点工号";
  1075. this.CheckedUserCode.Name = "CheckedUserCode";
  1076. this.CheckedUserCode.ReadOnly = true;
  1077. //
  1078. // dataGridViewTextBoxColumn1
  1079. //
  1080. this.dataGridViewTextBoxColumn1.DataPropertyName = "BarCode";
  1081. this.dataGridViewTextBoxColumn1.HeaderText = "产品条码";
  1082. this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
  1083. this.dataGridViewTextBoxColumn1.ReadOnly = true;
  1084. //
  1085. // dataGridViewTextBoxColumn2
  1086. //
  1087. this.dataGridViewTextBoxColumn2.DataPropertyName = "GroutingLineCode";
  1088. this.dataGridViewTextBoxColumn2.HeaderText = "成型线编码";
  1089. this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
  1090. this.dataGridViewTextBoxColumn2.ReadOnly = true;
  1091. //
  1092. // dataGridViewTextBoxColumn3
  1093. //
  1094. this.dataGridViewTextBoxColumn3.DataPropertyName = "GroutingLineName";
  1095. this.dataGridViewTextBoxColumn3.HeaderText = "成型线名称";
  1096. this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
  1097. this.dataGridViewTextBoxColumn3.ReadOnly = true;
  1098. //
  1099. // dataGridViewTextBoxColumn4
  1100. //
  1101. this.dataGridViewTextBoxColumn4.DataPropertyName = "GroutingMouldCode";
  1102. this.dataGridViewTextBoxColumn4.HeaderText = "模具编号";
  1103. this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
  1104. this.dataGridViewTextBoxColumn4.ReadOnly = true;
  1105. //
  1106. // dataGridViewTextBoxColumn5
  1107. //
  1108. this.dataGridViewTextBoxColumn5.DataPropertyName = "GroutingDate";
  1109. dataGridViewCellStyle20.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1110. dataGridViewCellStyle20.Format = "yyyy-MM-dd";
  1111. dataGridViewCellStyle20.NullValue = null;
  1112. this.dataGridViewTextBoxColumn5.DefaultCellStyle = dataGridViewCellStyle20;
  1113. this.dataGridViewTextBoxColumn5.HeaderText = "注浆日期";
  1114. this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
  1115. this.dataGridViewTextBoxColumn5.ReadOnly = true;
  1116. //
  1117. // dataGridViewTextBoxColumn6
  1118. //
  1119. this.dataGridViewTextBoxColumn6.DataPropertyName = "UserCode";
  1120. this.dataGridViewTextBoxColumn6.HeaderText = "成型工号";
  1121. this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
  1122. this.dataGridViewTextBoxColumn6.ReadOnly = true;
  1123. //
  1124. // dataGridViewTextBoxColumn7
  1125. //
  1126. this.dataGridViewTextBoxColumn7.DataPropertyName = "GroutingBatchNo";
  1127. dataGridViewCellStyle21.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1128. this.dataGridViewTextBoxColumn7.DefaultCellStyle = dataGridViewCellStyle21;
  1129. this.dataGridViewTextBoxColumn7.HeaderText = "注浆批次";
  1130. this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
  1131. this.dataGridViewTextBoxColumn7.ReadOnly = true;
  1132. //
  1133. // dataGridViewTextBoxColumn8
  1134. //
  1135. this.dataGridViewTextBoxColumn8.DataPropertyName = "GroutingCount";
  1136. dataGridViewCellStyle22.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1137. this.dataGridViewTextBoxColumn8.DefaultCellStyle = dataGridViewCellStyle22;
  1138. this.dataGridViewTextBoxColumn8.HeaderText = "注浆次数";
  1139. this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
  1140. this.dataGridViewTextBoxColumn8.ReadOnly = true;
  1141. //
  1142. // dataGridViewTextBoxColumn9
  1143. //
  1144. this.dataGridViewTextBoxColumn9.DataPropertyName = "GoodsCode";
  1145. this.dataGridViewTextBoxColumn9.HeaderText = "产品编码";
  1146. this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9";
  1147. this.dataGridViewTextBoxColumn9.ReadOnly = true;
  1148. //
  1149. // dataGridViewTextBoxColumn10
  1150. //
  1151. this.dataGridViewTextBoxColumn10.DataPropertyName = "GoodsName";
  1152. this.dataGridViewTextBoxColumn10.HeaderText = "产品名称";
  1153. this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10";
  1154. this.dataGridViewTextBoxColumn10.ReadOnly = true;
  1155. //
  1156. // dataGridViewTextBoxColumn11
  1157. //
  1158. this.dataGridViewTextBoxColumn11.DataPropertyName = "Remarks";
  1159. this.dataGridViewTextBoxColumn11.HeaderText = "注浆备注";
  1160. this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
  1161. this.dataGridViewTextBoxColumn11.ReadOnly = true;
  1162. //
  1163. // g2procedurename
  1164. //
  1165. this.g2procedurename.DataPropertyName = "procedurename";
  1166. this.g2procedurename.HeaderText = "当前工序";
  1167. this.g2procedurename.Name = "g2procedurename";
  1168. this.g2procedurename.ReadOnly = true;
  1169. //
  1170. // g2PROCEDURETIME
  1171. //
  1172. this.g2PROCEDURETIME.DataPropertyName = "PROCEDURETIME";
  1173. dataGridViewCellStyle23.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1174. dataGridViewCellStyle23.Format = "yyyy-MM-dd HH:mm:ss";
  1175. this.g2PROCEDURETIME.DefaultCellStyle = dataGridViewCellStyle23;
  1176. this.g2PROCEDURETIME.HeaderText = "完成时间";
  1177. this.g2PROCEDURETIME.Name = "g2PROCEDURETIME";
  1178. this.g2PROCEDURETIME.ReadOnly = true;
  1179. //
  1180. // tabPage3
  1181. //
  1182. this.tabPage3.Controls.Add(this.dgvInCheckedWinDetail);
  1183. this.tabPage3.Location = new System.Drawing.Point(4, 22);
  1184. this.tabPage3.Name = "tabPage3";
  1185. this.tabPage3.Size = new System.Drawing.Size(1082, 186);
  1186. this.tabPage3.TabIndex = 2;
  1187. this.tabPage3.Text = "盘盈";
  1188. this.tabPage3.UseVisualStyleBackColor = true;
  1189. //
  1190. // dgvInCheckedWinDetail
  1191. //
  1192. this.dgvInCheckedWinDetail.AllowUserToAddRows = false;
  1193. this.dgvInCheckedWinDetail.AllowUserToDeleteRows = false;
  1194. this.dgvInCheckedWinDetail.AllowUserToModifyRows = true;
  1195. this.dgvInCheckedWinDetail.AllowUserToOrderColumns = true;
  1196. dataGridViewCellStyle25.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
  1197. this.dgvInCheckedWinDetail.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle25;
  1198. this.dgvInCheckedWinDetail.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1199. this.dgvInCheckedWinDetail.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
  1200. this.dgvInCheckedWinDetail.CellHeight = 23;
  1201. this.dgvInCheckedWinDetail.ChildNodeColumnName = null;
  1202. this.dgvInCheckedWinDetail.ChildNodeColumnText = null;
  1203. this.dgvInCheckedWinDetail.ColumnDeep = 1;
  1204. this.dgvInCheckedWinDetail.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1205. dataGridViewCellStyle26.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1206. dataGridViewCellStyle26.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
  1207. dataGridViewCellStyle26.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1208. dataGridViewCellStyle26.ForeColor = System.Drawing.Color.White;
  1209. dataGridViewCellStyle26.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1210. dataGridViewCellStyle26.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1211. dataGridViewCellStyle26.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1212. this.dgvInCheckedWinDetail.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle26;
  1213. this.dgvInCheckedWinDetail.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  1214. this.dgvInCheckedWinDetail.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  1215. this.g3CheckedDate,
  1216. this.g3CheckedUserCode,
  1217. this.dataGridViewTextBoxColumn12,
  1218. this.dataGridViewTextBoxColumn13,
  1219. this.dataGridViewTextBoxColumn14,
  1220. this.dataGridViewTextBoxColumn15,
  1221. this.dataGridViewTextBoxColumn16,
  1222. this.dataGridViewTextBoxColumn17,
  1223. this.dataGridViewTextBoxColumn18,
  1224. this.dataGridViewTextBoxColumn19,
  1225. this.dataGridViewTextBoxColumn20,
  1226. this.dataGridViewTextBoxColumn21,
  1227. this.dataGridViewTextBoxColumn22,
  1228. this.dataGridViewCheckBoxColumn2,
  1229. this.dataGridViewTextBoxColumn23,
  1230. this.dataGridViewTextBoxColumn24,
  1231. this.dataGridViewCheckBoxColumn3,
  1232. this.dataGridViewCheckBoxColumn4,
  1233. this.dataGridViewTextBoxColumn25,
  1234. this.dataGridViewTextBoxColumn26,
  1235. this.g3procedurename,
  1236. this.g3PROCEDURETIME});
  1237. this.dgvInCheckedWinDetail.ColumnTreeView = null;
  1238. 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)));
  1239. this.dgvInCheckedWinDetail.Dock = System.Windows.Forms.DockStyle.Fill;
  1240. this.dgvInCheckedWinDetail.DynamicColumnName = "";
  1241. this.dgvInCheckedWinDetail.EnableHeadersVisualStyles = false;
  1242. this.dgvInCheckedWinDetail.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1243. this.dgvInCheckedWinDetail.FormatQuantityColumns = null;
  1244. this.dgvInCheckedWinDetail.HorizontalMergeColumn = null;
  1245. this.dgvInCheckedWinDetail.IsAutoCountSum = true;
  1246. this.dgvInCheckedWinDetail.IsAutoResizeColumns = false;
  1247. this.dgvInCheckedWinDetail.IsClickF12 = false;
  1248. this.dgvInCheckedWinDetail.IsOpenMergeCellFlag = false;
  1249. this.dgvInCheckedWinDetail.IsSubTotalFlag = false;
  1250. this.dgvInCheckedWinDetail.IsTopDeep = false;
  1251. this.dgvInCheckedWinDetail.Location = new System.Drawing.Point(0, 0);
  1252. this.dgvInCheckedWinDetail.Margin = new System.Windows.Forms.Padding(0);
  1253. this.dgvInCheckedWinDetail.MergeColumnNames = null;
  1254. this.dgvInCheckedWinDetail.MergeDetailColumnNames = null;
  1255. this.dgvInCheckedWinDetail.MergeDetailOnlyColumn = null;
  1256. this.dgvInCheckedWinDetail.MergeOnlyColumn = null;
  1257. this.dgvInCheckedWinDetail.MultiSelect = false;
  1258. this.dgvInCheckedWinDetail.Name = "dgvInCheckedWinDetail";
  1259. this.dgvInCheckedWinDetail.ReadOnly = true;
  1260. this.dgvInCheckedWinDetail.RefreshAtHscroll = false;
  1261. this.dgvInCheckedWinDetail.RowHeadersWidth = 50;
  1262. this.dgvInCheckedWinDetail.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  1263. dataGridViewCellStyle34.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  1264. this.dgvInCheckedWinDetail.RowsDefaultCellStyle = dataGridViewCellStyle34;
  1265. this.dgvInCheckedWinDetail.RowTemplate.Height = 25;
  1266. this.dgvInCheckedWinDetail.Size = new System.Drawing.Size(1082, 186);
  1267. this.dgvInCheckedWinDetail.SortOrderColumnName = null;
  1268. this.dgvInCheckedWinDetail.TabIndex = 1;
  1269. this.dgvInCheckedWinDetail.Tag = true;
  1270. this.dgvInCheckedWinDetail.TotalSumColumns = null;
  1271. this.dgvInCheckedWinDetail.ViewRowFilter = "";
  1272. //
  1273. // g3CheckedDate
  1274. //
  1275. this.g3CheckedDate.DataPropertyName = "CheckedDate";
  1276. dataGridViewCellStyle27.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1277. dataGridViewCellStyle27.Format = "yyyy-MM-dd HH:mm:ss";
  1278. this.g3CheckedDate.DefaultCellStyle = dataGridViewCellStyle27;
  1279. this.g3CheckedDate.HeaderText = "盘点时间";
  1280. this.g3CheckedDate.Name = "g3CheckedDate";
  1281. this.g3CheckedDate.ReadOnly = true;
  1282. //
  1283. // g3CheckedUserCode
  1284. //
  1285. this.g3CheckedUserCode.DataPropertyName = "CheckedUserCode";
  1286. this.g3CheckedUserCode.HeaderText = "盘点工号";
  1287. this.g3CheckedUserCode.Name = "g3CheckedUserCode";
  1288. this.g3CheckedUserCode.ReadOnly = true;
  1289. //
  1290. // dataGridViewTextBoxColumn12
  1291. //
  1292. this.dataGridViewTextBoxColumn12.DataPropertyName = "BarCode";
  1293. this.dataGridViewTextBoxColumn12.HeaderText = "产品条码";
  1294. this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
  1295. this.dataGridViewTextBoxColumn12.ReadOnly = true;
  1296. //
  1297. // dataGridViewTextBoxColumn13
  1298. //
  1299. this.dataGridViewTextBoxColumn13.DataPropertyName = "GroutingLineCode";
  1300. this.dataGridViewTextBoxColumn13.HeaderText = "成型线编码";
  1301. this.dataGridViewTextBoxColumn13.Name = "dataGridViewTextBoxColumn13";
  1302. this.dataGridViewTextBoxColumn13.ReadOnly = true;
  1303. //
  1304. // dataGridViewTextBoxColumn14
  1305. //
  1306. this.dataGridViewTextBoxColumn14.DataPropertyName = "GroutingLineName";
  1307. this.dataGridViewTextBoxColumn14.HeaderText = "成型线名称";
  1308. this.dataGridViewTextBoxColumn14.Name = "dataGridViewTextBoxColumn14";
  1309. this.dataGridViewTextBoxColumn14.ReadOnly = true;
  1310. //
  1311. // dataGridViewTextBoxColumn15
  1312. //
  1313. this.dataGridViewTextBoxColumn15.DataPropertyName = "GroutingMouldCode";
  1314. this.dataGridViewTextBoxColumn15.HeaderText = "模具编号";
  1315. this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
  1316. this.dataGridViewTextBoxColumn15.ReadOnly = true;
  1317. //
  1318. // dataGridViewTextBoxColumn16
  1319. //
  1320. this.dataGridViewTextBoxColumn16.DataPropertyName = "GroutingDate";
  1321. dataGridViewCellStyle28.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1322. dataGridViewCellStyle28.Format = "yyyy-MM-dd";
  1323. dataGridViewCellStyle28.NullValue = null;
  1324. this.dataGridViewTextBoxColumn16.DefaultCellStyle = dataGridViewCellStyle28;
  1325. this.dataGridViewTextBoxColumn16.HeaderText = "注浆日期";
  1326. this.dataGridViewTextBoxColumn16.Name = "dataGridViewTextBoxColumn16";
  1327. this.dataGridViewTextBoxColumn16.ReadOnly = true;
  1328. //
  1329. // dataGridViewTextBoxColumn17
  1330. //
  1331. this.dataGridViewTextBoxColumn17.DataPropertyName = "UserCode";
  1332. this.dataGridViewTextBoxColumn17.HeaderText = "成型工号";
  1333. this.dataGridViewTextBoxColumn17.Name = "dataGridViewTextBoxColumn17";
  1334. this.dataGridViewTextBoxColumn17.ReadOnly = true;
  1335. //
  1336. // dataGridViewTextBoxColumn18
  1337. //
  1338. this.dataGridViewTextBoxColumn18.DataPropertyName = "GroutingBatchNo";
  1339. dataGridViewCellStyle29.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1340. this.dataGridViewTextBoxColumn18.DefaultCellStyle = dataGridViewCellStyle29;
  1341. this.dataGridViewTextBoxColumn18.HeaderText = "注浆批次";
  1342. this.dataGridViewTextBoxColumn18.Name = "dataGridViewTextBoxColumn18";
  1343. this.dataGridViewTextBoxColumn18.ReadOnly = true;
  1344. //
  1345. // dataGridViewTextBoxColumn19
  1346. //
  1347. this.dataGridViewTextBoxColumn19.DataPropertyName = "GroutingCount";
  1348. dataGridViewCellStyle30.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1349. this.dataGridViewTextBoxColumn19.DefaultCellStyle = dataGridViewCellStyle30;
  1350. this.dataGridViewTextBoxColumn19.HeaderText = "注浆次数";
  1351. this.dataGridViewTextBoxColumn19.Name = "dataGridViewTextBoxColumn19";
  1352. this.dataGridViewTextBoxColumn19.ReadOnly = true;
  1353. //
  1354. // dataGridViewTextBoxColumn20
  1355. //
  1356. this.dataGridViewTextBoxColumn20.DataPropertyName = "GoodsCode";
  1357. this.dataGridViewTextBoxColumn20.HeaderText = "产品编码";
  1358. this.dataGridViewTextBoxColumn20.Name = "dataGridViewTextBoxColumn20";
  1359. this.dataGridViewTextBoxColumn20.ReadOnly = true;
  1360. //
  1361. // dataGridViewTextBoxColumn21
  1362. //
  1363. this.dataGridViewTextBoxColumn21.DataPropertyName = "GoodsName";
  1364. this.dataGridViewTextBoxColumn21.HeaderText = "产品名称";
  1365. this.dataGridViewTextBoxColumn21.Name = "dataGridViewTextBoxColumn21";
  1366. this.dataGridViewTextBoxColumn21.ReadOnly = true;
  1367. //
  1368. // dataGridViewTextBoxColumn22
  1369. //
  1370. this.dataGridViewTextBoxColumn22.DataPropertyName = "Remarks";
  1371. this.dataGridViewTextBoxColumn22.HeaderText = "注浆备注";
  1372. this.dataGridViewTextBoxColumn22.Name = "dataGridViewTextBoxColumn22";
  1373. this.dataGridViewTextBoxColumn22.ReadOnly = true;
  1374. //
  1375. // dataGridViewCheckBoxColumn2
  1376. //
  1377. this.dataGridViewCheckBoxColumn2.DataPropertyName = "ScrapFlag";
  1378. this.dataGridViewCheckBoxColumn2.FalseValue = "0";
  1379. this.dataGridViewCheckBoxColumn2.HeaderText = "损坯标识";
  1380. this.dataGridViewCheckBoxColumn2.Name = "dataGridViewCheckBoxColumn2";
  1381. this.dataGridViewCheckBoxColumn2.ReadOnly = true;
  1382. this.dataGridViewCheckBoxColumn2.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  1383. this.dataGridViewCheckBoxColumn2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  1384. this.dataGridViewCheckBoxColumn2.TrueValue = "1";
  1385. //
  1386. // dataGridViewTextBoxColumn23
  1387. //
  1388. this.dataGridViewTextBoxColumn23.DataPropertyName = "ScrapUsercode";
  1389. this.dataGridViewTextBoxColumn23.HeaderText = "报损工号";
  1390. this.dataGridViewTextBoxColumn23.Name = "dataGridViewTextBoxColumn23";
  1391. this.dataGridViewTextBoxColumn23.ReadOnly = true;
  1392. //
  1393. // dataGridViewTextBoxColumn24
  1394. //
  1395. this.dataGridViewTextBoxColumn24.DataPropertyName = "ScrapTime";
  1396. dataGridViewCellStyle31.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1397. dataGridViewCellStyle31.Format = "yyyy-MM-dd";
  1398. this.dataGridViewTextBoxColumn24.DefaultCellStyle = dataGridViewCellStyle31;
  1399. this.dataGridViewTextBoxColumn24.HeaderText = "损坯日期";
  1400. this.dataGridViewTextBoxColumn24.Name = "dataGridViewTextBoxColumn24";
  1401. this.dataGridViewTextBoxColumn24.ReadOnly = true;
  1402. //
  1403. // dataGridViewCheckBoxColumn3
  1404. //
  1405. this.dataGridViewCheckBoxColumn3.DataPropertyName = "IsPublicBody";
  1406. this.dataGridViewCheckBoxColumn3.FalseValue = "0";
  1407. this.dataGridViewCheckBoxColumn3.HeaderText = "公坯标识";
  1408. this.dataGridViewCheckBoxColumn3.Name = "dataGridViewCheckBoxColumn3";
  1409. this.dataGridViewCheckBoxColumn3.ReadOnly = true;
  1410. this.dataGridViewCheckBoxColumn3.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  1411. this.dataGridViewCheckBoxColumn3.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  1412. this.dataGridViewCheckBoxColumn3.TrueValue = "1";
  1413. //
  1414. // dataGridViewCheckBoxColumn4
  1415. //
  1416. this.dataGridViewCheckBoxColumn4.DataPropertyName = "DeliverFlag";
  1417. this.dataGridViewCheckBoxColumn4.FalseValue = "0";
  1418. this.dataGridViewCheckBoxColumn4.HeaderText = "交坯标识";
  1419. this.dataGridViewCheckBoxColumn4.Name = "dataGridViewCheckBoxColumn4";
  1420. this.dataGridViewCheckBoxColumn4.ReadOnly = true;
  1421. this.dataGridViewCheckBoxColumn4.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  1422. this.dataGridViewCheckBoxColumn4.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  1423. this.dataGridViewCheckBoxColumn4.TrueValue = "1";
  1424. //
  1425. // dataGridViewTextBoxColumn25
  1426. //
  1427. this.dataGridViewTextBoxColumn25.DataPropertyName = "DeliverUserCode";
  1428. this.dataGridViewTextBoxColumn25.HeaderText = "交坯工号";
  1429. this.dataGridViewTextBoxColumn25.Name = "dataGridViewTextBoxColumn25";
  1430. this.dataGridViewTextBoxColumn25.ReadOnly = true;
  1431. //
  1432. // dataGridViewTextBoxColumn26
  1433. //
  1434. this.dataGridViewTextBoxColumn26.DataPropertyName = "DeliverTime";
  1435. dataGridViewCellStyle32.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1436. dataGridViewCellStyle32.Format = "yyyy-MM-dd HH:mm:ss";
  1437. this.dataGridViewTextBoxColumn26.DefaultCellStyle = dataGridViewCellStyle32;
  1438. this.dataGridViewTextBoxColumn26.HeaderText = "交坯时间";
  1439. this.dataGridViewTextBoxColumn26.Name = "dataGridViewTextBoxColumn26";
  1440. this.dataGridViewTextBoxColumn26.ReadOnly = true;
  1441. //
  1442. // g3procedurename
  1443. //
  1444. this.g3procedurename.DataPropertyName = "procedurename";
  1445. this.g3procedurename.HeaderText = "当前工序";
  1446. this.g3procedurename.Name = "g3procedurename";
  1447. this.g3procedurename.ReadOnly = true;
  1448. //
  1449. // g3PROCEDURETIME
  1450. //
  1451. this.g3PROCEDURETIME.DataPropertyName = "PROCEDURETIME";
  1452. dataGridViewCellStyle33.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1453. dataGridViewCellStyle33.Format = "yyyy-MM-dd HH:mm:ss";
  1454. this.g3PROCEDURETIME.DefaultCellStyle = dataGridViewCellStyle33;
  1455. this.g3PROCEDURETIME.HeaderText = "完成时间";
  1456. this.g3PROCEDURETIME.Name = "g3PROCEDURETIME";
  1457. this.g3PROCEDURETIME.ReadOnly = true;
  1458. //
  1459. // tabPage4
  1460. //
  1461. this.tabPage4.Controls.Add(this.dgvLossDetail);
  1462. this.tabPage4.Location = new System.Drawing.Point(4, 22);
  1463. this.tabPage4.Name = "tabPage4";
  1464. this.tabPage4.Size = new System.Drawing.Size(1082, 186);
  1465. this.tabPage4.TabIndex = 3;
  1466. this.tabPage4.Text = "盘亏报损";
  1467. this.tabPage4.UseVisualStyleBackColor = true;
  1468. //
  1469. // dgvLossDetail
  1470. //
  1471. this.dgvLossDetail.AllowUserToAddRows = false;
  1472. this.dgvLossDetail.AllowUserToDeleteRows = false;
  1473. this.dgvLossDetail.AllowUserToModifyRows = true;
  1474. this.dgvLossDetail.AllowUserToOrderColumns = true;
  1475. dataGridViewCellStyle35.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
  1476. this.dgvLossDetail.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle35;
  1477. this.dgvLossDetail.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1478. this.dgvLossDetail.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
  1479. this.dgvLossDetail.CellHeight = 23;
  1480. this.dgvLossDetail.ChildNodeColumnName = null;
  1481. this.dgvLossDetail.ChildNodeColumnText = null;
  1482. this.dgvLossDetail.ColumnDeep = 1;
  1483. this.dgvLossDetail.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1484. dataGridViewCellStyle36.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1485. dataGridViewCellStyle36.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
  1486. dataGridViewCellStyle36.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1487. dataGridViewCellStyle36.ForeColor = System.Drawing.Color.White;
  1488. dataGridViewCellStyle36.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1489. dataGridViewCellStyle36.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1490. dataGridViewCellStyle36.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1491. this.dgvLossDetail.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle36;
  1492. this.dgvLossDetail.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  1493. this.dgvLossDetail.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  1494. this.dataGridViewTextBoxColumn27,
  1495. this.dataGridViewTextBoxColumn28,
  1496. this.dataGridViewTextBoxColumn29,
  1497. this.dataGridViewTextBoxColumn30,
  1498. this.dataGridViewTextBoxColumn31,
  1499. this.dataGridViewTextBoxColumn32,
  1500. this.dataGridViewTextBoxColumn33,
  1501. this.dataGridViewTextBoxColumn34,
  1502. this.dataGridViewTextBoxColumn35,
  1503. this.dataGridViewTextBoxColumn36,
  1504. this.dataGridViewTextBoxColumn37,
  1505. this.dataGridViewTextBoxColumn38,
  1506. this.dataGridViewTextBoxColumn39,
  1507. this.g4procedurename,
  1508. this.g4PROCEDURETIME});
  1509. this.dgvLossDetail.ColumnTreeView = null;
  1510. 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)));
  1511. this.dgvLossDetail.Dock = System.Windows.Forms.DockStyle.Fill;
  1512. this.dgvLossDetail.DynamicColumnName = "";
  1513. this.dgvLossDetail.EnableHeadersVisualStyles = false;
  1514. this.dgvLossDetail.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1515. this.dgvLossDetail.FormatQuantityColumns = null;
  1516. this.dgvLossDetail.HorizontalMergeColumn = null;
  1517. this.dgvLossDetail.IsAutoCountSum = true;
  1518. this.dgvLossDetail.IsAutoResizeColumns = false;
  1519. this.dgvLossDetail.IsClickF12 = false;
  1520. this.dgvLossDetail.IsOpenMergeCellFlag = false;
  1521. this.dgvLossDetail.IsSubTotalFlag = false;
  1522. this.dgvLossDetail.IsTopDeep = false;
  1523. this.dgvLossDetail.Location = new System.Drawing.Point(0, 0);
  1524. this.dgvLossDetail.Margin = new System.Windows.Forms.Padding(0);
  1525. this.dgvLossDetail.MergeColumnNames = null;
  1526. this.dgvLossDetail.MergeDetailColumnNames = null;
  1527. this.dgvLossDetail.MergeDetailOnlyColumn = null;
  1528. this.dgvLossDetail.MergeOnlyColumn = null;
  1529. this.dgvLossDetail.MultiSelect = false;
  1530. this.dgvLossDetail.Name = "dgvLossDetail";
  1531. this.dgvLossDetail.ReadOnly = true;
  1532. this.dgvLossDetail.RefreshAtHscroll = false;
  1533. this.dgvLossDetail.RowHeadersWidth = 50;
  1534. this.dgvLossDetail.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  1535. dataGridViewCellStyle42.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  1536. this.dgvLossDetail.RowsDefaultCellStyle = dataGridViewCellStyle42;
  1537. this.dgvLossDetail.RowTemplate.Height = 25;
  1538. this.dgvLossDetail.Size = new System.Drawing.Size(1082, 186);
  1539. this.dgvLossDetail.SortOrderColumnName = null;
  1540. this.dgvLossDetail.TabIndex = 2;
  1541. this.dgvLossDetail.Tag = true;
  1542. this.dgvLossDetail.TotalSumColumns = null;
  1543. this.dgvLossDetail.ViewRowFilter = "";
  1544. //
  1545. // dataGridViewTextBoxColumn27
  1546. //
  1547. this.dataGridViewTextBoxColumn27.DataPropertyName = "CheckedDate";
  1548. dataGridViewCellStyle37.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1549. dataGridViewCellStyle37.Format = "yyyy-MM-dd HH:mm:ss";
  1550. this.dataGridViewTextBoxColumn27.DefaultCellStyle = dataGridViewCellStyle37;
  1551. this.dataGridViewTextBoxColumn27.HeaderText = "报损时间";
  1552. this.dataGridViewTextBoxColumn27.Name = "dataGridViewTextBoxColumn27";
  1553. this.dataGridViewTextBoxColumn27.ReadOnly = true;
  1554. //
  1555. // dataGridViewTextBoxColumn28
  1556. //
  1557. this.dataGridViewTextBoxColumn28.DataPropertyName = "CheckedUserCode";
  1558. this.dataGridViewTextBoxColumn28.HeaderText = "报损工号";
  1559. this.dataGridViewTextBoxColumn28.Name = "dataGridViewTextBoxColumn28";
  1560. this.dataGridViewTextBoxColumn28.ReadOnly = true;
  1561. //
  1562. // dataGridViewTextBoxColumn29
  1563. //
  1564. this.dataGridViewTextBoxColumn29.DataPropertyName = "BarCode";
  1565. this.dataGridViewTextBoxColumn29.HeaderText = "产品条码";
  1566. this.dataGridViewTextBoxColumn29.Name = "dataGridViewTextBoxColumn29";
  1567. this.dataGridViewTextBoxColumn29.ReadOnly = true;
  1568. //
  1569. // dataGridViewTextBoxColumn30
  1570. //
  1571. this.dataGridViewTextBoxColumn30.DataPropertyName = "GroutingLineCode";
  1572. this.dataGridViewTextBoxColumn30.HeaderText = "成型线编码";
  1573. this.dataGridViewTextBoxColumn30.Name = "dataGridViewTextBoxColumn30";
  1574. this.dataGridViewTextBoxColumn30.ReadOnly = true;
  1575. //
  1576. // dataGridViewTextBoxColumn31
  1577. //
  1578. this.dataGridViewTextBoxColumn31.DataPropertyName = "GroutingLineName";
  1579. this.dataGridViewTextBoxColumn31.HeaderText = "成型线名称";
  1580. this.dataGridViewTextBoxColumn31.Name = "dataGridViewTextBoxColumn31";
  1581. this.dataGridViewTextBoxColumn31.ReadOnly = true;
  1582. //
  1583. // dataGridViewTextBoxColumn32
  1584. //
  1585. this.dataGridViewTextBoxColumn32.DataPropertyName = "GroutingMouldCode";
  1586. this.dataGridViewTextBoxColumn32.HeaderText = "模具编号";
  1587. this.dataGridViewTextBoxColumn32.Name = "dataGridViewTextBoxColumn32";
  1588. this.dataGridViewTextBoxColumn32.ReadOnly = true;
  1589. //
  1590. // dataGridViewTextBoxColumn33
  1591. //
  1592. this.dataGridViewTextBoxColumn33.DataPropertyName = "GroutingDate";
  1593. dataGridViewCellStyle38.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1594. dataGridViewCellStyle38.Format = "yyyy-MM-dd";
  1595. dataGridViewCellStyle38.NullValue = null;
  1596. this.dataGridViewTextBoxColumn33.DefaultCellStyle = dataGridViewCellStyle38;
  1597. this.dataGridViewTextBoxColumn33.HeaderText = "注浆日期";
  1598. this.dataGridViewTextBoxColumn33.Name = "dataGridViewTextBoxColumn33";
  1599. this.dataGridViewTextBoxColumn33.ReadOnly = true;
  1600. //
  1601. // dataGridViewTextBoxColumn34
  1602. //
  1603. this.dataGridViewTextBoxColumn34.DataPropertyName = "UserCode";
  1604. this.dataGridViewTextBoxColumn34.HeaderText = "成型工号";
  1605. this.dataGridViewTextBoxColumn34.Name = "dataGridViewTextBoxColumn34";
  1606. this.dataGridViewTextBoxColumn34.ReadOnly = true;
  1607. //
  1608. // dataGridViewTextBoxColumn35
  1609. //
  1610. this.dataGridViewTextBoxColumn35.DataPropertyName = "GroutingBatchNo";
  1611. dataGridViewCellStyle39.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1612. this.dataGridViewTextBoxColumn35.DefaultCellStyle = dataGridViewCellStyle39;
  1613. this.dataGridViewTextBoxColumn35.HeaderText = "注浆批次";
  1614. this.dataGridViewTextBoxColumn35.Name = "dataGridViewTextBoxColumn35";
  1615. this.dataGridViewTextBoxColumn35.ReadOnly = true;
  1616. //
  1617. // dataGridViewTextBoxColumn36
  1618. //
  1619. this.dataGridViewTextBoxColumn36.DataPropertyName = "GroutingCount";
  1620. dataGridViewCellStyle40.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  1621. this.dataGridViewTextBoxColumn36.DefaultCellStyle = dataGridViewCellStyle40;
  1622. this.dataGridViewTextBoxColumn36.HeaderText = "注浆次数";
  1623. this.dataGridViewTextBoxColumn36.Name = "dataGridViewTextBoxColumn36";
  1624. this.dataGridViewTextBoxColumn36.ReadOnly = true;
  1625. //
  1626. // dataGridViewTextBoxColumn37
  1627. //
  1628. this.dataGridViewTextBoxColumn37.DataPropertyName = "GoodsCode";
  1629. this.dataGridViewTextBoxColumn37.HeaderText = "产品编码";
  1630. this.dataGridViewTextBoxColumn37.Name = "dataGridViewTextBoxColumn37";
  1631. this.dataGridViewTextBoxColumn37.ReadOnly = true;
  1632. //
  1633. // dataGridViewTextBoxColumn38
  1634. //
  1635. this.dataGridViewTextBoxColumn38.DataPropertyName = "GoodsName";
  1636. this.dataGridViewTextBoxColumn38.HeaderText = "产品名称";
  1637. this.dataGridViewTextBoxColumn38.Name = "dataGridViewTextBoxColumn38";
  1638. this.dataGridViewTextBoxColumn38.ReadOnly = true;
  1639. //
  1640. // dataGridViewTextBoxColumn39
  1641. //
  1642. this.dataGridViewTextBoxColumn39.DataPropertyName = "Remarks";
  1643. this.dataGridViewTextBoxColumn39.HeaderText = "注浆备注";
  1644. this.dataGridViewTextBoxColumn39.Name = "dataGridViewTextBoxColumn39";
  1645. this.dataGridViewTextBoxColumn39.ReadOnly = true;
  1646. //
  1647. // g4procedurename
  1648. //
  1649. this.g4procedurename.DataPropertyName = "procedurename";
  1650. this.g4procedurename.HeaderText = "当前工序";
  1651. this.g4procedurename.Name = "g4procedurename";
  1652. this.g4procedurename.ReadOnly = true;
  1653. //
  1654. // g4PROCEDURETIME
  1655. //
  1656. this.g4PROCEDURETIME.DataPropertyName = "PROCEDURETIME";
  1657. dataGridViewCellStyle41.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1658. dataGridViewCellStyle41.Format = "yyyy-MM-dd HH:mm:ss";
  1659. this.g4PROCEDURETIME.DefaultCellStyle = dataGridViewCellStyle41;
  1660. this.g4PROCEDURETIME.HeaderText = "完成时间";
  1661. this.g4PROCEDURETIME.Name = "g4PROCEDURETIME";
  1662. this.g4PROCEDURETIME.ReadOnly = true;
  1663. //
  1664. // F_PM_2601
  1665. //
  1666. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  1667. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1668. this.ClientSize = new System.Drawing.Size(1102, 437);
  1669. this.Controls.Add(this.splitContainer1);
  1670. this.Controls.Add(this.gbxCondition);
  1671. this.Controls.Add(this.tsrOperate);
  1672. this.Name = "F_PM_2601";
  1673. this.Text = "成型盘点";
  1674. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.F_PM_2101_FormClosed);
  1675. this.Load += new System.EventHandler(this.F_PM_2101_Load);
  1676. this.tsrOperate.ResumeLayout(false);
  1677. this.tsrOperate.PerformLayout();
  1678. this.gbxCondition.ResumeLayout(false);
  1679. this.gbxCondition.PerformLayout();
  1680. this.splitContainer1.Panel1.ResumeLayout(false);
  1681. this.splitContainer1.Panel2.ResumeLayout(false);
  1682. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
  1683. this.splitContainer1.ResumeLayout(false);
  1684. this.splitContainer2.Panel1.ResumeLayout(false);
  1685. this.splitContainer2.Panel2.ResumeLayout(false);
  1686. ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
  1687. this.splitContainer2.ResumeLayout(false);
  1688. ((System.ComponentModel.ISupportInitialize)(this.dgvInChecked)).EndInit();
  1689. ((System.ComponentModel.ISupportInitialize)(this.dgvFunctionUsers)).EndInit();
  1690. this.tabControl1.ResumeLayout(false);
  1691. this.tabPage1.ResumeLayout(false);
  1692. ((System.ComponentModel.ISupportInitialize)(this.dgvInCheckedNoDetail)).EndInit();
  1693. this.tabPage2.ResumeLayout(false);
  1694. ((System.ComponentModel.ISupportInitialize)(this.dgvInCheckededDetail)).EndInit();
  1695. this.tabPage3.ResumeLayout(false);
  1696. ((System.ComponentModel.ISupportInitialize)(this.dgvInCheckedWinDetail)).EndInit();
  1697. this.tabPage4.ResumeLayout(false);
  1698. ((System.ComponentModel.ISupportInitialize)(this.dgvLossDetail)).EndInit();
  1699. this.ResumeLayout(false);
  1700. }
  1701. #endregion
  1702. private Basics.BaseControls.C_ToolStrip tsrOperate;
  1703. private System.Windows.Forms.ToolStripButton tsbtnAdd;
  1704. private System.Windows.Forms.ToolStripButton tsbtnInChecked;
  1705. private System.Windows.Forms.ToolStripSeparator toolStripSeparator1;
  1706. private System.Windows.Forms.ToolStripButton tsbtnAdaptive;
  1707. private System.Windows.Forms.ToolStripButton tsbtnClose;
  1708. private System.Windows.Forms.ToolStripButton tsbtnDisable;
  1709. private Basics.BaseControls.C_GroupBox gbxCondition;
  1710. private Basics.BaseControls.C_Button btnClearCondition;
  1711. private Basics.BaseControls.C_Button btnSearch;
  1712. private Basics.BaseControls.C_Label lblTo;
  1713. private System.Windows.Forms.DateTimePicker dtpEndTime;
  1714. private System.Windows.Forms.DateTimePicker dtpStartTime;
  1715. private Basics.BaseControls.C_Label lblCreateTime;
  1716. private Basics.BaseControls.C_Label lblBarCode;
  1717. private Basics.BaseControls.C_TextBox txtInCheckedNo;
  1718. private System.Windows.Forms.SplitContainer splitContainer1;
  1719. private Basics.BaseControls.C_DataGridView dgvInChecked;
  1720. private Basics.BaseControls.C_DataGridView dgvInCheckedNoDetail;
  1721. private System.Windows.Forms.TabControl tabControl1;
  1722. private System.Windows.Forms.TabPage tabPage1;
  1723. private System.Windows.Forms.TabPage tabPage2;
  1724. private System.Windows.Forms.TabPage tabPage3;
  1725. private System.Windows.Forms.ToolStripButton tsbtnClearData;
  1726. private System.Windows.Forms.ToolStripButton tsbtnAll;
  1727. private System.Windows.Forms.ToolStripButton tsbtnUnAll;
  1728. private Basics.BaseControls.C_Label c_Label1;
  1729. private Basics.BaseControls.C_TextBox txtCheckedName;
  1730. private Basics.BaseControls.C_DataGridView dgvFunctionUsers;
  1731. private System.Windows.Forms.DataGridViewTextBoxColumn UserCode;
  1732. private System.Windows.Forms.DataGridViewTextBoxColumn UserName;
  1733. private System.Windows.Forms.DataGridViewTextBoxColumn UserID;
  1734. private System.Windows.Forms.ToolStripButton tsbtnEdit;
  1735. private System.Windows.Forms.SplitContainer splitContainer2;
  1736. private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
  1737. private Basics.BaseControls.C_DataGridView dgvInCheckededDetail;
  1738. private Basics.BaseControls.C_DataGridView dgvInCheckedWinDetail;
  1739. private System.Windows.Forms.TabPage tabPage4;
  1740. private Basics.BaseControls.C_DataGridView dgvLossDetail;
  1741. private System.Windows.Forms.DataGridViewTextBoxColumn GBCheckedID;
  1742. private System.Windows.Forms.DataGridViewTextBoxColumn GBCheckedNo;
  1743. private System.Windows.Forms.DataGridViewTextBoxColumn GBcheckname;
  1744. private System.Windows.Forms.DataGridViewTextBoxColumn CreateTime;
  1745. private System.Windows.Forms.DataGridViewTextBoxColumn CreateUserName;
  1746. private System.Windows.Forms.DataGridViewTextBoxColumn Remarks;
  1747. private System.Windows.Forms.DataGridViewCheckBoxColumn Sel;
  1748. private System.Windows.Forms.DataGridViewTextBoxColumn BarCode;
  1749. private System.Windows.Forms.DataGridViewTextBoxColumn GroutingLineCode;
  1750. private System.Windows.Forms.DataGridViewTextBoxColumn GroutingLineName;
  1751. private System.Windows.Forms.DataGridViewTextBoxColumn GroutingMouldCode;
  1752. private System.Windows.Forms.DataGridViewTextBoxColumn GroutingDate;
  1753. private System.Windows.Forms.DataGridViewTextBoxColumn GroutingUserCode;
  1754. private System.Windows.Forms.DataGridViewTextBoxColumn GroutingBatchNo;
  1755. private System.Windows.Forms.DataGridViewTextBoxColumn GroutingCount;
  1756. private System.Windows.Forms.DataGridViewTextBoxColumn GoodsCode;
  1757. private System.Windows.Forms.DataGridViewTextBoxColumn GoodsName;
  1758. private System.Windows.Forms.DataGridViewTextBoxColumn g1Remarks;
  1759. private System.Windows.Forms.DataGridViewTextBoxColumn g1procedurename;
  1760. private System.Windows.Forms.DataGridViewTextBoxColumn g1PROCEDURETIME;
  1761. private System.Windows.Forms.DataGridViewTextBoxColumn CheckedDate;
  1762. private System.Windows.Forms.DataGridViewTextBoxColumn CheckedUserCode;
  1763. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
  1764. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
  1765. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
  1766. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn4;
  1767. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn5;
  1768. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn6;
  1769. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn7;
  1770. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn8;
  1771. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn9;
  1772. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn10;
  1773. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn11;
  1774. private System.Windows.Forms.DataGridViewTextBoxColumn g2procedurename;
  1775. private System.Windows.Forms.DataGridViewTextBoxColumn g2PROCEDURETIME;
  1776. private System.Windows.Forms.DataGridViewTextBoxColumn g3CheckedDate;
  1777. private System.Windows.Forms.DataGridViewTextBoxColumn g3CheckedUserCode;
  1778. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn12;
  1779. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn13;
  1780. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn14;
  1781. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn15;
  1782. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn16;
  1783. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn17;
  1784. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn18;
  1785. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn19;
  1786. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn20;
  1787. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn21;
  1788. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn22;
  1789. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn2;
  1790. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn23;
  1791. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn24;
  1792. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn3;
  1793. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn4;
  1794. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn25;
  1795. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn26;
  1796. private System.Windows.Forms.DataGridViewTextBoxColumn g3procedurename;
  1797. private System.Windows.Forms.DataGridViewTextBoxColumn g3PROCEDURETIME;
  1798. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn27;
  1799. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn28;
  1800. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn29;
  1801. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn30;
  1802. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn31;
  1803. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn32;
  1804. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn33;
  1805. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn34;
  1806. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn35;
  1807. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn36;
  1808. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn37;
  1809. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn38;
  1810. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn39;
  1811. private System.Windows.Forms.DataGridViewTextBoxColumn g4procedurename;
  1812. private System.Windows.Forms.DataGridViewTextBoxColumn g4PROCEDURETIME;
  1813. private System.Windows.Forms.ToolStripButton tsbtnCheckData;
  1814. }
  1815. }