Query_MakeInf.Designer.cs 102 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854
  1. namespace UAS_MES.Query
  2. {
  3. partial class Query_MakeInf
  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(Query_MakeInf));
  29. this.label1_lll_ = new System.Windows.Forms.Label();
  30. this.Carft = new System.Windows.Forms.DataGridView();
  31. this.BOM = new System.Windows.Forms.DataGridView();
  32. this.Label = new System.Windows.Forms.DataGridView();
  33. this.label16_lll_ = new System.Windows.Forms.Label();
  34. this.label17_ll_ = new System.Windows.Forms.Label();
  35. this.label18_la_ll = new System.Windows.Forms.Label();
  36. this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  37. this.dataGridViewCheckBoxColumn1 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  38. this.dataGridViewCheckBoxColumn2 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  39. this.dataGridViewCheckBoxColumn3 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  40. this.dataGridViewCheckBoxColumn4 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  41. this.dataGridViewCheckBoxColumn5 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  42. this.dataGridViewCheckBoxColumn6 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  43. this.dataGridViewCheckBoxColumn7 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  44. this.dataGridViewCheckBoxColumn8 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  45. this.dataGridViewCheckBoxColumn9 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  46. this.dataGridViewCheckBoxColumn10 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  47. this.dataGridViewCheckBoxColumn11 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  48. this.dataGridViewCheckBoxColumn12 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  49. this.dataGridViewCheckBoxColumn13 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  50. this.dataGridViewCheckBoxColumn14 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  51. this.dataGridViewCheckBoxColumn15 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  52. this.dataGridViewCheckBoxColumn16 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  53. this.dataGridViewCheckBoxColumn17 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  54. this.dataGridViewCheckBoxColumn18 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  55. this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  56. this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  57. this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  58. this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  59. this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  60. this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  61. this.dataGridViewTextBoxColumn8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  62. this.dataGridViewTextBoxColumn9 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  63. this.dataGridViewTextBoxColumn10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  64. this.dataGridViewTextBoxColumn11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  65. this.dataGridViewTextBoxColumn12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  66. this.dataGridViewTextBoxColumn13 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  67. this.dataGridViewTextBoxColumn14 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  68. this.dataGridViewTextBoxColumn15 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  69. this.dataGridViewTextBoxColumn16 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  70. this.dataGridViewTextBoxColumn17 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  71. this.dataGridViewTextBoxColumn18 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  72. this.dataGridViewTextBoxColumn19 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  73. this.dataGridViewTextBoxColumn20 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  74. this.dataGridViewTextBoxColumn21 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  75. this.dataGridViewTextBoxColumn22 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  76. this.dataGridViewTextBoxColumn23 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  77. this.dataGridViewTextBoxColumn24 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  78. this.dataGridViewTextBoxColumn25 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  79. this.dataGridViewTextBoxColumn26 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  80. this.dataGridViewTextBoxColumn27 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  81. this.dataGridViewTextBoxColumn28 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  82. this.dataGridViewTextBoxColumn29 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  83. this.dataGridViewTextBoxColumn30 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  84. this.dataGridViewTextBoxColumn31 = new System.Windows.Forms.DataGridViewTextBoxColumn();
  85. this.LA_CODE = new System.Windows.Forms.DataGridViewTextBoxColumn();
  86. this.LA_NAME = new System.Windows.Forms.DataGridViewTextBoxColumn();
  87. this.LA_STATUS = new System.Windows.Forms.DataGridViewTextBoxColumn();
  88. this.LA_INDATE = new System.Windows.Forms.DataGridViewTextBoxColumn();
  89. this.LA_INMAN = new System.Windows.Forms.DataGridViewTextBoxColumn();
  90. this.LA_PRINTNOS = new System.Windows.Forms.DataGridViewTextBoxColumn();
  91. this.LA_URL = new System.Windows.Forms.DataGridViewTextBoxColumn();
  92. this.LA_ISDEFAULT = new System.Windows.Forms.DataGridViewTextBoxColumn();
  93. this.LA_TEMPLATETYPE = new System.Windows.Forms.DataGridViewTextBoxColumn();
  94. this.LA_SOFTTYPE = new System.Windows.Forms.DataGridViewTextBoxColumn();
  95. this.LA_PRODCODE = new System.Windows.Forms.DataGridViewTextBoxColumn();
  96. this.SP_MOTHERCODE = new System.Windows.Forms.DataGridViewTextBoxColumn();
  97. this.SP_SONCODE = new System.Windows.Forms.DataGridViewTextBoxColumn();
  98. this.SP_STEPCODE = new System.Windows.Forms.DataGridViewTextBoxColumn();
  99. this.SP_REPCODE = new System.Windows.Forms.DataGridViewTextBoxColumn();
  100. this.SP_TYPE = new System.Windows.Forms.DataGridViewTextBoxColumn();
  101. this.SP_DESCRIPTION = new System.Windows.Forms.DataGridViewTextBoxColumn();
  102. this.SP_DETNO = new System.Windows.Forms.DataGridViewTextBoxColumn();
  103. this.SP_PREFIX = new System.Windows.Forms.DataGridViewTextBoxColumn();
  104. this.SP_TRACEKIND = new System.Windows.Forms.DataGridViewTextBoxColumn();
  105. this.SP_LENGTH = new System.Windows.Forms.DataGridViewTextBoxColumn();
  106. this.SP_ONEUSEQTY = new System.Windows.Forms.DataGridViewTextBoxColumn();
  107. this.SP_UPDATEMAN = new System.Windows.Forms.DataGridViewTextBoxColumn();
  108. this.SP_UPDATEDATE = new System.Windows.Forms.DataGridViewTextBoxColumn();
  109. this.CD_STEPNO = new System.Windows.Forms.DataGridViewTextBoxColumn();
  110. this.CD_IFINPUT = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  111. this.CD_IFOUTPUT = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  112. this.CD_IFTEST = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  113. this.CD_IFSNCHANGE = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  114. this.CD_IFOQC = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  115. this.CD_IFPACK = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  116. this.CD_IFREPAIR = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  117. this.CD_IFOUTLINE = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  118. this.CD_IFSMTINOUT = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  119. this.CD_IFSPC = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  120. this.CD_IFREDUCE = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  121. this.CD_IFMIDFINISH = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  122. this.CD_IFMIDINPUT = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  123. this.CD_IFBURNIN = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  124. this.CD_IFBURNOUT = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  125. this.CD_IFWEIGH = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  126. this.CD_FIRSTSTEP = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  127. this.CD_IFOFFLINE = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  128. this.CD_DETNO = new System.Windows.Forms.DataGridViewTextBoxColumn();
  129. this.CD_STEPCODE = new System.Windows.Forms.DataGridViewTextBoxColumn();
  130. this.CD_STEPNAME = new System.Windows.Forms.DataGridViewTextBoxColumn();
  131. this.CD_NEXTSTEPCODE = new System.Windows.Forms.DataGridViewTextBoxColumn();
  132. this.CD_NEXTSTEPNAME = new System.Windows.Forms.DataGridViewTextBoxColumn();
  133. this.CD_TABLE = new System.Windows.Forms.DataGridViewTextBoxColumn();
  134. this.groupBoxWithBorder1 = new UAS_MES.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
  135. this.aftersnqty = new System.Windows.Forms.Label();
  136. this.aftersnqty_label_ = new System.Windows.Forms.Label();
  137. this.AfterSnRange = new System.Windows.Forms.Label();
  138. this.AfterSnRange_label_ = new System.Windows.Forms.Label();
  139. this.beforesnqty = new System.Windows.Forms.Label();
  140. this.beforesnqty_label_ = new System.Windows.Forms.Label();
  141. this.BeforeSnRange = new System.Windows.Forms.Label();
  142. this.BeforeSnRange_label_label = new System.Windows.Forms.Label();
  143. this.IMEINum = new System.Windows.Forms.Label();
  144. this.label3_label_label = new System.Windows.Forms.Label();
  145. this.BTNum = new System.Windows.Forms.Label();
  146. this.label13_label_label = new System.Windows.Forms.Label();
  147. this.MacNum = new System.Windows.Forms.Label();
  148. this.Mac_label_label = new System.Windows.Forms.Label();
  149. this.Product = new UAS_MES.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
  150. this.pr_cartonweight = new System.Windows.Forms.Label();
  151. this.pr_cartonweight_label = new System.Windows.Forms.Label();
  152. this.pr_colorboxweight = new System.Windows.Forms.Label();
  153. this.pr_colorboxweight_label = new System.Windows.Forms.Label();
  154. this.pr_agingtime = new System.Windows.Forms.Label();
  155. this.pr_agingtime_label = new System.Windows.Forms.Label();
  156. this.pr_outboxinnerqty = new System.Windows.Forms.Label();
  157. this.pr_outboxinnerqty_label = new System.Windows.Forms.Label();
  158. this.pr_sendchecktype = new System.Windows.Forms.Label();
  159. this.pr_sendchecktype_label = new System.Windows.Forms.Label();
  160. this.pr_detail = new System.Windows.Forms.Label();
  161. this.pr_detail_label = new System.Windows.Forms.Label();
  162. this.pr_code = new System.Windows.Forms.Label();
  163. this.pr_code_label = new System.Windows.Forms.Label();
  164. this.MakeInf = new UAS_MES.CustomControl.GroupBoxWithBorder.GroupBoxWithBorder();
  165. this.ma_unlimitageqty = new System.Windows.Forms.Label();
  166. this.ma_unlimitageqty_label = new System.Windows.Forms.Label();
  167. this.ma_bomversion = new System.Windows.Forms.Label();
  168. this.ma_bomversion_label = new System.Windows.Forms.Label();
  169. this.ma_qty = new System.Windows.Forms.Label();
  170. this.ma_qty_label = new System.Windows.Forms.Label();
  171. this.ma_softversion = new System.Windows.Forms.Label();
  172. this.ma_softversion_label = new System.Windows.Forms.Label();
  173. this.ma_wccode = new System.Windows.Forms.Label();
  174. this.ma_wccode_label = new System.Windows.Forms.Label();
  175. this.ma_custname = new System.Windows.Forms.Label();
  176. this.ma_custname_label = new System.Windows.Forms.Label();
  177. this.ma_salecode = new System.Windows.Forms.Label();
  178. this.ma_salecode_label = new System.Windows.Forms.Label();
  179. this.Search = new UAS_MES.CustomControl.ButtonUtil.NormalButton();
  180. this.MakeCode = new UAS_MES.CustomControl.TextBoxWithIcon.SnCollectionBox();
  181. ((System.ComponentModel.ISupportInitialize)(this.Carft)).BeginInit();
  182. ((System.ComponentModel.ISupportInitialize)(this.BOM)).BeginInit();
  183. ((System.ComponentModel.ISupportInitialize)(this.Label)).BeginInit();
  184. this.groupBoxWithBorder1.SuspendLayout();
  185. this.Product.SuspendLayout();
  186. this.MakeInf.SuspendLayout();
  187. this.SuspendLayout();
  188. //
  189. // label1_lll_
  190. //
  191. this.label1_lll_.AutoSize = true;
  192. this.label1_lll_.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  193. this.label1_lll_.Location = new System.Drawing.Point(34, 7);
  194. this.label1_lll_.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  195. this.label1_lll_.Name = "label1_lll_";
  196. this.label1_lll_.Size = new System.Drawing.Size(58, 21);
  197. this.label1_lll_.TabIndex = 0;
  198. this.label1_lll_.Text = "工单号";
  199. //
  200. // Carft
  201. //
  202. this.Carft.AllowUserToAddRows = false;
  203. this.Carft.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  204. this.Carft.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  205. this.CD_STEPNO,
  206. this.CD_IFINPUT,
  207. this.CD_IFOUTPUT,
  208. this.CD_IFTEST,
  209. this.CD_IFSNCHANGE,
  210. this.CD_IFOQC,
  211. this.CD_IFPACK,
  212. this.CD_IFREPAIR,
  213. this.CD_IFOUTLINE,
  214. this.CD_IFSMTINOUT,
  215. this.CD_IFSPC,
  216. this.CD_IFREDUCE,
  217. this.CD_IFMIDFINISH,
  218. this.CD_IFMIDINPUT,
  219. this.CD_IFBURNIN,
  220. this.CD_IFBURNOUT,
  221. this.CD_IFWEIGH,
  222. this.CD_FIRSTSTEP,
  223. this.CD_IFOFFLINE,
  224. this.CD_DETNO,
  225. this.CD_STEPCODE,
  226. this.CD_STEPNAME,
  227. this.CD_NEXTSTEPCODE,
  228. this.CD_NEXTSTEPNAME,
  229. this.CD_TABLE});
  230. this.Carft.Location = new System.Drawing.Point(31, 313);
  231. this.Carft.Margin = new System.Windows.Forms.Padding(2);
  232. this.Carft.Name = "Carft";
  233. this.Carft.ReadOnly = true;
  234. this.Carft.RowTemplate.Height = 27;
  235. this.Carft.Size = new System.Drawing.Size(886, 222);
  236. this.Carft.TabIndex = 20;
  237. //
  238. // BOM
  239. //
  240. this.BOM.AllowUserToAddRows = false;
  241. this.BOM.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  242. this.BOM.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  243. this.SP_MOTHERCODE,
  244. this.SP_SONCODE,
  245. this.SP_STEPCODE,
  246. this.SP_REPCODE,
  247. this.SP_TYPE,
  248. this.SP_DESCRIPTION,
  249. this.SP_DETNO,
  250. this.SP_PREFIX,
  251. this.SP_TRACEKIND,
  252. this.SP_LENGTH,
  253. this.SP_ONEUSEQTY,
  254. this.SP_UPDATEMAN,
  255. this.SP_UPDATEDATE});
  256. this.BOM.Location = new System.Drawing.Point(31, 540);
  257. this.BOM.Margin = new System.Windows.Forms.Padding(2);
  258. this.BOM.Name = "BOM";
  259. this.BOM.ReadOnly = true;
  260. this.BOM.RowTemplate.Height = 27;
  261. this.BOM.Size = new System.Drawing.Size(886, 174);
  262. this.BOM.TabIndex = 21;
  263. //
  264. // Label
  265. //
  266. this.Label.AllowUserToAddRows = false;
  267. this.Label.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  268. this.Label.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  269. this.LA_CODE,
  270. this.LA_NAME,
  271. this.LA_STATUS,
  272. this.LA_INDATE,
  273. this.LA_INMAN,
  274. this.LA_PRINTNOS,
  275. this.LA_URL,
  276. this.LA_ISDEFAULT,
  277. this.LA_TEMPLATETYPE,
  278. this.LA_SOFTTYPE,
  279. this.LA_PRODCODE});
  280. this.Label.Location = new System.Drawing.Point(31, 721);
  281. this.Label.Margin = new System.Windows.Forms.Padding(2);
  282. this.Label.Name = "Label";
  283. this.Label.ReadOnly = true;
  284. this.Label.RowTemplate.Height = 27;
  285. this.Label.Size = new System.Drawing.Size(886, 139);
  286. this.Label.TabIndex = 22;
  287. //
  288. // label16_lll_
  289. //
  290. this.label16_lll_.AutoSize = true;
  291. this.label16_lll_.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  292. this.label16_lll_.Location = new System.Drawing.Point(2, 389);
  293. this.label16_lll_.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  294. this.label16_lll_.MaximumSize = new System.Drawing.Size(26, 0);
  295. this.label16_lll_.Name = "label16_lll_";
  296. this.label16_lll_.Size = new System.Drawing.Size(26, 84);
  297. this.label16_lll_.TabIndex = 23;
  298. this.label16_lll_.Text = "产品途程";
  299. //
  300. // label17_ll_
  301. //
  302. this.label17_ll_.AutoSize = true;
  303. this.label17_ll_.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  304. this.label17_ll_.Location = new System.Drawing.Point(2, 570);
  305. this.label17_ll_.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  306. this.label17_ll_.MaximumSize = new System.Drawing.Size(26, 0);
  307. this.label17_ll_.Name = "label17_ll_";
  308. this.label17_ll_.Size = new System.Drawing.Size(26, 105);
  309. this.label17_ll_.TabIndex = 24;
  310. this.label17_ll_.Text = "工序BOM";
  311. //
  312. // label18_la_ll
  313. //
  314. this.label18_la_ll.AutoSize = true;
  315. this.label18_la_ll.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  316. this.label18_la_ll.Location = new System.Drawing.Point(2, 742);
  317. this.label18_la_ll.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  318. this.label18_la_ll.MaximumSize = new System.Drawing.Size(26, 0);
  319. this.label18_la_ll.Name = "label18_la_ll";
  320. this.label18_la_ll.Size = new System.Drawing.Size(26, 84);
  321. this.label18_la_ll.TabIndex = 25;
  322. this.label18_la_ll.Text = "标签信息";
  323. //
  324. // dataGridViewTextBoxColumn1
  325. //
  326. this.dataGridViewTextBoxColumn1.DataPropertyName = "CD_STEPNO";
  327. this.dataGridViewTextBoxColumn1.HeaderText = "执行顺序";
  328. this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
  329. this.dataGridViewTextBoxColumn1.ReadOnly = true;
  330. //
  331. // dataGridViewCheckBoxColumn1
  332. //
  333. this.dataGridViewCheckBoxColumn1.DataPropertyName = "CD_IFINPUT";
  334. this.dataGridViewCheckBoxColumn1.HeaderText = "上料工序";
  335. this.dataGridViewCheckBoxColumn1.Name = "dataGridViewCheckBoxColumn1";
  336. this.dataGridViewCheckBoxColumn1.ReadOnly = true;
  337. this.dataGridViewCheckBoxColumn1.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  338. this.dataGridViewCheckBoxColumn1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  339. //
  340. // dataGridViewCheckBoxColumn2
  341. //
  342. this.dataGridViewCheckBoxColumn2.DataPropertyName = "CD_IFOUTPUT";
  343. this.dataGridViewCheckBoxColumn2.HeaderText = "下料工序";
  344. this.dataGridViewCheckBoxColumn2.Name = "dataGridViewCheckBoxColumn2";
  345. this.dataGridViewCheckBoxColumn2.ReadOnly = true;
  346. this.dataGridViewCheckBoxColumn2.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  347. this.dataGridViewCheckBoxColumn2.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  348. //
  349. // dataGridViewCheckBoxColumn3
  350. //
  351. this.dataGridViewCheckBoxColumn3.DataPropertyName = "CD_IFTEST";
  352. this.dataGridViewCheckBoxColumn3.HeaderText = "测试工序";
  353. this.dataGridViewCheckBoxColumn3.Name = "dataGridViewCheckBoxColumn3";
  354. this.dataGridViewCheckBoxColumn3.ReadOnly = true;
  355. this.dataGridViewCheckBoxColumn3.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  356. this.dataGridViewCheckBoxColumn3.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  357. //
  358. // dataGridViewCheckBoxColumn4
  359. //
  360. this.dataGridViewCheckBoxColumn4.DataPropertyName = "CD_IFSNCHANGE";
  361. this.dataGridViewCheckBoxColumn4.HeaderText = "序号转换工序";
  362. this.dataGridViewCheckBoxColumn4.Name = "dataGridViewCheckBoxColumn4";
  363. this.dataGridViewCheckBoxColumn4.ReadOnly = true;
  364. this.dataGridViewCheckBoxColumn4.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  365. this.dataGridViewCheckBoxColumn4.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  366. this.dataGridViewCheckBoxColumn4.Width = 150;
  367. //
  368. // dataGridViewCheckBoxColumn5
  369. //
  370. this.dataGridViewCheckBoxColumn5.DataPropertyName = "CD_IFOQC";
  371. this.dataGridViewCheckBoxColumn5.HeaderText = "OQC工序";
  372. this.dataGridViewCheckBoxColumn5.Name = "dataGridViewCheckBoxColumn5";
  373. this.dataGridViewCheckBoxColumn5.ReadOnly = true;
  374. this.dataGridViewCheckBoxColumn5.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  375. this.dataGridViewCheckBoxColumn5.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  376. //
  377. // dataGridViewCheckBoxColumn6
  378. //
  379. this.dataGridViewCheckBoxColumn6.DataPropertyName = "CD_IFPACK";
  380. this.dataGridViewCheckBoxColumn6.HeaderText = "包装工序";
  381. this.dataGridViewCheckBoxColumn6.Name = "dataGridViewCheckBoxColumn6";
  382. this.dataGridViewCheckBoxColumn6.ReadOnly = true;
  383. this.dataGridViewCheckBoxColumn6.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  384. this.dataGridViewCheckBoxColumn6.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  385. //
  386. // dataGridViewCheckBoxColumn7
  387. //
  388. this.dataGridViewCheckBoxColumn7.DataPropertyName = "CD_IFREPAIR";
  389. this.dataGridViewCheckBoxColumn7.HeaderText = "维修工序";
  390. this.dataGridViewCheckBoxColumn7.Name = "dataGridViewCheckBoxColumn7";
  391. this.dataGridViewCheckBoxColumn7.ReadOnly = true;
  392. this.dataGridViewCheckBoxColumn7.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  393. this.dataGridViewCheckBoxColumn7.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  394. //
  395. // dataGridViewCheckBoxColumn8
  396. //
  397. this.dataGridViewCheckBoxColumn8.DataPropertyName = "CD_IFOUTLINE";
  398. this.dataGridViewCheckBoxColumn8.HeaderText = "线外工序";
  399. this.dataGridViewCheckBoxColumn8.Name = "dataGridViewCheckBoxColumn8";
  400. this.dataGridViewCheckBoxColumn8.ReadOnly = true;
  401. this.dataGridViewCheckBoxColumn8.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  402. this.dataGridViewCheckBoxColumn8.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  403. //
  404. // dataGridViewCheckBoxColumn9
  405. //
  406. this.dataGridViewCheckBoxColumn9.DataPropertyName = "CD_IFSMTINOUT";
  407. this.dataGridViewCheckBoxColumn9.HeaderText = "SMT防呆工序";
  408. this.dataGridViewCheckBoxColumn9.Name = "dataGridViewCheckBoxColumn9";
  409. this.dataGridViewCheckBoxColumn9.ReadOnly = true;
  410. this.dataGridViewCheckBoxColumn9.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  411. this.dataGridViewCheckBoxColumn9.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  412. this.dataGridViewCheckBoxColumn9.Width = 150;
  413. //
  414. // dataGridViewCheckBoxColumn10
  415. //
  416. this.dataGridViewCheckBoxColumn10.DataPropertyName = "CD_IFSPC";
  417. this.dataGridViewCheckBoxColumn10.HeaderText = "SPC工序";
  418. this.dataGridViewCheckBoxColumn10.Name = "dataGridViewCheckBoxColumn10";
  419. this.dataGridViewCheckBoxColumn10.ReadOnly = true;
  420. this.dataGridViewCheckBoxColumn10.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  421. this.dataGridViewCheckBoxColumn10.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  422. //
  423. // dataGridViewCheckBoxColumn11
  424. //
  425. this.dataGridViewCheckBoxColumn11.DataPropertyName = "CD_IFREDUCE";
  426. this.dataGridViewCheckBoxColumn11.HeaderText = "扣料工序";
  427. this.dataGridViewCheckBoxColumn11.Name = "dataGridViewCheckBoxColumn11";
  428. this.dataGridViewCheckBoxColumn11.ReadOnly = true;
  429. this.dataGridViewCheckBoxColumn11.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  430. this.dataGridViewCheckBoxColumn11.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  431. //
  432. // dataGridViewCheckBoxColumn12
  433. //
  434. this.dataGridViewCheckBoxColumn12.DataPropertyName = "CD_IFMIDFINISH";
  435. this.dataGridViewCheckBoxColumn12.HeaderText = "中间产量工序";
  436. this.dataGridViewCheckBoxColumn12.Name = "dataGridViewCheckBoxColumn12";
  437. this.dataGridViewCheckBoxColumn12.ReadOnly = true;
  438. this.dataGridViewCheckBoxColumn12.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  439. this.dataGridViewCheckBoxColumn12.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  440. this.dataGridViewCheckBoxColumn12.Width = 150;
  441. //
  442. // dataGridViewCheckBoxColumn13
  443. //
  444. this.dataGridViewCheckBoxColumn13.DataPropertyName = "CD_IFMIDINPUT";
  445. this.dataGridViewCheckBoxColumn13.HeaderText = "中间投入工序";
  446. this.dataGridViewCheckBoxColumn13.Name = "dataGridViewCheckBoxColumn13";
  447. this.dataGridViewCheckBoxColumn13.ReadOnly = true;
  448. this.dataGridViewCheckBoxColumn13.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  449. this.dataGridViewCheckBoxColumn13.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  450. this.dataGridViewCheckBoxColumn13.Width = 150;
  451. //
  452. // dataGridViewCheckBoxColumn14
  453. //
  454. this.dataGridViewCheckBoxColumn14.DataPropertyName = "CD_IFBURNIN";
  455. this.dataGridViewCheckBoxColumn14.HeaderText = "BURNIN工序";
  456. this.dataGridViewCheckBoxColumn14.Name = "dataGridViewCheckBoxColumn14";
  457. this.dataGridViewCheckBoxColumn14.ReadOnly = true;
  458. this.dataGridViewCheckBoxColumn14.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  459. this.dataGridViewCheckBoxColumn14.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  460. this.dataGridViewCheckBoxColumn14.Width = 150;
  461. //
  462. // dataGridViewCheckBoxColumn15
  463. //
  464. this.dataGridViewCheckBoxColumn15.DataPropertyName = "CD_IFBURNOUT";
  465. this.dataGridViewCheckBoxColumn15.HeaderText = "BURNOUT工序";
  466. this.dataGridViewCheckBoxColumn15.Name = "dataGridViewCheckBoxColumn15";
  467. this.dataGridViewCheckBoxColumn15.ReadOnly = true;
  468. this.dataGridViewCheckBoxColumn15.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  469. this.dataGridViewCheckBoxColumn15.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  470. this.dataGridViewCheckBoxColumn15.Width = 150;
  471. //
  472. // dataGridViewCheckBoxColumn16
  473. //
  474. this.dataGridViewCheckBoxColumn16.DataPropertyName = "CD_IFWEIGH";
  475. this.dataGridViewCheckBoxColumn16.HeaderText = "是否称重";
  476. this.dataGridViewCheckBoxColumn16.Name = "dataGridViewCheckBoxColumn16";
  477. this.dataGridViewCheckBoxColumn16.ReadOnly = true;
  478. this.dataGridViewCheckBoxColumn16.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  479. this.dataGridViewCheckBoxColumn16.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  480. //
  481. // dataGridViewCheckBoxColumn17
  482. //
  483. this.dataGridViewCheckBoxColumn17.DataPropertyName = "CD_FIRSTSTEP";
  484. this.dataGridViewCheckBoxColumn17.HeaderText = "是否第一道工序";
  485. this.dataGridViewCheckBoxColumn17.Name = "dataGridViewCheckBoxColumn17";
  486. this.dataGridViewCheckBoxColumn17.ReadOnly = true;
  487. this.dataGridViewCheckBoxColumn17.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  488. this.dataGridViewCheckBoxColumn17.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  489. this.dataGridViewCheckBoxColumn17.Width = 150;
  490. //
  491. // dataGridViewCheckBoxColumn18
  492. //
  493. this.dataGridViewCheckBoxColumn18.DataPropertyName = "CD_IFOFFLINE";
  494. this.dataGridViewCheckBoxColumn18.HeaderText = "下线工序";
  495. this.dataGridViewCheckBoxColumn18.Name = "dataGridViewCheckBoxColumn18";
  496. this.dataGridViewCheckBoxColumn18.ReadOnly = true;
  497. this.dataGridViewCheckBoxColumn18.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  498. this.dataGridViewCheckBoxColumn18.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  499. //
  500. // dataGridViewTextBoxColumn2
  501. //
  502. this.dataGridViewTextBoxColumn2.DataPropertyName = "CD_DETNO";
  503. this.dataGridViewTextBoxColumn2.HeaderText = "序号";
  504. this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
  505. this.dataGridViewTextBoxColumn2.ReadOnly = true;
  506. //
  507. // dataGridViewTextBoxColumn3
  508. //
  509. this.dataGridViewTextBoxColumn3.DataPropertyName = "CD_STEPCODE";
  510. this.dataGridViewTextBoxColumn3.HeaderText = "工序编号";
  511. this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
  512. this.dataGridViewTextBoxColumn3.ReadOnly = true;
  513. //
  514. // dataGridViewTextBoxColumn4
  515. //
  516. this.dataGridViewTextBoxColumn4.DataPropertyName = "CD_STEPNAME";
  517. this.dataGridViewTextBoxColumn4.HeaderText = "工序名称";
  518. this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
  519. this.dataGridViewTextBoxColumn4.ReadOnly = true;
  520. //
  521. // dataGridViewTextBoxColumn5
  522. //
  523. this.dataGridViewTextBoxColumn5.DataPropertyName = "CD_NEXTSTEPCODE";
  524. this.dataGridViewTextBoxColumn5.HeaderText = "下一工序编号";
  525. this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
  526. this.dataGridViewTextBoxColumn5.ReadOnly = true;
  527. this.dataGridViewTextBoxColumn5.Width = 150;
  528. //
  529. // dataGridViewTextBoxColumn6
  530. //
  531. this.dataGridViewTextBoxColumn6.DataPropertyName = "CD_NEXTSTEPNAME";
  532. this.dataGridViewTextBoxColumn6.HeaderText = "下一工序名称";
  533. this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
  534. this.dataGridViewTextBoxColumn6.ReadOnly = true;
  535. this.dataGridViewTextBoxColumn6.Width = 150;
  536. //
  537. // dataGridViewTextBoxColumn7
  538. //
  539. this.dataGridViewTextBoxColumn7.DataPropertyName = "CD_TABLE";
  540. this.dataGridViewTextBoxColumn7.HeaderText = "板面";
  541. this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
  542. this.dataGridViewTextBoxColumn7.ReadOnly = true;
  543. //
  544. // dataGridViewTextBoxColumn8
  545. //
  546. this.dataGridViewTextBoxColumn8.DataPropertyName = "SP_MOTHERCODE";
  547. this.dataGridViewTextBoxColumn8.HeaderText = "母件编号";
  548. this.dataGridViewTextBoxColumn8.Name = "dataGridViewTextBoxColumn8";
  549. this.dataGridViewTextBoxColumn8.ReadOnly = true;
  550. //
  551. // dataGridViewTextBoxColumn9
  552. //
  553. this.dataGridViewTextBoxColumn9.DataPropertyName = "SP_SONCODE";
  554. this.dataGridViewTextBoxColumn9.HeaderText = "物料编号";
  555. this.dataGridViewTextBoxColumn9.Name = "dataGridViewTextBoxColumn9";
  556. this.dataGridViewTextBoxColumn9.ReadOnly = true;
  557. //
  558. // dataGridViewTextBoxColumn10
  559. //
  560. this.dataGridViewTextBoxColumn10.DataPropertyName = "SP_STEPCODE";
  561. this.dataGridViewTextBoxColumn10.HeaderText = "工序编号";
  562. this.dataGridViewTextBoxColumn10.Name = "dataGridViewTextBoxColumn10";
  563. this.dataGridViewTextBoxColumn10.ReadOnly = true;
  564. //
  565. // dataGridViewTextBoxColumn11
  566. //
  567. this.dataGridViewTextBoxColumn11.DataPropertyName = "SP_REPCODE";
  568. this.dataGridViewTextBoxColumn11.HeaderText = "替代料编号";
  569. this.dataGridViewTextBoxColumn11.Name = "dataGridViewTextBoxColumn11";
  570. this.dataGridViewTextBoxColumn11.ReadOnly = true;
  571. this.dataGridViewTextBoxColumn11.Width = 150;
  572. //
  573. // dataGridViewTextBoxColumn12
  574. //
  575. this.dataGridViewTextBoxColumn12.DataPropertyName = "SP_TYPE";
  576. this.dataGridViewTextBoxColumn12.HeaderText = "采集类型";
  577. this.dataGridViewTextBoxColumn12.Name = "dataGridViewTextBoxColumn12";
  578. this.dataGridViewTextBoxColumn12.ReadOnly = true;
  579. //
  580. // dataGridViewTextBoxColumn13
  581. //
  582. this.dataGridViewTextBoxColumn13.DataPropertyName = "SP_DESCRIPTION";
  583. this.dataGridViewTextBoxColumn13.HeaderText = "描述";
  584. this.dataGridViewTextBoxColumn13.Name = "dataGridViewTextBoxColumn13";
  585. this.dataGridViewTextBoxColumn13.ReadOnly = true;
  586. //
  587. // dataGridViewTextBoxColumn14
  588. //
  589. this.dataGridViewTextBoxColumn14.DataPropertyName = "SP_DETNO";
  590. this.dataGridViewTextBoxColumn14.HeaderText = "采集顺序";
  591. this.dataGridViewTextBoxColumn14.Name = "dataGridViewTextBoxColumn14";
  592. this.dataGridViewTextBoxColumn14.ReadOnly = true;
  593. //
  594. // dataGridViewTextBoxColumn15
  595. //
  596. this.dataGridViewTextBoxColumn15.DataPropertyName = "SP_PREFIX";
  597. this.dataGridViewTextBoxColumn15.HeaderText = "前缀码";
  598. this.dataGridViewTextBoxColumn15.Name = "dataGridViewTextBoxColumn15";
  599. this.dataGridViewTextBoxColumn15.ReadOnly = true;
  600. //
  601. // dataGridViewTextBoxColumn16
  602. //
  603. this.dataGridViewTextBoxColumn16.DataPropertyName = "SP_TRACEKIND";
  604. this.dataGridViewTextBoxColumn16.HeaderText = "管控类型";
  605. this.dataGridViewTextBoxColumn16.Name = "dataGridViewTextBoxColumn16";
  606. this.dataGridViewTextBoxColumn16.ReadOnly = true;
  607. //
  608. // dataGridViewTextBoxColumn17
  609. //
  610. this.dataGridViewTextBoxColumn17.DataPropertyName = "SP_LENGTH";
  611. this.dataGridViewTextBoxColumn17.HeaderText = "长度";
  612. this.dataGridViewTextBoxColumn17.Name = "dataGridViewTextBoxColumn17";
  613. this.dataGridViewTextBoxColumn17.ReadOnly = true;
  614. //
  615. // dataGridViewTextBoxColumn18
  616. //
  617. this.dataGridViewTextBoxColumn18.DataPropertyName = "SP_ONEUSEQTY";
  618. this.dataGridViewTextBoxColumn18.HeaderText = "单位用量";
  619. this.dataGridViewTextBoxColumn18.Name = "dataGridViewTextBoxColumn18";
  620. this.dataGridViewTextBoxColumn18.ReadOnly = true;
  621. //
  622. // dataGridViewTextBoxColumn19
  623. //
  624. this.dataGridViewTextBoxColumn19.DataPropertyName = "SP_UPDATEMAN";
  625. this.dataGridViewTextBoxColumn19.HeaderText = "更新人";
  626. this.dataGridViewTextBoxColumn19.Name = "dataGridViewTextBoxColumn19";
  627. this.dataGridViewTextBoxColumn19.ReadOnly = true;
  628. //
  629. // dataGridViewTextBoxColumn20
  630. //
  631. this.dataGridViewTextBoxColumn20.DataPropertyName = "SP_UPDATEDATE";
  632. this.dataGridViewTextBoxColumn20.HeaderText = "更新日期";
  633. this.dataGridViewTextBoxColumn20.Name = "dataGridViewTextBoxColumn20";
  634. this.dataGridViewTextBoxColumn20.ReadOnly = true;
  635. //
  636. // dataGridViewTextBoxColumn21
  637. //
  638. this.dataGridViewTextBoxColumn21.DataPropertyName = "LA_CODE";
  639. this.dataGridViewTextBoxColumn21.HeaderText = "模板编号";
  640. this.dataGridViewTextBoxColumn21.Name = "dataGridViewTextBoxColumn21";
  641. this.dataGridViewTextBoxColumn21.ReadOnly = true;
  642. //
  643. // dataGridViewTextBoxColumn22
  644. //
  645. this.dataGridViewTextBoxColumn22.DataPropertyName = "LA_NAME";
  646. this.dataGridViewTextBoxColumn22.HeaderText = "模板名称";
  647. this.dataGridViewTextBoxColumn22.Name = "dataGridViewTextBoxColumn22";
  648. this.dataGridViewTextBoxColumn22.ReadOnly = true;
  649. //
  650. // dataGridViewTextBoxColumn23
  651. //
  652. this.dataGridViewTextBoxColumn23.DataPropertyName = "LA_STATUS";
  653. this.dataGridViewTextBoxColumn23.HeaderText = "状态";
  654. this.dataGridViewTextBoxColumn23.Name = "dataGridViewTextBoxColumn23";
  655. this.dataGridViewTextBoxColumn23.ReadOnly = true;
  656. //
  657. // dataGridViewTextBoxColumn24
  658. //
  659. this.dataGridViewTextBoxColumn24.DataPropertyName = "LA_INDATE";
  660. this.dataGridViewTextBoxColumn24.HeaderText = "录入日期";
  661. this.dataGridViewTextBoxColumn24.Name = "dataGridViewTextBoxColumn24";
  662. this.dataGridViewTextBoxColumn24.ReadOnly = true;
  663. //
  664. // dataGridViewTextBoxColumn25
  665. //
  666. this.dataGridViewTextBoxColumn25.DataPropertyName = "LA_INMAN";
  667. this.dataGridViewTextBoxColumn25.HeaderText = "录入人";
  668. this.dataGridViewTextBoxColumn25.Name = "dataGridViewTextBoxColumn25";
  669. this.dataGridViewTextBoxColumn25.ReadOnly = true;
  670. //
  671. // dataGridViewTextBoxColumn26
  672. //
  673. this.dataGridViewTextBoxColumn26.DataPropertyName = "LA_PRINTNOS";
  674. this.dataGridViewTextBoxColumn26.HeaderText = "打印份数";
  675. this.dataGridViewTextBoxColumn26.Name = "dataGridViewTextBoxColumn26";
  676. this.dataGridViewTextBoxColumn26.ReadOnly = true;
  677. //
  678. // dataGridViewTextBoxColumn27
  679. //
  680. this.dataGridViewTextBoxColumn27.DataPropertyName = "LA_URL";
  681. this.dataGridViewTextBoxColumn27.HeaderText = "模板路径";
  682. this.dataGridViewTextBoxColumn27.Name = "dataGridViewTextBoxColumn27";
  683. this.dataGridViewTextBoxColumn27.ReadOnly = true;
  684. //
  685. // dataGridViewTextBoxColumn28
  686. //
  687. this.dataGridViewTextBoxColumn28.DataPropertyName = "LA_ISDEFAULT";
  688. this.dataGridViewTextBoxColumn28.HeaderText = "是否默认";
  689. this.dataGridViewTextBoxColumn28.Name = "dataGridViewTextBoxColumn28";
  690. this.dataGridViewTextBoxColumn28.ReadOnly = true;
  691. //
  692. // dataGridViewTextBoxColumn29
  693. //
  694. this.dataGridViewTextBoxColumn29.DataPropertyName = "LA_TEMPLATETYPE";
  695. this.dataGridViewTextBoxColumn29.HeaderText = "模板类型";
  696. this.dataGridViewTextBoxColumn29.Name = "dataGridViewTextBoxColumn29";
  697. this.dataGridViewTextBoxColumn29.ReadOnly = true;
  698. //
  699. // dataGridViewTextBoxColumn30
  700. //
  701. this.dataGridViewTextBoxColumn30.DataPropertyName = "LA_SOFTTYPE";
  702. this.dataGridViewTextBoxColumn30.HeaderText = "模板软件";
  703. this.dataGridViewTextBoxColumn30.Name = "dataGridViewTextBoxColumn30";
  704. this.dataGridViewTextBoxColumn30.ReadOnly = true;
  705. //
  706. // dataGridViewTextBoxColumn31
  707. //
  708. this.dataGridViewTextBoxColumn31.DataPropertyName = "LA_PRODCODE";
  709. this.dataGridViewTextBoxColumn31.HeaderText = "产品编号";
  710. this.dataGridViewTextBoxColumn31.Name = "dataGridViewTextBoxColumn31";
  711. this.dataGridViewTextBoxColumn31.ReadOnly = true;
  712. //
  713. // LA_CODE
  714. //
  715. this.LA_CODE.DataPropertyName = "LA_CODE";
  716. this.LA_CODE.HeaderText = "模板编号";
  717. this.LA_CODE.Name = "LA_CODE";
  718. this.LA_CODE.ReadOnly = true;
  719. //
  720. // LA_NAME
  721. //
  722. this.LA_NAME.DataPropertyName = "LA_NAME";
  723. this.LA_NAME.HeaderText = "模板名称";
  724. this.LA_NAME.Name = "LA_NAME";
  725. this.LA_NAME.ReadOnly = true;
  726. //
  727. // LA_STATUS
  728. //
  729. this.LA_STATUS.DataPropertyName = "LA_STATUS";
  730. this.LA_STATUS.HeaderText = "状态";
  731. this.LA_STATUS.Name = "LA_STATUS";
  732. this.LA_STATUS.ReadOnly = true;
  733. //
  734. // LA_INDATE
  735. //
  736. this.LA_INDATE.DataPropertyName = "LA_INDATE";
  737. this.LA_INDATE.HeaderText = "录入日期";
  738. this.LA_INDATE.Name = "LA_INDATE";
  739. this.LA_INDATE.ReadOnly = true;
  740. //
  741. // LA_INMAN
  742. //
  743. this.LA_INMAN.DataPropertyName = "LA_INMAN";
  744. this.LA_INMAN.HeaderText = "录入人";
  745. this.LA_INMAN.Name = "LA_INMAN";
  746. this.LA_INMAN.ReadOnly = true;
  747. //
  748. // LA_PRINTNOS
  749. //
  750. this.LA_PRINTNOS.DataPropertyName = "LA_PRINTNOS";
  751. this.LA_PRINTNOS.HeaderText = "打印份数";
  752. this.LA_PRINTNOS.Name = "LA_PRINTNOS";
  753. this.LA_PRINTNOS.ReadOnly = true;
  754. //
  755. // LA_URL
  756. //
  757. this.LA_URL.DataPropertyName = "LA_URL";
  758. this.LA_URL.HeaderText = "模板路径";
  759. this.LA_URL.Name = "LA_URL";
  760. this.LA_URL.ReadOnly = true;
  761. //
  762. // LA_ISDEFAULT
  763. //
  764. this.LA_ISDEFAULT.DataPropertyName = "LA_ISDEFAULT";
  765. this.LA_ISDEFAULT.HeaderText = "是否默认";
  766. this.LA_ISDEFAULT.Name = "LA_ISDEFAULT";
  767. this.LA_ISDEFAULT.ReadOnly = true;
  768. //
  769. // LA_TEMPLATETYPE
  770. //
  771. this.LA_TEMPLATETYPE.DataPropertyName = "LA_TEMPLATETYPE";
  772. this.LA_TEMPLATETYPE.HeaderText = "模板类型";
  773. this.LA_TEMPLATETYPE.Name = "LA_TEMPLATETYPE";
  774. this.LA_TEMPLATETYPE.ReadOnly = true;
  775. //
  776. // LA_SOFTTYPE
  777. //
  778. this.LA_SOFTTYPE.DataPropertyName = "LA_SOFTTYPE";
  779. this.LA_SOFTTYPE.HeaderText = "模板软件";
  780. this.LA_SOFTTYPE.Name = "LA_SOFTTYPE";
  781. this.LA_SOFTTYPE.ReadOnly = true;
  782. //
  783. // LA_PRODCODE
  784. //
  785. this.LA_PRODCODE.DataPropertyName = "LA_PRODCODE";
  786. this.LA_PRODCODE.HeaderText = "产品编号";
  787. this.LA_PRODCODE.Name = "LA_PRODCODE";
  788. this.LA_PRODCODE.ReadOnly = true;
  789. //
  790. // SP_MOTHERCODE
  791. //
  792. this.SP_MOTHERCODE.DataPropertyName = "SP_MOTHERCODE";
  793. this.SP_MOTHERCODE.HeaderText = "母件编号";
  794. this.SP_MOTHERCODE.Name = "SP_MOTHERCODE";
  795. this.SP_MOTHERCODE.ReadOnly = true;
  796. //
  797. // SP_SONCODE
  798. //
  799. this.SP_SONCODE.DataPropertyName = "SP_SONCODE";
  800. this.SP_SONCODE.HeaderText = "物料编号";
  801. this.SP_SONCODE.Name = "SP_SONCODE";
  802. this.SP_SONCODE.ReadOnly = true;
  803. //
  804. // SP_STEPCODE
  805. //
  806. this.SP_STEPCODE.DataPropertyName = "SP_STEPCODE";
  807. this.SP_STEPCODE.HeaderText = "工序编号";
  808. this.SP_STEPCODE.Name = "SP_STEPCODE";
  809. this.SP_STEPCODE.ReadOnly = true;
  810. //
  811. // SP_REPCODE
  812. //
  813. this.SP_REPCODE.DataPropertyName = "SP_REPCODE";
  814. this.SP_REPCODE.HeaderText = "替代料编号";
  815. this.SP_REPCODE.Name = "SP_REPCODE";
  816. this.SP_REPCODE.ReadOnly = true;
  817. this.SP_REPCODE.Width = 150;
  818. //
  819. // SP_TYPE
  820. //
  821. this.SP_TYPE.DataPropertyName = "SP_TYPE";
  822. this.SP_TYPE.HeaderText = "采集类型";
  823. this.SP_TYPE.Name = "SP_TYPE";
  824. this.SP_TYPE.ReadOnly = true;
  825. //
  826. // SP_DESCRIPTION
  827. //
  828. this.SP_DESCRIPTION.DataPropertyName = "SP_DESCRIPTION";
  829. this.SP_DESCRIPTION.HeaderText = "描述";
  830. this.SP_DESCRIPTION.Name = "SP_DESCRIPTION";
  831. this.SP_DESCRIPTION.ReadOnly = true;
  832. //
  833. // SP_DETNO
  834. //
  835. this.SP_DETNO.DataPropertyName = "SP_DETNO";
  836. this.SP_DETNO.HeaderText = "采集顺序";
  837. this.SP_DETNO.Name = "SP_DETNO";
  838. this.SP_DETNO.ReadOnly = true;
  839. //
  840. // SP_PREFIX
  841. //
  842. this.SP_PREFIX.DataPropertyName = "SP_PREFIX";
  843. this.SP_PREFIX.HeaderText = "前缀码";
  844. this.SP_PREFIX.Name = "SP_PREFIX";
  845. this.SP_PREFIX.ReadOnly = true;
  846. //
  847. // SP_TRACEKIND
  848. //
  849. this.SP_TRACEKIND.DataPropertyName = "SP_TRACEKIND";
  850. this.SP_TRACEKIND.HeaderText = "管控类型";
  851. this.SP_TRACEKIND.Name = "SP_TRACEKIND";
  852. this.SP_TRACEKIND.ReadOnly = true;
  853. //
  854. // SP_LENGTH
  855. //
  856. this.SP_LENGTH.DataPropertyName = "SP_LENGTH";
  857. this.SP_LENGTH.HeaderText = "长度";
  858. this.SP_LENGTH.Name = "SP_LENGTH";
  859. this.SP_LENGTH.ReadOnly = true;
  860. //
  861. // SP_ONEUSEQTY
  862. //
  863. this.SP_ONEUSEQTY.DataPropertyName = "SP_ONEUSEQTY";
  864. this.SP_ONEUSEQTY.HeaderText = "单位用量";
  865. this.SP_ONEUSEQTY.Name = "SP_ONEUSEQTY";
  866. this.SP_ONEUSEQTY.ReadOnly = true;
  867. //
  868. // SP_UPDATEMAN
  869. //
  870. this.SP_UPDATEMAN.DataPropertyName = "SP_UPDATEMAN";
  871. this.SP_UPDATEMAN.HeaderText = "更新人";
  872. this.SP_UPDATEMAN.Name = "SP_UPDATEMAN";
  873. this.SP_UPDATEMAN.ReadOnly = true;
  874. //
  875. // SP_UPDATEDATE
  876. //
  877. this.SP_UPDATEDATE.DataPropertyName = "SP_UPDATEDATE";
  878. this.SP_UPDATEDATE.HeaderText = "更新日期";
  879. this.SP_UPDATEDATE.Name = "SP_UPDATEDATE";
  880. this.SP_UPDATEDATE.ReadOnly = true;
  881. //
  882. // CD_STEPNO
  883. //
  884. this.CD_STEPNO.DataPropertyName = "CD_STEPNO";
  885. this.CD_STEPNO.HeaderText = "执行顺序";
  886. this.CD_STEPNO.Name = "CD_STEPNO";
  887. this.CD_STEPNO.ReadOnly = true;
  888. //
  889. // CD_IFINPUT
  890. //
  891. this.CD_IFINPUT.DataPropertyName = "CD_IFINPUT";
  892. this.CD_IFINPUT.HeaderText = "上料工序";
  893. this.CD_IFINPUT.Name = "CD_IFINPUT";
  894. this.CD_IFINPUT.ReadOnly = true;
  895. this.CD_IFINPUT.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  896. this.CD_IFINPUT.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  897. //
  898. // CD_IFOUTPUT
  899. //
  900. this.CD_IFOUTPUT.DataPropertyName = "CD_IFOUTPUT";
  901. this.CD_IFOUTPUT.HeaderText = "下料工序";
  902. this.CD_IFOUTPUT.Name = "CD_IFOUTPUT";
  903. this.CD_IFOUTPUT.ReadOnly = true;
  904. this.CD_IFOUTPUT.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  905. this.CD_IFOUTPUT.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  906. //
  907. // CD_IFTEST
  908. //
  909. this.CD_IFTEST.DataPropertyName = "CD_IFTEST";
  910. this.CD_IFTEST.HeaderText = "测试工序";
  911. this.CD_IFTEST.Name = "CD_IFTEST";
  912. this.CD_IFTEST.ReadOnly = true;
  913. this.CD_IFTEST.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  914. this.CD_IFTEST.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  915. //
  916. // CD_IFSNCHANGE
  917. //
  918. this.CD_IFSNCHANGE.DataPropertyName = "CD_IFSNCHANGE";
  919. this.CD_IFSNCHANGE.HeaderText = "序号转换工序";
  920. this.CD_IFSNCHANGE.Name = "CD_IFSNCHANGE";
  921. this.CD_IFSNCHANGE.ReadOnly = true;
  922. this.CD_IFSNCHANGE.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  923. this.CD_IFSNCHANGE.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  924. this.CD_IFSNCHANGE.Width = 150;
  925. //
  926. // CD_IFOQC
  927. //
  928. this.CD_IFOQC.DataPropertyName = "CD_IFOQC";
  929. this.CD_IFOQC.HeaderText = "OQC工序";
  930. this.CD_IFOQC.Name = "CD_IFOQC";
  931. this.CD_IFOQC.ReadOnly = true;
  932. this.CD_IFOQC.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  933. this.CD_IFOQC.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  934. //
  935. // CD_IFPACK
  936. //
  937. this.CD_IFPACK.DataPropertyName = "CD_IFPACK";
  938. this.CD_IFPACK.HeaderText = "包装工序";
  939. this.CD_IFPACK.Name = "CD_IFPACK";
  940. this.CD_IFPACK.ReadOnly = true;
  941. this.CD_IFPACK.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  942. this.CD_IFPACK.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  943. //
  944. // CD_IFREPAIR
  945. //
  946. this.CD_IFREPAIR.DataPropertyName = "CD_IFREPAIR";
  947. this.CD_IFREPAIR.HeaderText = "维修工序";
  948. this.CD_IFREPAIR.Name = "CD_IFREPAIR";
  949. this.CD_IFREPAIR.ReadOnly = true;
  950. this.CD_IFREPAIR.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  951. this.CD_IFREPAIR.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  952. //
  953. // CD_IFOUTLINE
  954. //
  955. this.CD_IFOUTLINE.DataPropertyName = "CD_IFOUTLINE";
  956. this.CD_IFOUTLINE.HeaderText = "线外工序";
  957. this.CD_IFOUTLINE.Name = "CD_IFOUTLINE";
  958. this.CD_IFOUTLINE.ReadOnly = true;
  959. this.CD_IFOUTLINE.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  960. this.CD_IFOUTLINE.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  961. //
  962. // CD_IFSMTINOUT
  963. //
  964. this.CD_IFSMTINOUT.DataPropertyName = "CD_IFSMTINOUT";
  965. this.CD_IFSMTINOUT.HeaderText = "SMT防呆工序";
  966. this.CD_IFSMTINOUT.Name = "CD_IFSMTINOUT";
  967. this.CD_IFSMTINOUT.ReadOnly = true;
  968. this.CD_IFSMTINOUT.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  969. this.CD_IFSMTINOUT.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  970. this.CD_IFSMTINOUT.Width = 150;
  971. //
  972. // CD_IFSPC
  973. //
  974. this.CD_IFSPC.DataPropertyName = "CD_IFSPC";
  975. this.CD_IFSPC.HeaderText = "SPC工序";
  976. this.CD_IFSPC.Name = "CD_IFSPC";
  977. this.CD_IFSPC.ReadOnly = true;
  978. this.CD_IFSPC.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  979. this.CD_IFSPC.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  980. //
  981. // CD_IFREDUCE
  982. //
  983. this.CD_IFREDUCE.DataPropertyName = "CD_IFREDUCE";
  984. this.CD_IFREDUCE.HeaderText = "扣料工序";
  985. this.CD_IFREDUCE.Name = "CD_IFREDUCE";
  986. this.CD_IFREDUCE.ReadOnly = true;
  987. this.CD_IFREDUCE.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  988. this.CD_IFREDUCE.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  989. //
  990. // CD_IFMIDFINISH
  991. //
  992. this.CD_IFMIDFINISH.DataPropertyName = "CD_IFMIDFINISH";
  993. this.CD_IFMIDFINISH.HeaderText = "中间产量工序";
  994. this.CD_IFMIDFINISH.Name = "CD_IFMIDFINISH";
  995. this.CD_IFMIDFINISH.ReadOnly = true;
  996. this.CD_IFMIDFINISH.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  997. this.CD_IFMIDFINISH.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  998. this.CD_IFMIDFINISH.Width = 150;
  999. //
  1000. // CD_IFMIDINPUT
  1001. //
  1002. this.CD_IFMIDINPUT.DataPropertyName = "CD_IFMIDINPUT";
  1003. this.CD_IFMIDINPUT.HeaderText = "中间投入工序";
  1004. this.CD_IFMIDINPUT.Name = "CD_IFMIDINPUT";
  1005. this.CD_IFMIDINPUT.ReadOnly = true;
  1006. this.CD_IFMIDINPUT.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  1007. this.CD_IFMIDINPUT.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  1008. this.CD_IFMIDINPUT.Width = 150;
  1009. //
  1010. // CD_IFBURNIN
  1011. //
  1012. this.CD_IFBURNIN.DataPropertyName = "CD_IFBURNIN";
  1013. this.CD_IFBURNIN.HeaderText = "BURNIN工序";
  1014. this.CD_IFBURNIN.Name = "CD_IFBURNIN";
  1015. this.CD_IFBURNIN.ReadOnly = true;
  1016. this.CD_IFBURNIN.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  1017. this.CD_IFBURNIN.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  1018. this.CD_IFBURNIN.Width = 150;
  1019. //
  1020. // CD_IFBURNOUT
  1021. //
  1022. this.CD_IFBURNOUT.DataPropertyName = "CD_IFBURNOUT";
  1023. this.CD_IFBURNOUT.HeaderText = "BURNOUT工序";
  1024. this.CD_IFBURNOUT.Name = "CD_IFBURNOUT";
  1025. this.CD_IFBURNOUT.ReadOnly = true;
  1026. this.CD_IFBURNOUT.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  1027. this.CD_IFBURNOUT.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  1028. this.CD_IFBURNOUT.Width = 150;
  1029. //
  1030. // CD_IFWEIGH
  1031. //
  1032. this.CD_IFWEIGH.DataPropertyName = "CD_IFWEIGH";
  1033. this.CD_IFWEIGH.HeaderText = "是否称重";
  1034. this.CD_IFWEIGH.Name = "CD_IFWEIGH";
  1035. this.CD_IFWEIGH.ReadOnly = true;
  1036. this.CD_IFWEIGH.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  1037. this.CD_IFWEIGH.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  1038. //
  1039. // CD_FIRSTSTEP
  1040. //
  1041. this.CD_FIRSTSTEP.DataPropertyName = "CD_FIRSTSTEP";
  1042. this.CD_FIRSTSTEP.HeaderText = "是否第一道工序";
  1043. this.CD_FIRSTSTEP.Name = "CD_FIRSTSTEP";
  1044. this.CD_FIRSTSTEP.ReadOnly = true;
  1045. this.CD_FIRSTSTEP.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  1046. this.CD_FIRSTSTEP.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  1047. this.CD_FIRSTSTEP.Width = 150;
  1048. //
  1049. // CD_IFOFFLINE
  1050. //
  1051. this.CD_IFOFFLINE.DataPropertyName = "CD_IFOFFLINE";
  1052. this.CD_IFOFFLINE.HeaderText = "下线工序";
  1053. this.CD_IFOFFLINE.Name = "CD_IFOFFLINE";
  1054. this.CD_IFOFFLINE.ReadOnly = true;
  1055. this.CD_IFOFFLINE.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  1056. this.CD_IFOFFLINE.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  1057. //
  1058. // CD_DETNO
  1059. //
  1060. this.CD_DETNO.DataPropertyName = "CD_DETNO";
  1061. this.CD_DETNO.HeaderText = "序号";
  1062. this.CD_DETNO.Name = "CD_DETNO";
  1063. this.CD_DETNO.ReadOnly = true;
  1064. //
  1065. // CD_STEPCODE
  1066. //
  1067. this.CD_STEPCODE.DataPropertyName = "CD_STEPCODE";
  1068. this.CD_STEPCODE.HeaderText = "工序编号";
  1069. this.CD_STEPCODE.Name = "CD_STEPCODE";
  1070. this.CD_STEPCODE.ReadOnly = true;
  1071. //
  1072. // CD_STEPNAME
  1073. //
  1074. this.CD_STEPNAME.DataPropertyName = "CD_STEPNAME";
  1075. this.CD_STEPNAME.HeaderText = "工序名称";
  1076. this.CD_STEPNAME.Name = "CD_STEPNAME";
  1077. this.CD_STEPNAME.ReadOnly = true;
  1078. //
  1079. // CD_NEXTSTEPCODE
  1080. //
  1081. this.CD_NEXTSTEPCODE.DataPropertyName = "CD_NEXTSTEPCODE";
  1082. this.CD_NEXTSTEPCODE.HeaderText = "下一工序编号";
  1083. this.CD_NEXTSTEPCODE.Name = "CD_NEXTSTEPCODE";
  1084. this.CD_NEXTSTEPCODE.ReadOnly = true;
  1085. this.CD_NEXTSTEPCODE.Width = 150;
  1086. //
  1087. // CD_NEXTSTEPNAME
  1088. //
  1089. this.CD_NEXTSTEPNAME.DataPropertyName = "CD_NEXTSTEPNAME";
  1090. this.CD_NEXTSTEPNAME.HeaderText = "下一工序名称";
  1091. this.CD_NEXTSTEPNAME.Name = "CD_NEXTSTEPNAME";
  1092. this.CD_NEXTSTEPNAME.ReadOnly = true;
  1093. this.CD_NEXTSTEPNAME.Width = 150;
  1094. //
  1095. // CD_TABLE
  1096. //
  1097. this.CD_TABLE.DataPropertyName = "CD_TABLE";
  1098. this.CD_TABLE.HeaderText = "板面";
  1099. this.CD_TABLE.Name = "CD_TABLE";
  1100. this.CD_TABLE.ReadOnly = true;
  1101. //
  1102. // groupBoxWithBorder1
  1103. //
  1104. this.groupBoxWithBorder1.BorderColor = System.Drawing.Color.Black;
  1105. this.groupBoxWithBorder1.Controls.Add(this.aftersnqty);
  1106. this.groupBoxWithBorder1.Controls.Add(this.aftersnqty_label_);
  1107. this.groupBoxWithBorder1.Controls.Add(this.AfterSnRange);
  1108. this.groupBoxWithBorder1.Controls.Add(this.AfterSnRange_label_);
  1109. this.groupBoxWithBorder1.Controls.Add(this.beforesnqty);
  1110. this.groupBoxWithBorder1.Controls.Add(this.beforesnqty_label_);
  1111. this.groupBoxWithBorder1.Controls.Add(this.BeforeSnRange);
  1112. this.groupBoxWithBorder1.Controls.Add(this.BeforeSnRange_label_label);
  1113. this.groupBoxWithBorder1.Controls.Add(this.IMEINum);
  1114. this.groupBoxWithBorder1.Controls.Add(this.label3_label_label);
  1115. this.groupBoxWithBorder1.Controls.Add(this.BTNum);
  1116. this.groupBoxWithBorder1.Controls.Add(this.label13_label_label);
  1117. this.groupBoxWithBorder1.Controls.Add(this.MacNum);
  1118. this.groupBoxWithBorder1.Controls.Add(this.Mac_label_label);
  1119. this.groupBoxWithBorder1.Location = new System.Drawing.Point(31, 224);
  1120. this.groupBoxWithBorder1.Margin = new System.Windows.Forms.Padding(2);
  1121. this.groupBoxWithBorder1.Name = "groupBoxWithBorder1";
  1122. this.groupBoxWithBorder1.Padding = new System.Windows.Forms.Padding(2);
  1123. this.groupBoxWithBorder1.Size = new System.Drawing.Size(886, 84);
  1124. this.groupBoxWithBorder1.TabIndex = 19;
  1125. this.groupBoxWithBorder1.TabStop = false;
  1126. this.groupBoxWithBorder1.Text = "SN关联信息";
  1127. this.groupBoxWithBorder1.TextColor = System.Drawing.Color.Black;
  1128. //
  1129. // aftersnqty
  1130. //
  1131. this.aftersnqty.AutoSize = true;
  1132. this.aftersnqty.Font = new System.Drawing.Font("微软雅黑", 10F);
  1133. this.aftersnqty.Location = new System.Drawing.Point(696, 53);
  1134. this.aftersnqty.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1135. this.aftersnqty.Name = "aftersnqty";
  1136. this.aftersnqty.Size = new System.Drawing.Size(0, 20);
  1137. this.aftersnqty.TabIndex = 17;
  1138. //
  1139. // aftersnqty_label_
  1140. //
  1141. this.aftersnqty_label_.AutoSize = true;
  1142. this.aftersnqty_label_.Font = new System.Drawing.Font("微软雅黑", 10F);
  1143. this.aftersnqty_label_.Location = new System.Drawing.Point(613, 53);
  1144. this.aftersnqty_label_.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1145. this.aftersnqty_label_.Name = "aftersnqty_label_";
  1146. this.aftersnqty_label_.Size = new System.Drawing.Size(84, 20);
  1147. this.aftersnqty_label_.TabIndex = 16;
  1148. this.aftersnqty_label_.Text = "转换后SN数";
  1149. //
  1150. // AfterSnRange
  1151. //
  1152. this.AfterSnRange.AutoSize = true;
  1153. this.AfterSnRange.Font = new System.Drawing.Font("微软雅黑", 10F);
  1154. this.AfterSnRange.Location = new System.Drawing.Point(439, 53);
  1155. this.AfterSnRange.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1156. this.AfterSnRange.Name = "AfterSnRange";
  1157. this.AfterSnRange.Size = new System.Drawing.Size(0, 20);
  1158. this.AfterSnRange.TabIndex = 15;
  1159. //
  1160. // AfterSnRange_label_
  1161. //
  1162. this.AfterSnRange_label_.AutoSize = true;
  1163. this.AfterSnRange_label_.Font = new System.Drawing.Font("微软雅黑", 10F);
  1164. this.AfterSnRange_label_.Location = new System.Drawing.Point(333, 53);
  1165. this.AfterSnRange_label_.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1166. this.AfterSnRange_label_.Name = "AfterSnRange_label_";
  1167. this.AfterSnRange_label_.Size = new System.Drawing.Size(98, 20);
  1168. this.AfterSnRange_label_.TabIndex = 14;
  1169. this.AfterSnRange_label_.Text = "转换后SN范围";
  1170. //
  1171. // beforesnqty
  1172. //
  1173. this.beforesnqty.AutoSize = true;
  1174. this.beforesnqty.Font = new System.Drawing.Font("微软雅黑", 10F);
  1175. this.beforesnqty.Location = new System.Drawing.Point(696, 21);
  1176. this.beforesnqty.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1177. this.beforesnqty.Name = "beforesnqty";
  1178. this.beforesnqty.Size = new System.Drawing.Size(0, 20);
  1179. this.beforesnqty.TabIndex = 13;
  1180. //
  1181. // beforesnqty_label_
  1182. //
  1183. this.beforesnqty_label_.AutoSize = true;
  1184. this.beforesnqty_label_.Font = new System.Drawing.Font("微软雅黑", 10F);
  1185. this.beforesnqty_label_.Location = new System.Drawing.Point(613, 21);
  1186. this.beforesnqty_label_.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1187. this.beforesnqty_label_.Name = "beforesnqty_label_";
  1188. this.beforesnqty_label_.Size = new System.Drawing.Size(84, 20);
  1189. this.beforesnqty_label_.TabIndex = 12;
  1190. this.beforesnqty_label_.Text = "转换前SN数";
  1191. //
  1192. // BeforeSnRange
  1193. //
  1194. this.BeforeSnRange.AutoSize = true;
  1195. this.BeforeSnRange.Font = new System.Drawing.Font("微软雅黑", 10F);
  1196. this.BeforeSnRange.Location = new System.Drawing.Point(135, 53);
  1197. this.BeforeSnRange.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1198. this.BeforeSnRange.Name = "BeforeSnRange";
  1199. this.BeforeSnRange.Size = new System.Drawing.Size(0, 20);
  1200. this.BeforeSnRange.TabIndex = 11;
  1201. //
  1202. // BeforeSnRange_label_label
  1203. //
  1204. this.BeforeSnRange_label_label.AutoSize = true;
  1205. this.BeforeSnRange_label_label.Font = new System.Drawing.Font("微软雅黑", 10F);
  1206. this.BeforeSnRange_label_label.Location = new System.Drawing.Point(29, 53);
  1207. this.BeforeSnRange_label_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1208. this.BeforeSnRange_label_label.Name = "BeforeSnRange_label_label";
  1209. this.BeforeSnRange_label_label.Size = new System.Drawing.Size(98, 20);
  1210. this.BeforeSnRange_label_label.TabIndex = 10;
  1211. this.BeforeSnRange_label_label.Text = "转换前SN范围";
  1212. //
  1213. // IMEINum
  1214. //
  1215. this.IMEINum.AutoSize = true;
  1216. this.IMEINum.Font = new System.Drawing.Font("微软雅黑", 10F);
  1217. this.IMEINum.Location = new System.Drawing.Point(523, 21);
  1218. this.IMEINum.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1219. this.IMEINum.Name = "IMEINum";
  1220. this.IMEINum.Size = new System.Drawing.Size(0, 20);
  1221. this.IMEINum.TabIndex = 9;
  1222. //
  1223. // label3_label_label
  1224. //
  1225. this.label3_label_label.AutoSize = true;
  1226. this.label3_label_label.Font = new System.Drawing.Font("微软雅黑", 10F);
  1227. this.label3_label_label.Location = new System.Drawing.Point(416, 21);
  1228. this.label3_label_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1229. this.label3_label_label.Name = "label3_label_label";
  1230. this.label3_label_label.Size = new System.Drawing.Size(109, 20);
  1231. this.label3_label_label.TabIndex = 8;
  1232. this.label3_label_label.Text = "已导入IMEI数量";
  1233. //
  1234. // BTNum
  1235. //
  1236. this.BTNum.AutoSize = true;
  1237. this.BTNum.Font = new System.Drawing.Font("微软雅黑", 10F);
  1238. this.BTNum.Location = new System.Drawing.Point(325, 21);
  1239. this.BTNum.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1240. this.BTNum.Name = "BTNum";
  1241. this.BTNum.Size = new System.Drawing.Size(0, 20);
  1242. this.BTNum.TabIndex = 7;
  1243. //
  1244. // label13_label_label
  1245. //
  1246. this.label13_label_label.AutoSize = true;
  1247. this.label13_label_label.Font = new System.Drawing.Font("微软雅黑", 10F);
  1248. this.label13_label_label.Location = new System.Drawing.Point(226, 21);
  1249. this.label13_label_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1250. this.label13_label_label.Name = "label13_label_label";
  1251. this.label13_label_label.Size = new System.Drawing.Size(96, 20);
  1252. this.label13_label_label.TabIndex = 6;
  1253. this.label13_label_label.Text = "已导入BT数量";
  1254. //
  1255. // MacNum
  1256. //
  1257. this.MacNum.AutoSize = true;
  1258. this.MacNum.Font = new System.Drawing.Font("微软雅黑", 10F);
  1259. this.MacNum.Location = new System.Drawing.Point(135, 21);
  1260. this.MacNum.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1261. this.MacNum.Name = "MacNum";
  1262. this.MacNum.Size = new System.Drawing.Size(0, 20);
  1263. this.MacNum.TabIndex = 5;
  1264. //
  1265. // Mac_label_label
  1266. //
  1267. this.Mac_label_label.AutoSize = true;
  1268. this.Mac_label_label.Font = new System.Drawing.Font("微软雅黑", 10F);
  1269. this.Mac_label_label.Location = new System.Drawing.Point(29, 21);
  1270. this.Mac_label_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1271. this.Mac_label_label.Name = "Mac_label_label";
  1272. this.Mac_label_label.Size = new System.Drawing.Size(108, 20);
  1273. this.Mac_label_label.TabIndex = 4;
  1274. this.Mac_label_label.Text = "已导入Mac数量";
  1275. //
  1276. // Product
  1277. //
  1278. this.Product.BorderColor = System.Drawing.Color.Black;
  1279. this.Product.Controls.Add(this.pr_cartonweight);
  1280. this.Product.Controls.Add(this.pr_cartonweight_label);
  1281. this.Product.Controls.Add(this.pr_colorboxweight);
  1282. this.Product.Controls.Add(this.pr_colorboxweight_label);
  1283. this.Product.Controls.Add(this.pr_agingtime);
  1284. this.Product.Controls.Add(this.pr_agingtime_label);
  1285. this.Product.Controls.Add(this.pr_outboxinnerqty);
  1286. this.Product.Controls.Add(this.pr_outboxinnerqty_label);
  1287. this.Product.Controls.Add(this.pr_sendchecktype);
  1288. this.Product.Controls.Add(this.pr_sendchecktype_label);
  1289. this.Product.Controls.Add(this.pr_detail);
  1290. this.Product.Controls.Add(this.pr_detail_label);
  1291. this.Product.Controls.Add(this.pr_code);
  1292. this.Product.Controls.Add(this.pr_code_label);
  1293. this.Product.Location = new System.Drawing.Point(31, 132);
  1294. this.Product.Margin = new System.Windows.Forms.Padding(2);
  1295. this.Product.Name = "Product";
  1296. this.Product.Padding = new System.Windows.Forms.Padding(2);
  1297. this.Product.Size = new System.Drawing.Size(886, 84);
  1298. this.Product.TabIndex = 18;
  1299. this.Product.TabStop = false;
  1300. this.Product.Text = "产品信息";
  1301. this.Product.TextColor = System.Drawing.Color.Black;
  1302. //
  1303. // pr_cartonweight
  1304. //
  1305. this.pr_cartonweight.AutoSize = true;
  1306. this.pr_cartonweight.Font = new System.Drawing.Font("微软雅黑", 10F);
  1307. this.pr_cartonweight.Location = new System.Drawing.Point(500, 53);
  1308. this.pr_cartonweight.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1309. this.pr_cartonweight.Name = "pr_cartonweight";
  1310. this.pr_cartonweight.Size = new System.Drawing.Size(0, 20);
  1311. this.pr_cartonweight.TabIndex = 17;
  1312. //
  1313. // pr_cartonweight_label
  1314. //
  1315. this.pr_cartonweight_label.AutoSize = true;
  1316. this.pr_cartonweight_label.Font = new System.Drawing.Font("微软雅黑", 10F);
  1317. this.pr_cartonweight_label.Location = new System.Drawing.Point(416, 53);
  1318. this.pr_cartonweight_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1319. this.pr_cartonweight_label.Name = "pr_cartonweight_label";
  1320. this.pr_cartonweight_label.Size = new System.Drawing.Size(79, 20);
  1321. this.pr_cartonweight_label.TabIndex = 16;
  1322. this.pr_cartonweight_label.Text = "卡通箱重量";
  1323. //
  1324. // pr_colorboxweight
  1325. //
  1326. this.pr_colorboxweight.AutoSize = true;
  1327. this.pr_colorboxweight.Font = new System.Drawing.Font("微软雅黑", 10F);
  1328. this.pr_colorboxweight.Location = new System.Drawing.Point(307, 53);
  1329. this.pr_colorboxweight.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1330. this.pr_colorboxweight.Name = "pr_colorboxweight";
  1331. this.pr_colorboxweight.Size = new System.Drawing.Size(0, 20);
  1332. this.pr_colorboxweight.TabIndex = 15;
  1333. //
  1334. // pr_colorboxweight_label
  1335. //
  1336. this.pr_colorboxweight_label.AutoSize = true;
  1337. this.pr_colorboxweight_label.Font = new System.Drawing.Font("微软雅黑", 10F);
  1338. this.pr_colorboxweight_label.Location = new System.Drawing.Point(226, 53);
  1339. this.pr_colorboxweight_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1340. this.pr_colorboxweight_label.Name = "pr_colorboxweight_label";
  1341. this.pr_colorboxweight_label.Size = new System.Drawing.Size(65, 20);
  1342. this.pr_colorboxweight_label.TabIndex = 14;
  1343. this.pr_colorboxweight_label.Text = "彩盒重量";
  1344. //
  1345. // pr_agingtime
  1346. //
  1347. this.pr_agingtime.AutoSize = true;
  1348. this.pr_agingtime.Font = new System.Drawing.Font("微软雅黑", 10F);
  1349. this.pr_agingtime.Location = new System.Drawing.Point(109, 53);
  1350. this.pr_agingtime.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1351. this.pr_agingtime.Name = "pr_agingtime";
  1352. this.pr_agingtime.Size = new System.Drawing.Size(0, 20);
  1353. this.pr_agingtime.TabIndex = 13;
  1354. //
  1355. // pr_agingtime_label
  1356. //
  1357. this.pr_agingtime_label.AutoSize = true;
  1358. this.pr_agingtime_label.Font = new System.Drawing.Font("微软雅黑", 10F);
  1359. this.pr_agingtime_label.Location = new System.Drawing.Point(29, 53);
  1360. this.pr_agingtime_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1361. this.pr_agingtime_label.Name = "pr_agingtime_label";
  1362. this.pr_agingtime_label.Size = new System.Drawing.Size(65, 20);
  1363. this.pr_agingtime_label.TabIndex = 12;
  1364. this.pr_agingtime_label.Text = "老化时长";
  1365. //
  1366. // pr_outboxinnerqty
  1367. //
  1368. this.pr_outboxinnerqty.AutoSize = true;
  1369. this.pr_outboxinnerqty.Font = new System.Drawing.Font("微软雅黑", 10F);
  1370. this.pr_outboxinnerqty.Location = new System.Drawing.Point(696, 22);
  1371. this.pr_outboxinnerqty.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1372. this.pr_outboxinnerqty.Name = "pr_outboxinnerqty";
  1373. this.pr_outboxinnerqty.Size = new System.Drawing.Size(0, 20);
  1374. this.pr_outboxinnerqty.TabIndex = 11;
  1375. //
  1376. // pr_outboxinnerqty_label
  1377. //
  1378. this.pr_outboxinnerqty_label.AutoSize = true;
  1379. this.pr_outboxinnerqty_label.Font = new System.Drawing.Font("微软雅黑", 10F);
  1380. this.pr_outboxinnerqty_label.Location = new System.Drawing.Point(613, 22);
  1381. this.pr_outboxinnerqty_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1382. this.pr_outboxinnerqty_label.Name = "pr_outboxinnerqty_label";
  1383. this.pr_outboxinnerqty_label.Size = new System.Drawing.Size(65, 20);
  1384. this.pr_outboxinnerqty_label.TabIndex = 10;
  1385. this.pr_outboxinnerqty_label.Text = "装箱容量";
  1386. //
  1387. // pr_sendchecktype
  1388. //
  1389. this.pr_sendchecktype.AutoSize = true;
  1390. this.pr_sendchecktype.Font = new System.Drawing.Font("微软雅黑", 10F);
  1391. this.pr_sendchecktype.Location = new System.Drawing.Point(500, 22);
  1392. this.pr_sendchecktype.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1393. this.pr_sendchecktype.Name = "pr_sendchecktype";
  1394. this.pr_sendchecktype.Size = new System.Drawing.Size(0, 20);
  1395. this.pr_sendchecktype.TabIndex = 9;
  1396. //
  1397. // pr_sendchecktype_label
  1398. //
  1399. this.pr_sendchecktype_label.AutoSize = true;
  1400. this.pr_sendchecktype_label.Font = new System.Drawing.Font("微软雅黑", 10F);
  1401. this.pr_sendchecktype_label.Location = new System.Drawing.Point(416, 22);
  1402. this.pr_sendchecktype_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1403. this.pr_sendchecktype_label.Name = "pr_sendchecktype_label";
  1404. this.pr_sendchecktype_label.Size = new System.Drawing.Size(65, 20);
  1405. this.pr_sendchecktype_label.TabIndex = 8;
  1406. this.pr_sendchecktype_label.Text = "送检类型";
  1407. //
  1408. // pr_detail
  1409. //
  1410. this.pr_detail.AutoSize = true;
  1411. this.pr_detail.Font = new System.Drawing.Font("微软雅黑", 10F);
  1412. this.pr_detail.Location = new System.Drawing.Point(307, 22);
  1413. this.pr_detail.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1414. this.pr_detail.Name = "pr_detail";
  1415. this.pr_detail.Size = new System.Drawing.Size(0, 20);
  1416. this.pr_detail.TabIndex = 7;
  1417. //
  1418. // pr_detail_label
  1419. //
  1420. this.pr_detail_label.AutoSize = true;
  1421. this.pr_detail_label.Font = new System.Drawing.Font("微软雅黑", 10F);
  1422. this.pr_detail_label.Location = new System.Drawing.Point(226, 22);
  1423. this.pr_detail_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1424. this.pr_detail_label.Name = "pr_detail_label";
  1425. this.pr_detail_label.Size = new System.Drawing.Size(65, 20);
  1426. this.pr_detail_label.TabIndex = 6;
  1427. this.pr_detail_label.Text = "产品名称";
  1428. //
  1429. // pr_code
  1430. //
  1431. this.pr_code.AutoSize = true;
  1432. this.pr_code.Font = new System.Drawing.Font("微软雅黑", 10F);
  1433. this.pr_code.Location = new System.Drawing.Point(109, 22);
  1434. this.pr_code.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1435. this.pr_code.Name = "pr_code";
  1436. this.pr_code.Size = new System.Drawing.Size(0, 20);
  1437. this.pr_code.TabIndex = 5;
  1438. //
  1439. // pr_code_label
  1440. //
  1441. this.pr_code_label.AutoSize = true;
  1442. this.pr_code_label.Font = new System.Drawing.Font("微软雅黑", 10F);
  1443. this.pr_code_label.Location = new System.Drawing.Point(29, 22);
  1444. this.pr_code_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1445. this.pr_code_label.Name = "pr_code_label";
  1446. this.pr_code_label.Size = new System.Drawing.Size(65, 20);
  1447. this.pr_code_label.TabIndex = 4;
  1448. this.pr_code_label.Text = "产品编号";
  1449. //
  1450. // MakeInf
  1451. //
  1452. this.MakeInf.BorderColor = System.Drawing.Color.Black;
  1453. this.MakeInf.Controls.Add(this.ma_unlimitageqty);
  1454. this.MakeInf.Controls.Add(this.ma_unlimitageqty_label);
  1455. this.MakeInf.Controls.Add(this.ma_bomversion);
  1456. this.MakeInf.Controls.Add(this.ma_bomversion_label);
  1457. this.MakeInf.Controls.Add(this.ma_qty);
  1458. this.MakeInf.Controls.Add(this.ma_qty_label);
  1459. this.MakeInf.Controls.Add(this.ma_softversion);
  1460. this.MakeInf.Controls.Add(this.ma_softversion_label);
  1461. this.MakeInf.Controls.Add(this.ma_wccode);
  1462. this.MakeInf.Controls.Add(this.ma_wccode_label);
  1463. this.MakeInf.Controls.Add(this.ma_custname);
  1464. this.MakeInf.Controls.Add(this.ma_custname_label);
  1465. this.MakeInf.Controls.Add(this.ma_salecode);
  1466. this.MakeInf.Controls.Add(this.ma_salecode_label);
  1467. this.MakeInf.Location = new System.Drawing.Point(31, 40);
  1468. this.MakeInf.Margin = new System.Windows.Forms.Padding(2);
  1469. this.MakeInf.Name = "MakeInf";
  1470. this.MakeInf.Padding = new System.Windows.Forms.Padding(2);
  1471. this.MakeInf.Size = new System.Drawing.Size(886, 84);
  1472. this.MakeInf.TabIndex = 3;
  1473. this.MakeInf.TabStop = false;
  1474. this.MakeInf.Text = "工单信息";
  1475. this.MakeInf.TextColor = System.Drawing.Color.Black;
  1476. //
  1477. // ma_unlimitageqty
  1478. //
  1479. this.ma_unlimitageqty.AutoSize = true;
  1480. this.ma_unlimitageqty.Font = new System.Drawing.Font("微软雅黑", 10F);
  1481. this.ma_unlimitageqty.Location = new System.Drawing.Point(500, 52);
  1482. this.ma_unlimitageqty.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1483. this.ma_unlimitageqty.Name = "ma_unlimitageqty";
  1484. this.ma_unlimitageqty.Size = new System.Drawing.Size(0, 20);
  1485. this.ma_unlimitageqty.TabIndex = 17;
  1486. //
  1487. // ma_unlimitageqty_label
  1488. //
  1489. this.ma_unlimitageqty_label.AutoSize = true;
  1490. this.ma_unlimitageqty_label.Font = new System.Drawing.Font("微软雅黑", 10F);
  1491. this.ma_unlimitageqty_label.Location = new System.Drawing.Point(416, 52);
  1492. this.ma_unlimitageqty_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1493. this.ma_unlimitageqty_label.Name = "ma_unlimitageqty_label";
  1494. this.ma_unlimitageqty_label.Size = new System.Drawing.Size(79, 20);
  1495. this.ma_unlimitageqty_label.TabIndex = 16;
  1496. this.ma_unlimitageqty_label.Text = "不限老化数";
  1497. //
  1498. // ma_bomversion
  1499. //
  1500. this.ma_bomversion.AutoSize = true;
  1501. this.ma_bomversion.Font = new System.Drawing.Font("微软雅黑", 10F);
  1502. this.ma_bomversion.Location = new System.Drawing.Point(307, 52);
  1503. this.ma_bomversion.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1504. this.ma_bomversion.Name = "ma_bomversion";
  1505. this.ma_bomversion.Size = new System.Drawing.Size(0, 20);
  1506. this.ma_bomversion.TabIndex = 15;
  1507. //
  1508. // ma_bomversion_label
  1509. //
  1510. this.ma_bomversion_label.AutoSize = true;
  1511. this.ma_bomversion_label.Font = new System.Drawing.Font("微软雅黑", 10F);
  1512. this.ma_bomversion_label.Location = new System.Drawing.Point(226, 52);
  1513. this.ma_bomversion_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1514. this.ma_bomversion_label.Name = "ma_bomversion_label";
  1515. this.ma_bomversion_label.Size = new System.Drawing.Size(71, 20);
  1516. this.ma_bomversion_label.TabIndex = 14;
  1517. this.ma_bomversion_label.Text = "BOM版本";
  1518. //
  1519. // ma_qty
  1520. //
  1521. this.ma_qty.AutoSize = true;
  1522. this.ma_qty.Font = new System.Drawing.Font("微软雅黑", 10F);
  1523. this.ma_qty.Location = new System.Drawing.Point(109, 52);
  1524. this.ma_qty.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1525. this.ma_qty.Name = "ma_qty";
  1526. this.ma_qty.Size = new System.Drawing.Size(0, 20);
  1527. this.ma_qty.TabIndex = 13;
  1528. //
  1529. // ma_qty_label
  1530. //
  1531. this.ma_qty_label.AutoSize = true;
  1532. this.ma_qty_label.Font = new System.Drawing.Font("微软雅黑", 10F);
  1533. this.ma_qty_label.Location = new System.Drawing.Point(29, 52);
  1534. this.ma_qty_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1535. this.ma_qty_label.Name = "ma_qty_label";
  1536. this.ma_qty_label.Size = new System.Drawing.Size(65, 20);
  1537. this.ma_qty_label.TabIndex = 12;
  1538. this.ma_qty_label.Text = "工单数量";
  1539. //
  1540. // ma_softversion
  1541. //
  1542. this.ma_softversion.AutoSize = true;
  1543. this.ma_softversion.Font = new System.Drawing.Font("微软雅黑", 10F);
  1544. this.ma_softversion.Location = new System.Drawing.Point(696, 21);
  1545. this.ma_softversion.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1546. this.ma_softversion.Name = "ma_softversion";
  1547. this.ma_softversion.Size = new System.Drawing.Size(0, 20);
  1548. this.ma_softversion.TabIndex = 11;
  1549. //
  1550. // ma_softversion_label
  1551. //
  1552. this.ma_softversion_label.AutoSize = true;
  1553. this.ma_softversion_label.Font = new System.Drawing.Font("微软雅黑", 10F);
  1554. this.ma_softversion_label.Location = new System.Drawing.Point(613, 21);
  1555. this.ma_softversion_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1556. this.ma_softversion_label.Name = "ma_softversion_label";
  1557. this.ma_softversion_label.Size = new System.Drawing.Size(65, 20);
  1558. this.ma_softversion_label.TabIndex = 10;
  1559. this.ma_softversion_label.Text = "软件版本";
  1560. //
  1561. // ma_wccode
  1562. //
  1563. this.ma_wccode.AutoSize = true;
  1564. this.ma_wccode.Font = new System.Drawing.Font("微软雅黑", 10F);
  1565. this.ma_wccode.Location = new System.Drawing.Point(500, 21);
  1566. this.ma_wccode.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1567. this.ma_wccode.Name = "ma_wccode";
  1568. this.ma_wccode.Size = new System.Drawing.Size(0, 20);
  1569. this.ma_wccode.TabIndex = 9;
  1570. //
  1571. // ma_wccode_label
  1572. //
  1573. this.ma_wccode_label.AutoSize = true;
  1574. this.ma_wccode_label.Font = new System.Drawing.Font("微软雅黑", 10F);
  1575. this.ma_wccode_label.Location = new System.Drawing.Point(416, 21);
  1576. this.ma_wccode_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1577. this.ma_wccode_label.Name = "ma_wccode_label";
  1578. this.ma_wccode_label.Size = new System.Drawing.Size(65, 20);
  1579. this.ma_wccode_label.TabIndex = 8;
  1580. this.ma_wccode_label.Text = "工作中心";
  1581. //
  1582. // ma_custname
  1583. //
  1584. this.ma_custname.AutoSize = true;
  1585. this.ma_custname.Font = new System.Drawing.Font("微软雅黑", 10F);
  1586. this.ma_custname.Location = new System.Drawing.Point(307, 21);
  1587. this.ma_custname.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1588. this.ma_custname.Name = "ma_custname";
  1589. this.ma_custname.Size = new System.Drawing.Size(0, 20);
  1590. this.ma_custname.TabIndex = 7;
  1591. //
  1592. // ma_custname_label
  1593. //
  1594. this.ma_custname_label.AutoSize = true;
  1595. this.ma_custname_label.Font = new System.Drawing.Font("微软雅黑", 10F);
  1596. this.ma_custname_label.Location = new System.Drawing.Point(226, 21);
  1597. this.ma_custname_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1598. this.ma_custname_label.Name = "ma_custname_label";
  1599. this.ma_custname_label.Size = new System.Drawing.Size(65, 20);
  1600. this.ma_custname_label.TabIndex = 6;
  1601. this.ma_custname_label.Text = "客户名称";
  1602. //
  1603. // ma_salecode
  1604. //
  1605. this.ma_salecode.AutoSize = true;
  1606. this.ma_salecode.Font = new System.Drawing.Font("微软雅黑", 10F);
  1607. this.ma_salecode.Location = new System.Drawing.Point(109, 21);
  1608. this.ma_salecode.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1609. this.ma_salecode.Name = "ma_salecode";
  1610. this.ma_salecode.Size = new System.Drawing.Size(0, 20);
  1611. this.ma_salecode.TabIndex = 5;
  1612. //
  1613. // ma_salecode_label
  1614. //
  1615. this.ma_salecode_label.AutoSize = true;
  1616. this.ma_salecode_label.Font = new System.Drawing.Font("微软雅黑", 10F);
  1617. this.ma_salecode_label.Location = new System.Drawing.Point(29, 21);
  1618. this.ma_salecode_label.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1619. this.ma_salecode_label.Name = "ma_salecode_label";
  1620. this.ma_salecode_label.Size = new System.Drawing.Size(65, 20);
  1621. this.ma_salecode_label.TabIndex = 4;
  1622. this.ma_salecode_label.Text = "销售订单";
  1623. //
  1624. // Search
  1625. //
  1626. this.Search.AllPower = null;
  1627. this.Search.BackColor = System.Drawing.Color.Transparent;
  1628. this.Search.DownImage = ((System.Drawing.Image)(resources.GetObject("Search.DownImage")));
  1629. this.Search.Image = null;
  1630. this.Search.IsShowBorder = true;
  1631. this.Search.Location = new System.Drawing.Point(268, 9);
  1632. this.Search.Margin = new System.Windows.Forms.Padding(2);
  1633. this.Search.MoveImage = ((System.Drawing.Image)(resources.GetObject("Search.MoveImage")));
  1634. this.Search.Name = "Search";
  1635. this.Search.NormalImage = ((System.Drawing.Image)(resources.GetObject("Search.NormalImage")));
  1636. this.Search.Power = null;
  1637. this.Search.Size = new System.Drawing.Size(56, 22);
  1638. this.Search.TabIndex = 2;
  1639. this.Search.Text = "查询";
  1640. this.Search.UseVisualStyleBackColor = false;
  1641. this.Search.Click += new System.EventHandler(this.Search_Click);
  1642. //
  1643. // MakeCode
  1644. //
  1645. this.MakeCode.AllPower = null;
  1646. this.MakeCode.BackColor = System.Drawing.Color.White;
  1647. this.MakeCode.ID = null;
  1648. this.MakeCode.Location = new System.Drawing.Point(98, 9);
  1649. this.MakeCode.Margin = new System.Windows.Forms.Padding(2);
  1650. this.MakeCode.Name = "MakeCode";
  1651. this.MakeCode.Power = null;
  1652. this.MakeCode.Size = new System.Drawing.Size(148, 21);
  1653. this.MakeCode.Str = null;
  1654. this.MakeCode.Str1 = null;
  1655. this.MakeCode.Str2 = null;
  1656. this.MakeCode.TabIndex = 1;
  1657. //
  1658. // Query_MakeInf
  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(926, 867);
  1663. this.Controls.Add(this.label18_la_ll);
  1664. this.Controls.Add(this.label17_ll_);
  1665. this.Controls.Add(this.label16_lll_);
  1666. this.Controls.Add(this.Label);
  1667. this.Controls.Add(this.BOM);
  1668. this.Controls.Add(this.Carft);
  1669. this.Controls.Add(this.groupBoxWithBorder1);
  1670. this.Controls.Add(this.Product);
  1671. this.Controls.Add(this.MakeInf);
  1672. this.Controls.Add(this.Search);
  1673. this.Controls.Add(this.MakeCode);
  1674. this.Controls.Add(this.label1_lll_);
  1675. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  1676. this.Margin = new System.Windows.Forms.Padding(2);
  1677. this.Name = "Query_MakeInf";
  1678. this.Tag = "Query!MakeInf";
  1679. this.Text = "Query_MakeInf";
  1680. this.Load += new System.EventHandler(this.Query_MakeInf_Load);
  1681. this.SizeChanged += new System.EventHandler(this.Query_MakeInf_SizeChanged);
  1682. ((System.ComponentModel.ISupportInitialize)(this.Carft)).EndInit();
  1683. ((System.ComponentModel.ISupportInitialize)(this.BOM)).EndInit();
  1684. ((System.ComponentModel.ISupportInitialize)(this.Label)).EndInit();
  1685. this.groupBoxWithBorder1.ResumeLayout(true);
  1686. this.groupBoxWithBorder1.PerformLayout();
  1687. this.Product.ResumeLayout(true);
  1688. this.Product.PerformLayout();
  1689. this.MakeInf.ResumeLayout(true);
  1690. this.MakeInf.PerformLayout();
  1691. this.ResumeLayout(true);
  1692. this.PerformLayout();
  1693. }
  1694. #endregion
  1695. private System.Windows.Forms.Label label1_lll_;
  1696. private CustomControl.TextBoxWithIcon.SnCollectionBox MakeCode;
  1697. private CustomControl.ButtonUtil.NormalButton Search;
  1698. private CustomControl.GroupBoxWithBorder.GroupBoxWithBorder MakeInf;
  1699. private System.Windows.Forms.Label ma_softversion;
  1700. private System.Windows.Forms.Label ma_softversion_label;
  1701. private System.Windows.Forms.Label ma_wccode;
  1702. private System.Windows.Forms.Label ma_wccode_label;
  1703. private System.Windows.Forms.Label ma_custname;
  1704. private System.Windows.Forms.Label ma_custname_label;
  1705. private System.Windows.Forms.Label ma_salecode;
  1706. private System.Windows.Forms.Label ma_salecode_label;
  1707. private System.Windows.Forms.Label ma_bomversion;
  1708. private System.Windows.Forms.Label ma_bomversion_label;
  1709. private System.Windows.Forms.Label ma_qty;
  1710. private System.Windows.Forms.Label ma_qty_label;
  1711. private System.Windows.Forms.Label ma_unlimitageqty;
  1712. private System.Windows.Forms.Label ma_unlimitageqty_label;
  1713. private CustomControl.GroupBoxWithBorder.GroupBoxWithBorder Product;
  1714. private System.Windows.Forms.Label pr_cartonweight;
  1715. private System.Windows.Forms.Label pr_cartonweight_label;
  1716. private System.Windows.Forms.Label pr_colorboxweight;
  1717. private System.Windows.Forms.Label pr_colorboxweight_label;
  1718. private System.Windows.Forms.Label pr_agingtime;
  1719. private System.Windows.Forms.Label pr_agingtime_label;
  1720. private System.Windows.Forms.Label pr_outboxinnerqty;
  1721. private System.Windows.Forms.Label pr_outboxinnerqty_label;
  1722. private System.Windows.Forms.Label pr_sendchecktype;
  1723. private System.Windows.Forms.Label pr_sendchecktype_label;
  1724. private System.Windows.Forms.Label pr_detail;
  1725. private System.Windows.Forms.Label pr_detail_label;
  1726. private System.Windows.Forms.Label pr_code;
  1727. private System.Windows.Forms.Label pr_code_label;
  1728. private CustomControl.GroupBoxWithBorder.GroupBoxWithBorder groupBoxWithBorder1;
  1729. private System.Windows.Forms.Label BTNum;
  1730. private System.Windows.Forms.Label label13_label_label;
  1731. private System.Windows.Forms.Label MacNum;
  1732. private System.Windows.Forms.Label Mac_label_label;
  1733. private System.Windows.Forms.DataGridView Carft;
  1734. private System.Windows.Forms.DataGridView BOM;
  1735. private System.Windows.Forms.DataGridView Label;
  1736. private System.Windows.Forms.Label label16_lll_;
  1737. private System.Windows.Forms.Label label17_ll_;
  1738. private System.Windows.Forms.Label label18_la_ll;
  1739. private System.Windows.Forms.DataGridViewTextBoxColumn SP_MOTHERCODE;
  1740. private System.Windows.Forms.DataGridViewTextBoxColumn SP_SONCODE;
  1741. private System.Windows.Forms.DataGridViewTextBoxColumn SP_STEPCODE;
  1742. private System.Windows.Forms.DataGridViewTextBoxColumn SP_REPCODE;
  1743. private System.Windows.Forms.DataGridViewTextBoxColumn SP_TYPE;
  1744. private System.Windows.Forms.DataGridViewTextBoxColumn SP_DESCRIPTION;
  1745. private System.Windows.Forms.DataGridViewTextBoxColumn SP_DETNO;
  1746. private System.Windows.Forms.DataGridViewTextBoxColumn SP_PREFIX;
  1747. private System.Windows.Forms.DataGridViewTextBoxColumn SP_TRACEKIND;
  1748. private System.Windows.Forms.DataGridViewTextBoxColumn SP_LENGTH;
  1749. private System.Windows.Forms.DataGridViewTextBoxColumn SP_ONEUSEQTY;
  1750. private System.Windows.Forms.DataGridViewTextBoxColumn SP_UPDATEMAN;
  1751. private System.Windows.Forms.DataGridViewTextBoxColumn SP_UPDATEDATE;
  1752. private System.Windows.Forms.DataGridViewTextBoxColumn LA_CODE;
  1753. private System.Windows.Forms.DataGridViewTextBoxColumn LA_NAME;
  1754. private System.Windows.Forms.DataGridViewTextBoxColumn LA_STATUS;
  1755. private System.Windows.Forms.DataGridViewTextBoxColumn LA_INDATE;
  1756. private System.Windows.Forms.DataGridViewTextBoxColumn LA_INMAN;
  1757. private System.Windows.Forms.DataGridViewTextBoxColumn LA_PRINTNOS;
  1758. private System.Windows.Forms.DataGridViewTextBoxColumn LA_URL;
  1759. private System.Windows.Forms.DataGridViewTextBoxColumn LA_ISDEFAULT;
  1760. private System.Windows.Forms.DataGridViewTextBoxColumn LA_TEMPLATETYPE;
  1761. private System.Windows.Forms.DataGridViewTextBoxColumn LA_SOFTTYPE;
  1762. private System.Windows.Forms.DataGridViewTextBoxColumn LA_PRODCODE;
  1763. private System.Windows.Forms.DataGridViewTextBoxColumn CD_STEPNO;
  1764. private System.Windows.Forms.DataGridViewCheckBoxColumn CD_IFINPUT;
  1765. private System.Windows.Forms.DataGridViewCheckBoxColumn CD_IFOUTPUT;
  1766. private System.Windows.Forms.DataGridViewCheckBoxColumn CD_IFTEST;
  1767. private System.Windows.Forms.DataGridViewCheckBoxColumn CD_IFSNCHANGE;
  1768. private System.Windows.Forms.DataGridViewCheckBoxColumn CD_IFOQC;
  1769. private System.Windows.Forms.DataGridViewCheckBoxColumn CD_IFPACK;
  1770. private System.Windows.Forms.DataGridViewCheckBoxColumn CD_IFREPAIR;
  1771. private System.Windows.Forms.DataGridViewCheckBoxColumn CD_IFOUTLINE;
  1772. private System.Windows.Forms.DataGridViewCheckBoxColumn CD_IFSMTINOUT;
  1773. private System.Windows.Forms.DataGridViewCheckBoxColumn CD_IFSPC;
  1774. private System.Windows.Forms.DataGridViewCheckBoxColumn CD_IFREDUCE;
  1775. private System.Windows.Forms.DataGridViewCheckBoxColumn CD_IFMIDFINISH;
  1776. private System.Windows.Forms.DataGridViewCheckBoxColumn CD_IFMIDINPUT;
  1777. private System.Windows.Forms.DataGridViewCheckBoxColumn CD_IFBURNIN;
  1778. private System.Windows.Forms.DataGridViewCheckBoxColumn CD_IFBURNOUT;
  1779. private System.Windows.Forms.DataGridViewCheckBoxColumn CD_IFWEIGH;
  1780. private System.Windows.Forms.DataGridViewCheckBoxColumn CD_FIRSTSTEP;
  1781. private System.Windows.Forms.DataGridViewCheckBoxColumn CD_IFOFFLINE;
  1782. private System.Windows.Forms.DataGridViewTextBoxColumn CD_DETNO;
  1783. private System.Windows.Forms.DataGridViewTextBoxColumn CD_STEPCODE;
  1784. private System.Windows.Forms.DataGridViewTextBoxColumn CD_STEPNAME;
  1785. private System.Windows.Forms.DataGridViewTextBoxColumn CD_NEXTSTEPCODE;
  1786. private System.Windows.Forms.DataGridViewTextBoxColumn CD_NEXTSTEPNAME;
  1787. private System.Windows.Forms.DataGridViewTextBoxColumn CD_TABLE;
  1788. private System.Windows.Forms.Label IMEINum;
  1789. private System.Windows.Forms.Label label3_label_label;
  1790. private System.Windows.Forms.Label BeforeSnRange_label_label;
  1791. private System.Windows.Forms.Label BeforeSnRange;
  1792. private System.Windows.Forms.Label beforesnqty_label_;
  1793. private System.Windows.Forms.Label beforesnqty;
  1794. private System.Windows.Forms.Label AfterSnRange;
  1795. private System.Windows.Forms.Label AfterSnRange_label_;
  1796. private System.Windows.Forms.Label aftersnqty;
  1797. private System.Windows.Forms.Label aftersnqty_label_;
  1798. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn1;
  1799. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn1;
  1800. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn2;
  1801. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn3;
  1802. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn4;
  1803. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn5;
  1804. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn6;
  1805. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn7;
  1806. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn8;
  1807. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn9;
  1808. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn10;
  1809. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn11;
  1810. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn12;
  1811. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn13;
  1812. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn14;
  1813. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn15;
  1814. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn16;
  1815. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn17;
  1816. private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn18;
  1817. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn2;
  1818. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
  1819. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn4;
  1820. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn5;
  1821. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn6;
  1822. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn7;
  1823. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn8;
  1824. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn9;
  1825. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn10;
  1826. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn11;
  1827. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn12;
  1828. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn13;
  1829. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn14;
  1830. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn15;
  1831. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn16;
  1832. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn17;
  1833. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn18;
  1834. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn19;
  1835. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn20;
  1836. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn21;
  1837. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn22;
  1838. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn23;
  1839. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn24;
  1840. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn25;
  1841. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn26;
  1842. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn27;
  1843. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn28;
  1844. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn29;
  1845. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn30;
  1846. private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn31;
  1847. }
  1848. }