F_PM_2601.Designer.cs 115 KB

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