F_MST_0502.Designer.cs 87 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878
  1. namespace Dongke.IBOSS.PRD.Client.SystemModule
  2. {
  3. partial class F_MST_0502
  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. this.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(F_MST_0502));
  30. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  31. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
  32. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
  33. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
  34. this.odlgFile = new System.Windows.Forms.OpenFileDialog();
  35. this.ilPic = new System.Windows.Forms.ImageList(this.components);
  36. this.lvPic = new System.Windows.Forms.ListView();
  37. this.btnCancel = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Button();
  38. this.btnSave = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Button();
  39. this.lblPhoto = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  40. this.txtRemarks = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
  41. this.cbValueFlag = new Dongke.IBOSS.PRD.Basics.BaseControls.C_CheckBox();
  42. this.cbCeaseFlag = new Dongke.IBOSS.PRD.Basics.BaseControls.C_CheckBox();
  43. this.txtProductionCycle = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TXT_Digital();
  44. this.txtGlazeWeight = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TXT_Digital();
  45. this.txtMudWeight = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TXT_Digital();
  46. this.txtGoodsModel = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
  47. this.txtGoodsSpecification = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
  48. this.txtGoodsName = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
  49. this.txtGoodsCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
  50. this.lblRemarks = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  51. this.lblProductionCycle = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  52. this.lblGlazeWeight = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  53. this.lblMudWeight = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  54. this.lblGlazeTypeID = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  55. this.lblGoodsModel = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  56. this.lblGoodsSpecification = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  57. this.lblGoodsName = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  58. this.lblGoodsCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  59. this.lblLusterwareWeight = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  60. this.txtLusterwareWeight = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TXT_Digital();
  61. this.btnDelete = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Button();
  62. this.btnUpload = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Button();
  63. this.dtpStartingDate = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DateTimePicker();
  64. this.c_Label1 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  65. this.c_Label2 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  66. this.txtMouldWeight = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TXT_Digital();
  67. this.c_Label3 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  68. this.c_Label4 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  69. this.txtMouldCost = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TXT_Digital();
  70. this.chkScrapSumFlag = new Dongke.IBOSS.PRD.Basics.BaseControls.C_CheckBox();
  71. this.lblGoodsType = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  72. this.lblMouldMaterialCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  73. this.lblWaterLabelCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  74. this.lblMouldOutputCount = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  75. this.lblStandardGroutingNum = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  76. this.txtWaterLabelCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
  77. this.txtMouldMaterialCode = new Dongke.IBOSS.PRD.Basics.BaseControls.C_TextBox();
  78. this.c_Label5 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  79. this.tabControl1 = new System.Windows.Forms.TabControl();
  80. this.tabPage1 = new System.Windows.Forms.TabPage();
  81. this.ddlMudStoreType = new Dongke.WinForm.Controls.FtcFilterComboBox();
  82. this.lblMudStoreType = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  83. this.ddlGlazeTypeID = new Dongke.WinForm.Controls.FtcFilterComboBox();
  84. this.groupBox2 = new System.Windows.Forms.GroupBox();
  85. this.txtMouldOutputCount = new Dongke.WinForm.Controls.TxtNumerical();
  86. this.txtStandardGroutingSum = new Dongke.WinForm.Controls.TxtNumerical();
  87. this.c_Label7 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  88. this.txtStandardGroutingNum = new Dongke.WinForm.Controls.TxtNumerical();
  89. this.scbGoodsType = new Dongke.IBOSS.PRD.Client.Controls.SearchBox.ScbGoodsType();
  90. this.txtSEATCOVERCODE = new Dongke.WinForm.Controls.TxtNumerical();
  91. this.c_Label8 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  92. this.txtReservedDays = new Dongke.WinForm.Controls.TxtNumerical();
  93. this.lblLabel10 = new Dongke.WinForm.Controls.LblLabel();
  94. this.lblLabel9 = new Dongke.WinForm.Controls.LblLabel();
  95. this.txtUnitPrice = new Dongke.WinForm.Controls.TxtNumerical();
  96. this.txtPlateLimitNum1 = new Dongke.WinForm.Controls.TxtNumerical();
  97. this.lblLabel3 = new Dongke.WinForm.Controls.LblLabel();
  98. this.txtSPM002 = new Dongke.WinForm.Controls.TxtNumerical();
  99. this.lblLabel1 = new Dongke.WinForm.Controls.LblLabel();
  100. this.lblLabel2 = new Dongke.WinForm.Controls.LblLabel();
  101. this.txtSPM001 = new Dongke.WinForm.Controls.TxtNumerical();
  102. this.tabPage2 = new System.Windows.Forms.TabPage();
  103. this.dgvGoodsSap = new Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView();
  104. this.LogoID = new System.Windows.Forms.DataGridViewTextBoxColumn();
  105. this.logoName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  106. this.colmaterialcode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  107. this.colmaterialremark = new System.Windows.Forms.DataGridViewTextBoxColumn();
  108. this.colWaterLabelCode = new System.Windows.Forms.DataGridViewTextBoxColumn();
  109. this.colPlateLimitNum = new System.Windows.Forms.DataGridViewTextBoxColumn();
  110. this.colValueflag = new System.Windows.Forms.DataGridViewCheckBoxColumn();
  111. this.panel1 = new System.Windows.Forms.Panel();
  112. this.txtPlateLimitNum = new Dongke.WinForm.Controls.TxtNumerical();
  113. this.c_Label9 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  114. this.scbSAPCode2 = new Dongke.IBOSS.PRD.Client.Controls.SearchBox.ScbSAPCode();
  115. this.c_Label6 = new Dongke.IBOSS.PRD.Basics.BaseControls.C_Label();
  116. this.lblLabel12 = new Dongke.WinForm.Controls.LblLabel();
  117. this.lblLabel11 = new Dongke.WinForm.Controls.LblLabel();
  118. this.txtSAPRemark = new Dongke.WinForm.Controls.TxtTextBox();
  119. this.txtSAPWaterLabelCode = new Dongke.WinForm.Controls.TxtTextBox();
  120. this.label1 = new System.Windows.Forms.Label();
  121. this.groupBox1 = new System.Windows.Forms.GroupBox();
  122. this.scbSAPCode1 = new Dongke.IBOSS.PRD.Client.Controls.SearchBox.ScbSAPCode();
  123. this.ftcLogo = new Dongke.WinForm.Controls.FtcFilterComboBox();
  124. this.lblLabel13 = new Dongke.WinForm.Controls.LblLabel();
  125. this.lblLabel8 = new Dongke.WinForm.Controls.LblLabel();
  126. this.txtCopies = new Dongke.WinForm.Controls.TxtNumerical();
  127. this.lblLabel7 = new Dongke.WinForm.Controls.LblLabel();
  128. this.txtPackageNum = new Dongke.WinForm.Controls.TxtTextBox();
  129. this.txtMaterialRemark = new Dongke.WinForm.Controls.TxtTextBox();
  130. this.lblLabel6 = new Dongke.WinForm.Controls.LblLabel();
  131. this.txtOutletDistance = new Dongke.WinForm.Controls.TxtCodeNo();
  132. this.lblLabel5 = new Dongke.WinForm.Controls.LblLabel();
  133. this.lblLabel4 = new Dongke.WinForm.Controls.LblLabel();
  134. this.txtSAPCode = new Dongke.WinForm.Controls.TxtCodeNo();
  135. this.txtMaterialCode = new Dongke.WinForm.Controls.TxtCodeNo();
  136. this.chkGLT = new Dongke.IBOSS.PRD.Basics.BaseControls.C_CheckBox();
  137. this.cbGLTDetail = new System.Windows.Forms.ComboBox();
  138. this.cbSecurityCodeBindFlag = new Dongke.IBOSS.PRD.Basics.BaseControls.C_CheckBox();
  139. this.cbSecurityCodeCheckFlag = new Dongke.IBOSS.PRD.Basics.BaseControls.C_CheckBox();
  140. this.cbPlanFlag = new Dongke.IBOSS.PRD.Basics.BaseControls.C_CheckBox();
  141. this.tabControl1.SuspendLayout();
  142. this.tabPage1.SuspendLayout();
  143. this.groupBox2.SuspendLayout();
  144. this.tabPage2.SuspendLayout();
  145. ((System.ComponentModel.ISupportInitialize)(this.dgvGoodsSap)).BeginInit();
  146. this.panel1.SuspendLayout();
  147. this.groupBox1.SuspendLayout();
  148. this.SuspendLayout();
  149. //
  150. // odlgFile
  151. //
  152. this.odlgFile.FileName = "openFileDialog1";
  153. //
  154. // ilPic
  155. //
  156. this.ilPic.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
  157. this.ilPic.ImageSize = new System.Drawing.Size(16, 16);
  158. this.ilPic.TransparentColor = System.Drawing.Color.Transparent;
  159. //
  160. // lvPic
  161. //
  162. this.lvPic.HideSelection = false;
  163. this.lvPic.Location = new System.Drawing.Point(128, 397);
  164. this.lvPic.Name = "lvPic";
  165. this.lvPic.Size = new System.Drawing.Size(454, 99);
  166. this.lvPic.TabIndex = 41;
  167. this.lvPic.UseCompatibleStateImageBehavior = false;
  168. this.lvPic.Visible = false;
  169. this.lvPic.DoubleClick += new System.EventHandler(this.lvPic_DoubleClick);
  170. //
  171. // btnCancel
  172. //
  173. this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  174. this.btnCancel.BackColor = System.Drawing.Color.Transparent;
  175. this.btnCancel.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnCancel.BackgroundImage")));
  176. this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  177. this.btnCancel.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  178. this.btnCancel.ForeColor = System.Drawing.Color.White;
  179. this.btnCancel.Location = new System.Drawing.Point(687, 354);
  180. this.btnCancel.Name = "btnCancel";
  181. this.btnCancel.Size = new System.Drawing.Size(85, 30);
  182. this.btnCancel.TabIndex = 5;
  183. this.btnCancel.Text = "关闭";
  184. this.btnCancel.UseVisualStyleBackColor = false;
  185. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  186. //
  187. // btnSave
  188. //
  189. this.btnSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  190. this.btnSave.BackColor = System.Drawing.Color.Transparent;
  191. this.btnSave.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnSave.BackgroundImage")));
  192. this.btnSave.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  193. this.btnSave.ForeColor = System.Drawing.Color.White;
  194. this.btnSave.Location = new System.Drawing.Point(596, 354);
  195. this.btnSave.Name = "btnSave";
  196. this.btnSave.Size = new System.Drawing.Size(85, 30);
  197. this.btnSave.TabIndex = 4;
  198. this.btnSave.Text = "保存(&S)";
  199. this.btnSave.UseVisualStyleBackColor = false;
  200. this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
  201. //
  202. // lblPhoto
  203. //
  204. this.lblPhoto.AutoSize = true;
  205. this.lblPhoto.BackColor = System.Drawing.Color.Transparent;
  206. this.lblPhoto.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  207. this.lblPhoto.ForeColor = System.Drawing.SystemColors.ControlText;
  208. this.lblPhoto.Location = new System.Drawing.Point(69, 397);
  209. this.lblPhoto.Name = "lblPhoto";
  210. this.lblPhoto.Size = new System.Drawing.Size(53, 12);
  211. this.lblPhoto.TabIndex = 40;
  212. this.lblPhoto.Text = "产品图片";
  213. this.lblPhoto.Visible = false;
  214. //
  215. // txtRemarks
  216. //
  217. this.txtRemarks.BackColor = System.Drawing.SystemColors.Window;
  218. this.txtRemarks.BackgroundColor = System.Drawing.SystemColors.Window;
  219. this.txtRemarks.ErrorMessage = "";
  220. this.txtRemarks.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  221. this.txtRemarks.Location = new System.Drawing.Point(61, 170);
  222. this.txtRemarks.MaxLength = 500;
  223. this.txtRemarks.Multiline = true;
  224. this.txtRemarks.Name = "txtRemarks";
  225. this.txtRemarks.ScrollBars = System.Windows.Forms.ScrollBars.Both;
  226. this.txtRemarks.Size = new System.Drawing.Size(454, 143);
  227. this.txtRemarks.TabIndex = 29;
  228. //
  229. // cbValueFlag
  230. //
  231. this.cbValueFlag.AutoSize = true;
  232. this.cbValueFlag.Checked = true;
  233. this.cbValueFlag.CheckState = System.Windows.Forms.CheckState.Checked;
  234. this.cbValueFlag.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  235. this.cbValueFlag.Location = new System.Drawing.Point(68, 354);
  236. this.cbValueFlag.Name = "cbValueFlag";
  237. this.cbValueFlag.Size = new System.Drawing.Size(48, 16);
  238. this.cbValueFlag.TabIndex = 2;
  239. this.cbValueFlag.Text = "有效";
  240. this.cbValueFlag.UseVisualStyleBackColor = true;
  241. //
  242. // cbCeaseFlag
  243. //
  244. this.cbCeaseFlag.AutoSize = true;
  245. this.cbCeaseFlag.Checked = true;
  246. this.cbCeaseFlag.CheckState = System.Windows.Forms.CheckState.Checked;
  247. this.cbCeaseFlag.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  248. this.cbCeaseFlag.Location = new System.Drawing.Point(14, 354);
  249. this.cbCeaseFlag.Name = "cbCeaseFlag";
  250. this.cbCeaseFlag.Size = new System.Drawing.Size(48, 16);
  251. this.cbCeaseFlag.TabIndex = 1;
  252. this.cbCeaseFlag.Text = "在产";
  253. this.cbCeaseFlag.UseVisualStyleBackColor = true;
  254. //
  255. // txtProductionCycle
  256. //
  257. this.txtProductionCycle.AllowNegative = false;
  258. this.txtProductionCycle.BackColor = System.Drawing.SystemColors.Window;
  259. this.txtProductionCycle.BackgroundColor = System.Drawing.SystemColors.Window;
  260. this.txtProductionCycle.ErrorMessage = "";
  261. this.txtProductionCycle.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  262. this.txtProductionCycle.ImeMode = System.Windows.Forms.ImeMode.Off;
  263. this.txtProductionCycle.Location = new System.Drawing.Point(418, 7);
  264. this.txtProductionCycle.MaxLength = 10;
  265. this.txtProductionCycle.MaxValue = new decimal(new int[] {
  266. 999,
  267. 0,
  268. 0,
  269. 0});
  270. this.txtProductionCycle.MinValue = new decimal(new int[] {
  271. 0,
  272. 0,
  273. 0,
  274. 0});
  275. this.txtProductionCycle.Name = "txtProductionCycle";
  276. this.txtProductionCycle.Size = new System.Drawing.Size(100, 21);
  277. this.txtProductionCycle.TabIndex = 5;
  278. this.txtProductionCycle.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
  279. this.txtProductionCycle.TextValue = "";
  280. //
  281. // txtGlazeWeight
  282. //
  283. this.txtGlazeWeight.AllowNegative = false;
  284. this.txtGlazeWeight.BackColor = System.Drawing.SystemColors.Window;
  285. this.txtGlazeWeight.BackgroundColor = System.Drawing.SystemColors.Window;
  286. this.txtGlazeWeight.ErrorMessage = "";
  287. this.txtGlazeWeight.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  288. this.txtGlazeWeight.ImeMode = System.Windows.Forms.ImeMode.Off;
  289. this.txtGlazeWeight.Location = new System.Drawing.Point(418, 34);
  290. this.txtGlazeWeight.MaxLength = 10;
  291. this.txtGlazeWeight.MaxValue = new decimal(new int[] {
  292. 100000,
  293. 0,
  294. 0,
  295. 0});
  296. this.txtGlazeWeight.MinValue = new decimal(new int[] {
  297. 0,
  298. 0,
  299. 0,
  300. 0});
  301. this.txtGlazeWeight.Name = "txtGlazeWeight";
  302. this.txtGlazeWeight.Number = new System.Drawing.Point(5, 3);
  303. this.txtGlazeWeight.Size = new System.Drawing.Size(100, 21);
  304. this.txtGlazeWeight.TabIndex = 11;
  305. this.txtGlazeWeight.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
  306. this.txtGlazeWeight.TextValue = "";
  307. //
  308. // txtMudWeight
  309. //
  310. this.txtMudWeight.AllowNegative = false;
  311. this.txtMudWeight.BackColor = System.Drawing.SystemColors.Window;
  312. this.txtMudWeight.BackgroundColor = System.Drawing.SystemColors.Window;
  313. this.txtMudWeight.ErrorMessage = "";
  314. this.txtMudWeight.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  315. this.txtMudWeight.ImeMode = System.Windows.Forms.ImeMode.Off;
  316. this.txtMudWeight.Location = new System.Drawing.Point(418, 88);
  317. this.txtMudWeight.MaxLength = 10;
  318. this.txtMudWeight.MaxValue = new decimal(new int[] {
  319. 100000,
  320. 0,
  321. 0,
  322. 0});
  323. this.txtMudWeight.MinValue = new decimal(new int[] {
  324. 0,
  325. 0,
  326. 0,
  327. 0});
  328. this.txtMudWeight.Name = "txtMudWeight";
  329. this.txtMudWeight.Number = new System.Drawing.Point(5, 3);
  330. this.txtMudWeight.Size = new System.Drawing.Size(100, 21);
  331. this.txtMudWeight.TabIndex = 23;
  332. this.txtMudWeight.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
  333. this.txtMudWeight.TextValue = "";
  334. //
  335. // txtGoodsModel
  336. //
  337. this.txtGoodsModel.BackColor = System.Drawing.SystemColors.Window;
  338. this.txtGoodsModel.BackgroundColor = System.Drawing.SystemColors.Window;
  339. this.txtGoodsModel.ErrorMessage = "";
  340. this.txtGoodsModel.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  341. this.txtGoodsModel.Location = new System.Drawing.Point(229, 34);
  342. this.txtGoodsModel.MaxLength = 50;
  343. this.txtGoodsModel.Name = "txtGoodsModel";
  344. this.txtGoodsModel.Size = new System.Drawing.Size(100, 21);
  345. this.txtGoodsModel.TabIndex = 9;
  346. //
  347. // txtGoodsSpecification
  348. //
  349. this.txtGoodsSpecification.BackColor = System.Drawing.SystemColors.Window;
  350. this.txtGoodsSpecification.BackgroundColor = System.Drawing.SystemColors.Window;
  351. this.txtGoodsSpecification.ErrorMessage = "";
  352. this.txtGoodsSpecification.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  353. this.txtGoodsSpecification.Location = new System.Drawing.Point(229, 61);
  354. this.txtGoodsSpecification.MaxLength = 50;
  355. this.txtGoodsSpecification.Name = "txtGoodsSpecification";
  356. this.txtGoodsSpecification.Size = new System.Drawing.Size(100, 21);
  357. this.txtGoodsSpecification.TabIndex = 15;
  358. //
  359. // txtGoodsName
  360. //
  361. this.txtGoodsName.BackColor = System.Drawing.SystemColors.Window;
  362. this.txtGoodsName.BackgroundColor = System.Drawing.SystemColors.Window;
  363. this.txtGoodsName.ErrorMessage = "必须输入项目";
  364. this.txtGoodsName.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  365. this.txtGoodsName.Location = new System.Drawing.Point(229, 7);
  366. this.txtGoodsName.MaxLength = 20;
  367. this.txtGoodsName.Name = "txtGoodsName";
  368. this.txtGoodsName.Size = new System.Drawing.Size(100, 21);
  369. this.txtGoodsName.TabIndex = 3;
  370. //
  371. // txtGoodsCode
  372. //
  373. this.txtGoodsCode.BackColor = System.Drawing.Color.Yellow;
  374. this.txtGoodsCode.BackgroundColor = System.Drawing.SystemColors.Window;
  375. this.txtGoodsCode.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
  376. this.txtGoodsCode.ErrorMessage = "必须输入项目";
  377. this.txtGoodsCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  378. this.txtGoodsCode.HasError = true;
  379. this.txtGoodsCode.ImeMode = System.Windows.Forms.ImeMode.Off;
  380. this.txtGoodsCode.IsMustInput = true;
  381. this.txtGoodsCode.Location = new System.Drawing.Point(64, 7);
  382. this.txtGoodsCode.MaxLength = 50;
  383. this.txtGoodsCode.Name = "txtGoodsCode";
  384. this.txtGoodsCode.Size = new System.Drawing.Size(100, 21);
  385. this.txtGoodsCode.TabIndex = 1;
  386. //
  387. // lblRemarks
  388. //
  389. this.lblRemarks.AutoSize = true;
  390. this.lblRemarks.BackColor = System.Drawing.Color.Transparent;
  391. this.lblRemarks.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  392. this.lblRemarks.ForeColor = System.Drawing.SystemColors.ControlText;
  393. this.lblRemarks.Location = new System.Drawing.Point(26, 173);
  394. this.lblRemarks.Name = "lblRemarks";
  395. this.lblRemarks.Size = new System.Drawing.Size(29, 12);
  396. this.lblRemarks.TabIndex = 28;
  397. this.lblRemarks.Text = "备注";
  398. //
  399. // lblProductionCycle
  400. //
  401. this.lblProductionCycle.AutoSize = true;
  402. this.lblProductionCycle.BackColor = System.Drawing.Color.Transparent;
  403. this.lblProductionCycle.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  404. this.lblProductionCycle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  405. this.lblProductionCycle.IsMustInput = true;
  406. this.lblProductionCycle.Location = new System.Drawing.Point(335, 11);
  407. this.lblProductionCycle.Name = "lblProductionCycle";
  408. this.lblProductionCycle.Size = new System.Drawing.Size(77, 12);
  409. this.lblProductionCycle.TabIndex = 4;
  410. this.lblProductionCycle.Text = "生产周期(天)";
  411. //
  412. // lblGlazeWeight
  413. //
  414. this.lblGlazeWeight.AutoSize = true;
  415. this.lblGlazeWeight.BackColor = System.Drawing.Color.Transparent;
  416. this.lblGlazeWeight.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  417. this.lblGlazeWeight.ForeColor = System.Drawing.SystemColors.ControlText;
  418. this.lblGlazeWeight.Location = new System.Drawing.Point(335, 38);
  419. this.lblGlazeWeight.Name = "lblGlazeWeight";
  420. this.lblGlazeWeight.Size = new System.Drawing.Size(77, 12);
  421. this.lblGlazeWeight.TabIndex = 10;
  422. this.lblGlazeWeight.Text = "釉浆用量(KG)";
  423. //
  424. // lblMudWeight
  425. //
  426. this.lblMudWeight.AutoSize = true;
  427. this.lblMudWeight.BackColor = System.Drawing.Color.Transparent;
  428. this.lblMudWeight.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  429. this.lblMudWeight.ForeColor = System.Drawing.SystemColors.ControlText;
  430. this.lblMudWeight.Location = new System.Drawing.Point(335, 92);
  431. this.lblMudWeight.Name = "lblMudWeight";
  432. this.lblMudWeight.Size = new System.Drawing.Size(77, 12);
  433. this.lblMudWeight.TabIndex = 22;
  434. this.lblMudWeight.Text = "泥浆用量(KG)";
  435. //
  436. // lblGlazeTypeID
  437. //
  438. this.lblGlazeTypeID.AutoSize = true;
  439. this.lblGlazeTypeID.BackColor = System.Drawing.Color.Transparent;
  440. this.lblGlazeTypeID.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  441. this.lblGlazeTypeID.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  442. this.lblGlazeTypeID.IsMustInput = true;
  443. this.lblGlazeTypeID.Location = new System.Drawing.Point(5, 65);
  444. this.lblGlazeTypeID.Name = "lblGlazeTypeID";
  445. this.lblGlazeTypeID.Size = new System.Drawing.Size(53, 12);
  446. this.lblGlazeTypeID.TabIndex = 12;
  447. this.lblGlazeTypeID.Text = "釉料类别";
  448. //
  449. // lblGoodsModel
  450. //
  451. this.lblGoodsModel.AutoSize = true;
  452. this.lblGoodsModel.BackColor = System.Drawing.Color.Transparent;
  453. this.lblGoodsModel.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  454. this.lblGoodsModel.ForeColor = System.Drawing.SystemColors.ControlText;
  455. this.lblGoodsModel.Location = new System.Drawing.Point(170, 38);
  456. this.lblGoodsModel.Name = "lblGoodsModel";
  457. this.lblGoodsModel.Size = new System.Drawing.Size(53, 12);
  458. this.lblGoodsModel.TabIndex = 8;
  459. this.lblGoodsModel.Text = "产品型号";
  460. //
  461. // lblGoodsSpecification
  462. //
  463. this.lblGoodsSpecification.AutoSize = true;
  464. this.lblGoodsSpecification.BackColor = System.Drawing.Color.Transparent;
  465. this.lblGoodsSpecification.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  466. this.lblGoodsSpecification.ForeColor = System.Drawing.SystemColors.ControlText;
  467. this.lblGoodsSpecification.Location = new System.Drawing.Point(170, 65);
  468. this.lblGoodsSpecification.Name = "lblGoodsSpecification";
  469. this.lblGoodsSpecification.Size = new System.Drawing.Size(53, 12);
  470. this.lblGoodsSpecification.TabIndex = 14;
  471. this.lblGoodsSpecification.Text = "产品规格";
  472. //
  473. // lblGoodsName
  474. //
  475. this.lblGoodsName.AutoSize = true;
  476. this.lblGoodsName.BackColor = System.Drawing.Color.Transparent;
  477. this.lblGoodsName.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  478. this.lblGoodsName.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  479. this.lblGoodsName.IsMustInput = true;
  480. this.lblGoodsName.Location = new System.Drawing.Point(170, 11);
  481. this.lblGoodsName.Name = "lblGoodsName";
  482. this.lblGoodsName.Size = new System.Drawing.Size(53, 12);
  483. this.lblGoodsName.TabIndex = 2;
  484. this.lblGoodsName.Text = "产品名称";
  485. //
  486. // lblGoodsCode
  487. //
  488. this.lblGoodsCode.AutoSize = true;
  489. this.lblGoodsCode.BackColor = System.Drawing.Color.Transparent;
  490. this.lblGoodsCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  491. this.lblGoodsCode.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  492. this.lblGoodsCode.IsMustInput = true;
  493. this.lblGoodsCode.Location = new System.Drawing.Point(5, 11);
  494. this.lblGoodsCode.Name = "lblGoodsCode";
  495. this.lblGoodsCode.Size = new System.Drawing.Size(53, 12);
  496. this.lblGoodsCode.TabIndex = 0;
  497. this.lblGoodsCode.Text = "产品编码";
  498. //
  499. // lblLusterwareWeight
  500. //
  501. this.lblLusterwareWeight.AutoSize = true;
  502. this.lblLusterwareWeight.BackColor = System.Drawing.Color.Transparent;
  503. this.lblLusterwareWeight.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  504. this.lblLusterwareWeight.ForeColor = System.Drawing.SystemColors.ControlText;
  505. this.lblLusterwareWeight.Location = new System.Drawing.Point(335, 65);
  506. this.lblLusterwareWeight.Name = "lblLusterwareWeight";
  507. this.lblLusterwareWeight.Size = new System.Drawing.Size(77, 12);
  508. this.lblLusterwareWeight.TabIndex = 16;
  509. this.lblLusterwareWeight.Text = "光瓷重量(KG)";
  510. //
  511. // txtLusterwareWeight
  512. //
  513. this.txtLusterwareWeight.AllowNegative = false;
  514. this.txtLusterwareWeight.BackColor = System.Drawing.SystemColors.Window;
  515. this.txtLusterwareWeight.BackgroundColor = System.Drawing.SystemColors.Window;
  516. this.txtLusterwareWeight.ErrorMessage = "";
  517. this.txtLusterwareWeight.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  518. this.txtLusterwareWeight.ImeMode = System.Windows.Forms.ImeMode.Off;
  519. this.txtLusterwareWeight.Location = new System.Drawing.Point(418, 61);
  520. this.txtLusterwareWeight.MaxLength = 10;
  521. this.txtLusterwareWeight.MaxValue = new decimal(new int[] {
  522. 100000,
  523. 0,
  524. 0,
  525. 0});
  526. this.txtLusterwareWeight.MinValue = new decimal(new int[] {
  527. 0,
  528. 0,
  529. 0,
  530. 0});
  531. this.txtLusterwareWeight.Name = "txtLusterwareWeight";
  532. this.txtLusterwareWeight.Number = new System.Drawing.Point(5, 2);
  533. this.txtLusterwareWeight.Size = new System.Drawing.Size(100, 21);
  534. this.txtLusterwareWeight.TabIndex = 17;
  535. this.txtLusterwareWeight.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
  536. this.txtLusterwareWeight.TextValue = "";
  537. //
  538. // btnDelete
  539. //
  540. this.btnDelete.BackColor = System.Drawing.Color.Transparent;
  541. this.btnDelete.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnDelete.BackgroundImage")));
  542. this.btnDelete.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  543. this.btnDelete.ForeColor = System.Drawing.Color.White;
  544. this.btnDelete.Location = new System.Drawing.Point(3, 283);
  545. this.btnDelete.Name = "btnDelete";
  546. this.btnDelete.Size = new System.Drawing.Size(55, 30);
  547. this.btnDelete.TabIndex = 43;
  548. this.btnDelete.Text = "删除(&E)";
  549. this.btnDelete.UseVisualStyleBackColor = false;
  550. this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
  551. //
  552. // btnUpload
  553. //
  554. this.btnUpload.BackColor = System.Drawing.Color.Transparent;
  555. this.btnUpload.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnUpload.BackgroundImage")));
  556. this.btnUpload.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  557. this.btnUpload.ForeColor = System.Drawing.Color.White;
  558. this.btnUpload.Location = new System.Drawing.Point(3, 247);
  559. this.btnUpload.Name = "btnUpload";
  560. this.btnUpload.Size = new System.Drawing.Size(55, 30);
  561. this.btnUpload.TabIndex = 42;
  562. this.btnUpload.Text = "上传(&U)";
  563. this.btnUpload.UseVisualStyleBackColor = false;
  564. this.btnUpload.Click += new System.EventHandler(this.btnUpload_Click);
  565. //
  566. // dtpStartingDate
  567. //
  568. this.dtpStartingDate.CustomFormat = "yyyy-MM-dd";
  569. this.dtpStartingDate.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  570. this.dtpStartingDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
  571. this.dtpStartingDate.Location = new System.Drawing.Point(64, 88);
  572. this.dtpStartingDate.Name = "dtpStartingDate";
  573. this.dtpStartingDate.Size = new System.Drawing.Size(100, 21);
  574. this.dtpStartingDate.TabIndex = 19;
  575. //
  576. // c_Label1
  577. //
  578. this.c_Label1.AutoSize = true;
  579. this.c_Label1.BackColor = System.Drawing.Color.Transparent;
  580. this.c_Label1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  581. this.c_Label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  582. this.c_Label1.IsMustInput = true;
  583. this.c_Label1.Location = new System.Drawing.Point(5, 92);
  584. this.c_Label1.Name = "c_Label1";
  585. this.c_Label1.Size = new System.Drawing.Size(53, 12);
  586. this.c_Label1.TabIndex = 18;
  587. this.c_Label1.Text = "投产日期";
  588. //
  589. // c_Label2
  590. //
  591. this.c_Label2.AutoSize = true;
  592. this.c_Label2.BackColor = System.Drawing.Color.Transparent;
  593. this.c_Label2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  594. this.c_Label2.ForeColor = System.Drawing.SystemColors.ControlText;
  595. this.c_Label2.Location = new System.Drawing.Point(170, 92);
  596. this.c_Label2.Name = "c_Label2";
  597. this.c_Label2.Size = new System.Drawing.Size(53, 12);
  598. this.c_Label2.TabIndex = 20;
  599. this.c_Label2.Text = "产品单价";
  600. //
  601. // txtMouldWeight
  602. //
  603. this.txtMouldWeight.AllowNegative = false;
  604. this.txtMouldWeight.BackColor = System.Drawing.SystemColors.Window;
  605. this.txtMouldWeight.BackgroundColor = System.Drawing.SystemColors.Window;
  606. this.txtMouldWeight.ErrorMessage = "";
  607. this.txtMouldWeight.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  608. this.txtMouldWeight.ImeMode = System.Windows.Forms.ImeMode.Off;
  609. this.txtMouldWeight.Location = new System.Drawing.Point(62, 128);
  610. this.txtMouldWeight.MaxLength = 10;
  611. this.txtMouldWeight.MaxValue = new decimal(new int[] {
  612. 100000,
  613. 0,
  614. 0,
  615. 0});
  616. this.txtMouldWeight.MinValue = new decimal(new int[] {
  617. 0,
  618. 0,
  619. 0,
  620. 0});
  621. this.txtMouldWeight.Name = "txtMouldWeight";
  622. this.txtMouldWeight.Number = new System.Drawing.Point(5, 2);
  623. this.txtMouldWeight.Size = new System.Drawing.Size(164, 21);
  624. this.txtMouldWeight.TabIndex = 7;
  625. this.txtMouldWeight.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
  626. this.txtMouldWeight.TextValue = "";
  627. //
  628. // c_Label3
  629. //
  630. this.c_Label3.AutoSize = true;
  631. this.c_Label3.BackColor = System.Drawing.Color.Transparent;
  632. this.c_Label3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  633. this.c_Label3.ForeColor = System.Drawing.SystemColors.ControlText;
  634. this.c_Label3.Location = new System.Drawing.Point(6, 132);
  635. this.c_Label3.Name = "c_Label3";
  636. this.c_Label3.Size = new System.Drawing.Size(53, 12);
  637. this.c_Label3.TabIndex = 6;
  638. this.c_Label3.Text = "重量(KG)";
  639. //
  640. // c_Label4
  641. //
  642. this.c_Label4.AutoSize = true;
  643. this.c_Label4.BackColor = System.Drawing.Color.Transparent;
  644. this.c_Label4.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  645. this.c_Label4.ForeColor = System.Drawing.SystemColors.ControlText;
  646. this.c_Label4.Location = new System.Drawing.Point(6, 159);
  647. this.c_Label4.Name = "c_Label4";
  648. this.c_Label4.Size = new System.Drawing.Size(53, 12);
  649. this.c_Label4.TabIndex = 8;
  650. this.c_Label4.Text = "成本(元)";
  651. //
  652. // txtMouldCost
  653. //
  654. this.txtMouldCost.AllowNegative = false;
  655. this.txtMouldCost.BackColor = System.Drawing.SystemColors.Window;
  656. this.txtMouldCost.BackgroundColor = System.Drawing.SystemColors.Window;
  657. this.txtMouldCost.ErrorMessage = "";
  658. this.txtMouldCost.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  659. this.txtMouldCost.ImeMode = System.Windows.Forms.ImeMode.Off;
  660. this.txtMouldCost.Location = new System.Drawing.Point(62, 155);
  661. this.txtMouldCost.MaxLength = 10;
  662. this.txtMouldCost.MaxValue = new decimal(new int[] {
  663. 100000,
  664. 0,
  665. 0,
  666. 0});
  667. this.txtMouldCost.MinValue = new decimal(new int[] {
  668. 0,
  669. 0,
  670. 0,
  671. 0});
  672. this.txtMouldCost.Name = "txtMouldCost";
  673. this.txtMouldCost.Number = new System.Drawing.Point(5, 2);
  674. this.txtMouldCost.Size = new System.Drawing.Size(164, 21);
  675. this.txtMouldCost.TabIndex = 9;
  676. this.txtMouldCost.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
  677. this.txtMouldCost.TextValue = "";
  678. //
  679. // chkScrapSumFlag
  680. //
  681. this.chkScrapSumFlag.AutoSize = true;
  682. this.chkScrapSumFlag.Checked = true;
  683. this.chkScrapSumFlag.CheckState = System.Windows.Forms.CheckState.Checked;
  684. this.chkScrapSumFlag.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  685. this.chkScrapSumFlag.Location = new System.Drawing.Point(122, 354);
  686. this.chkScrapSumFlag.Name = "chkScrapSumFlag";
  687. this.chkScrapSumFlag.Size = new System.Drawing.Size(156, 16);
  688. this.chkScrapSumFlag.TabIndex = 3;
  689. this.chkScrapSumFlag.Text = "损失统计(废品损失表用)";
  690. this.chkScrapSumFlag.UseVisualStyleBackColor = true;
  691. //
  692. // lblGoodsType
  693. //
  694. this.lblGoodsType.AutoSize = true;
  695. this.lblGoodsType.BackColor = System.Drawing.SystemColors.Control;
  696. this.lblGoodsType.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  697. this.lblGoodsType.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  698. this.lblGoodsType.IsMustInput = true;
  699. this.lblGoodsType.Location = new System.Drawing.Point(5, 38);
  700. this.lblGoodsType.Name = "lblGoodsType";
  701. this.lblGoodsType.Size = new System.Drawing.Size(53, 12);
  702. this.lblGoodsType.TabIndex = 6;
  703. this.lblGoodsType.Text = "产品类别";
  704. //
  705. // lblMouldMaterialCode
  706. //
  707. this.lblMouldMaterialCode.AutoSize = true;
  708. this.lblMouldMaterialCode.BackColor = System.Drawing.Color.Transparent;
  709. this.lblMouldMaterialCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  710. this.lblMouldMaterialCode.ForeColor = System.Drawing.SystemColors.ControlText;
  711. this.lblMouldMaterialCode.Location = new System.Drawing.Point(6, 24);
  712. this.lblMouldMaterialCode.Name = "lblMouldMaterialCode";
  713. this.lblMouldMaterialCode.Size = new System.Drawing.Size(53, 12);
  714. this.lblMouldMaterialCode.TabIndex = 0;
  715. this.lblMouldMaterialCode.Text = "物料编码";
  716. //
  717. // lblWaterLabelCode
  718. //
  719. this.lblWaterLabelCode.AutoSize = true;
  720. this.lblWaterLabelCode.BackColor = System.Drawing.Color.Transparent;
  721. this.lblWaterLabelCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  722. this.lblWaterLabelCode.ForeColor = System.Drawing.SystemColors.ControlText;
  723. this.lblWaterLabelCode.Location = new System.Drawing.Point(5, 119);
  724. this.lblWaterLabelCode.Name = "lblWaterLabelCode";
  725. this.lblWaterLabelCode.Size = new System.Drawing.Size(53, 12);
  726. this.lblWaterLabelCode.TabIndex = 24;
  727. this.lblWaterLabelCode.Text = "水效标识";
  728. //
  729. // lblMouldOutputCount
  730. //
  731. this.lblMouldOutputCount.AutoSize = true;
  732. this.lblMouldOutputCount.BackColor = System.Drawing.Color.Transparent;
  733. this.lblMouldOutputCount.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  734. this.lblMouldOutputCount.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  735. this.lblMouldOutputCount.IsMustInput = true;
  736. this.lblMouldOutputCount.Location = new System.Drawing.Point(6, 51);
  737. this.lblMouldOutputCount.Name = "lblMouldOutputCount";
  738. this.lblMouldOutputCount.Size = new System.Drawing.Size(53, 12);
  739. this.lblMouldOutputCount.TabIndex = 2;
  740. this.lblMouldOutputCount.Text = "产出数量";
  741. //
  742. // lblStandardGroutingNum
  743. //
  744. this.lblStandardGroutingNum.AutoSize = true;
  745. this.lblStandardGroutingNum.BackColor = System.Drawing.Color.Transparent;
  746. this.lblStandardGroutingNum.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  747. this.lblStandardGroutingNum.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(155)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  748. this.lblStandardGroutingNum.IsMustInput = true;
  749. this.lblStandardGroutingNum.Location = new System.Drawing.Point(6, 78);
  750. this.lblStandardGroutingNum.Name = "lblStandardGroutingNum";
  751. this.lblStandardGroutingNum.Size = new System.Drawing.Size(53, 12);
  752. this.lblStandardGroutingNum.TabIndex = 4;
  753. this.lblStandardGroutingNum.Text = "标准次数";
  754. //
  755. // txtWaterLabelCode
  756. //
  757. this.txtWaterLabelCode.BackColor = System.Drawing.SystemColors.Window;
  758. this.txtWaterLabelCode.BackgroundColor = System.Drawing.SystemColors.Window;
  759. this.txtWaterLabelCode.ErrorMessage = "";
  760. this.txtWaterLabelCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  761. this.txtWaterLabelCode.Location = new System.Drawing.Point(64, 115);
  762. this.txtWaterLabelCode.MaxLength = 100;
  763. this.txtWaterLabelCode.Name = "txtWaterLabelCode";
  764. this.txtWaterLabelCode.Size = new System.Drawing.Size(265, 21);
  765. this.txtWaterLabelCode.TabIndex = 25;
  766. //
  767. // txtMouldMaterialCode
  768. //
  769. this.txtMouldMaterialCode.BackColor = System.Drawing.SystemColors.Window;
  770. this.txtMouldMaterialCode.BackgroundColor = System.Drawing.SystemColors.Window;
  771. this.txtMouldMaterialCode.ErrorMessage = "";
  772. this.txtMouldMaterialCode.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  773. this.txtMouldMaterialCode.Location = new System.Drawing.Point(62, 20);
  774. this.txtMouldMaterialCode.MaxLength = 50;
  775. this.txtMouldMaterialCode.Name = "txtMouldMaterialCode";
  776. this.txtMouldMaterialCode.Size = new System.Drawing.Size(164, 21);
  777. this.txtMouldMaterialCode.TabIndex = 1;
  778. //
  779. // c_Label5
  780. //
  781. this.c_Label5.AutoSize = true;
  782. this.c_Label5.BackColor = System.Drawing.Color.Transparent;
  783. this.c_Label5.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  784. this.c_Label5.ForeColor = System.Drawing.SystemColors.ControlText;
  785. this.c_Label5.Location = new System.Drawing.Point(353, 119);
  786. this.c_Label5.Name = "c_Label5";
  787. this.c_Label5.Size = new System.Drawing.Size(59, 12);
  788. this.c_Label5.TabIndex = 26;
  789. this.c_Label5.Text = "PLC标识码";
  790. //
  791. // tabControl1
  792. //
  793. this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  794. | System.Windows.Forms.AnchorStyles.Left)
  795. | System.Windows.Forms.AnchorStyles.Right)));
  796. this.tabControl1.Controls.Add(this.tabPage1);
  797. this.tabControl1.Controls.Add(this.tabPage2);
  798. this.tabControl1.Location = new System.Drawing.Point(3, 3);
  799. this.tabControl1.Name = "tabControl1";
  800. this.tabControl1.SelectedIndex = 0;
  801. this.tabControl1.Size = new System.Drawing.Size(769, 345);
  802. this.tabControl1.TabIndex = 0;
  803. //
  804. // tabPage1
  805. //
  806. this.tabPage1.BackgroundImage = global::Dongke.IBOSS.PRD.Client.SystemModule.Resource1.bg;
  807. this.tabPage1.Controls.Add(this.ddlMudStoreType);
  808. this.tabPage1.Controls.Add(this.lblMudStoreType);
  809. this.tabPage1.Controls.Add(this.ddlGlazeTypeID);
  810. this.tabPage1.Controls.Add(this.btnUpload);
  811. this.tabPage1.Controls.Add(this.btnDelete);
  812. this.tabPage1.Controls.Add(this.groupBox2);
  813. this.tabPage1.Controls.Add(this.lblGoodsType);
  814. this.tabPage1.Controls.Add(this.scbGoodsType);
  815. this.tabPage1.Controls.Add(this.txtGoodsCode);
  816. this.tabPage1.Controls.Add(this.lblGoodsCode);
  817. this.tabPage1.Controls.Add(this.txtSEATCOVERCODE);
  818. this.tabPage1.Controls.Add(this.lblGoodsName);
  819. this.tabPage1.Controls.Add(this.c_Label8);
  820. this.tabPage1.Controls.Add(this.c_Label5);
  821. this.tabPage1.Controls.Add(this.lblGoodsSpecification);
  822. this.tabPage1.Controls.Add(this.lblGoodsModel);
  823. this.tabPage1.Controls.Add(this.lblGlazeTypeID);
  824. this.tabPage1.Controls.Add(this.txtWaterLabelCode);
  825. this.tabPage1.Controls.Add(this.c_Label1);
  826. this.tabPage1.Controls.Add(this.lblMudWeight);
  827. this.tabPage1.Controls.Add(this.lblGlazeWeight);
  828. this.tabPage1.Controls.Add(this.lblProductionCycle);
  829. this.tabPage1.Controls.Add(this.lblWaterLabelCode);
  830. this.tabPage1.Controls.Add(this.lblRemarks);
  831. this.tabPage1.Controls.Add(this.txtGoodsName);
  832. this.tabPage1.Controls.Add(this.txtGoodsSpecification);
  833. this.tabPage1.Controls.Add(this.txtGoodsModel);
  834. this.tabPage1.Controls.Add(this.txtReservedDays);
  835. this.tabPage1.Controls.Add(this.txtMudWeight);
  836. this.tabPage1.Controls.Add(this.lblLabel10);
  837. this.tabPage1.Controls.Add(this.lblLabel9);
  838. this.tabPage1.Controls.Add(this.txtGlazeWeight);
  839. this.tabPage1.Controls.Add(this.txtProductionCycle);
  840. this.tabPage1.Controls.Add(this.c_Label2);
  841. this.tabPage1.Controls.Add(this.txtRemarks);
  842. this.tabPage1.Controls.Add(this.txtUnitPrice);
  843. this.tabPage1.Controls.Add(this.lblLusterwareWeight);
  844. this.tabPage1.Controls.Add(this.txtPlateLimitNum1);
  845. this.tabPage1.Controls.Add(this.txtLusterwareWeight);
  846. this.tabPage1.Controls.Add(this.lblLabel3);
  847. this.tabPage1.Controls.Add(this.dtpStartingDate);
  848. this.tabPage1.Controls.Add(this.txtSPM002);
  849. this.tabPage1.Controls.Add(this.lblLabel1);
  850. this.tabPage1.Controls.Add(this.lblLabel2);
  851. this.tabPage1.Controls.Add(this.txtSPM001);
  852. this.tabPage1.Location = new System.Drawing.Point(4, 22);
  853. this.tabPage1.Name = "tabPage1";
  854. this.tabPage1.Size = new System.Drawing.Size(761, 319);
  855. this.tabPage1.TabIndex = 0;
  856. this.tabPage1.Text = "基础信息";
  857. //
  858. // ddlMudStoreType
  859. //
  860. this.ddlMudStoreType.FormattingEnabled = true;
  861. this.ddlMudStoreType.HasNullData = true;
  862. this.ddlMudStoreType.Location = new System.Drawing.Point(64, 144);
  863. this.ddlMudStoreType.Name = "ddlMudStoreType";
  864. this.ddlMudStoreType.ShowMustInputAlert = false;
  865. this.ddlMudStoreType.Size = new System.Drawing.Size(100, 20);
  866. this.ddlMudStoreType.TabIndex = 62;
  867. //
  868. // lblMudStoreType
  869. //
  870. this.lblMudStoreType.AutoSize = true;
  871. this.lblMudStoreType.BackColor = System.Drawing.Color.Transparent;
  872. this.lblMudStoreType.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  873. this.lblMudStoreType.ForeColor = System.Drawing.SystemColors.ControlText;
  874. this.lblMudStoreType.Location = new System.Drawing.Point(5, 147);
  875. this.lblMudStoreType.Name = "lblMudStoreType";
  876. this.lblMudStoreType.Size = new System.Drawing.Size(53, 12);
  877. this.lblMudStoreType.TabIndex = 61;
  878. this.lblMudStoreType.Text = "坯库类型";
  879. //
  880. // ddlGlazeTypeID
  881. //
  882. this.ddlGlazeTypeID.FormattingEnabled = true;
  883. this.ddlGlazeTypeID.Location = new System.Drawing.Point(64, 61);
  884. this.ddlGlazeTypeID.Name = "ddlGlazeTypeID";
  885. this.ddlGlazeTypeID.ShowMustInputAlert = false;
  886. this.ddlGlazeTypeID.Size = new System.Drawing.Size(100, 20);
  887. this.ddlGlazeTypeID.TabIndex = 58;
  888. //
  889. // groupBox2
  890. //
  891. this.groupBox2.Controls.Add(this.txtMouldMaterialCode);
  892. this.groupBox2.Controls.Add(this.lblMouldMaterialCode);
  893. this.groupBox2.Controls.Add(this.txtMouldOutputCount);
  894. this.groupBox2.Controls.Add(this.lblMouldOutputCount);
  895. this.groupBox2.Controls.Add(this.txtStandardGroutingSum);
  896. this.groupBox2.Controls.Add(this.c_Label7);
  897. this.groupBox2.Controls.Add(this.txtStandardGroutingNum);
  898. this.groupBox2.Controls.Add(this.lblStandardGroutingNum);
  899. this.groupBox2.Controls.Add(this.txtMouldWeight);
  900. this.groupBox2.Controls.Add(this.c_Label3);
  901. this.groupBox2.Controls.Add(this.c_Label4);
  902. this.groupBox2.Controls.Add(this.txtMouldCost);
  903. this.groupBox2.Location = new System.Drawing.Point(526, 127);
  904. this.groupBox2.Name = "groupBox2";
  905. this.groupBox2.Size = new System.Drawing.Size(232, 186);
  906. this.groupBox2.TabIndex = 39;
  907. this.groupBox2.TabStop = false;
  908. this.groupBox2.Text = "模具属性";
  909. //
  910. // txtMouldOutputCount
  911. //
  912. this.txtMouldOutputCount.CanLostFocusOnError = false;
  913. this.txtMouldOutputCount.DataValue = new decimal(new int[] {
  914. 1,
  915. 0,
  916. 0,
  917. 0});
  918. this.txtMouldOutputCount.InputErrorAlert = Dongke.WinForm.Controls.InputErrorAlert.Always;
  919. this.txtMouldOutputCount.Location = new System.Drawing.Point(62, 47);
  920. this.txtMouldOutputCount.MaxValue = new decimal(new int[] {
  921. 999,
  922. 0,
  923. 0,
  924. 0});
  925. this.txtMouldOutputCount.MinValue = new decimal(new int[] {
  926. 1,
  927. 0,
  928. 0,
  929. 0});
  930. this.txtMouldOutputCount.MustInput = true;
  931. this.txtMouldOutputCount.Name = "txtMouldOutputCount";
  932. this.txtMouldOutputCount.ShowMustInputAlert = false;
  933. this.txtMouldOutputCount.Size = new System.Drawing.Size(164, 21);
  934. this.txtMouldOutputCount.TabIndex = 3;
  935. this.txtMouldOutputCount.TextChanged += new System.EventHandler(this.txtMouldOutputCount_TextChanged);
  936. //
  937. // txtStandardGroutingSum
  938. //
  939. this.txtStandardGroutingSum.DataValue = new decimal(new int[] {
  940. 1,
  941. 0,
  942. 0,
  943. 0});
  944. this.txtStandardGroutingSum.InputErrorAlert = Dongke.WinForm.Controls.InputErrorAlert.Always;
  945. this.txtStandardGroutingSum.Location = new System.Drawing.Point(62, 101);
  946. this.txtStandardGroutingSum.MaxValue = new decimal(new int[] {
  947. 999999,
  948. 0,
  949. 0,
  950. 0});
  951. this.txtStandardGroutingSum.MinValue = new decimal(new int[] {
  952. 1,
  953. 0,
  954. 0,
  955. 0});
  956. this.txtStandardGroutingSum.Name = "txtStandardGroutingSum";
  957. this.txtStandardGroutingSum.ReadOnly = true;
  958. this.txtStandardGroutingSum.ShowDecimalPlaces = Dongke.WinForm.Controls.ShowDigitalKind.None;
  959. this.txtStandardGroutingSum.ShowMustInputAlert = false;
  960. this.txtStandardGroutingSum.Size = new System.Drawing.Size(164, 21);
  961. this.txtStandardGroutingSum.TabIndex = 5;
  962. //
  963. // c_Label7
  964. //
  965. this.c_Label7.AutoSize = true;
  966. this.c_Label7.BackColor = System.Drawing.Color.Transparent;
  967. this.c_Label7.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  968. this.c_Label7.ForeColor = System.Drawing.SystemColors.ControlText;
  969. this.c_Label7.Location = new System.Drawing.Point(6, 105);
  970. this.c_Label7.Name = "c_Label7";
  971. this.c_Label7.Size = new System.Drawing.Size(53, 12);
  972. this.c_Label7.TabIndex = 4;
  973. this.c_Label7.Text = "标准总数";
  974. //
  975. // txtStandardGroutingNum
  976. //
  977. this.txtStandardGroutingNum.DataValue = new decimal(new int[] {
  978. 1,
  979. 0,
  980. 0,
  981. 0});
  982. this.txtStandardGroutingNum.InputErrorAlert = Dongke.WinForm.Controls.InputErrorAlert.Always;
  983. this.txtStandardGroutingNum.Location = new System.Drawing.Point(62, 74);
  984. this.txtStandardGroutingNum.MaxValue = new decimal(new int[] {
  985. 999999,
  986. 0,
  987. 0,
  988. 0});
  989. this.txtStandardGroutingNum.MinValue = new decimal(new int[] {
  990. 1,
  991. 0,
  992. 0,
  993. 0});
  994. this.txtStandardGroutingNum.MustInput = true;
  995. this.txtStandardGroutingNum.Name = "txtStandardGroutingNum";
  996. this.txtStandardGroutingNum.ShowDecimalPlaces = Dongke.WinForm.Controls.ShowDigitalKind.None;
  997. this.txtStandardGroutingNum.ShowMustInputAlert = false;
  998. this.txtStandardGroutingNum.Size = new System.Drawing.Size(164, 21);
  999. this.txtStandardGroutingNum.TabIndex = 5;
  1000. this.txtStandardGroutingNum.TextChanged += new System.EventHandler(this.txtMouldOutputCount_TextChanged);
  1001. //
  1002. // scbGoodsType
  1003. //
  1004. this.scbGoodsType.CheckedData = null;
  1005. this.scbGoodsType.IsOnlyDisplayEnd = false;
  1006. this.scbGoodsType.Location = new System.Drawing.Point(64, 34);
  1007. this.scbGoodsType.Name = "scbGoodsType";
  1008. this.scbGoodsType.Size = new System.Drawing.Size(100, 21);
  1009. this.scbGoodsType.TabIndex = 7;
  1010. //
  1011. // txtSEATCOVERCODE
  1012. //
  1013. this.txtSEATCOVERCODE.CanLostFocusOnError = false;
  1014. this.txtSEATCOVERCODE.InputErrorAlert = Dongke.WinForm.Controls.InputErrorAlert.None;
  1015. this.txtSEATCOVERCODE.Location = new System.Drawing.Point(418, 115);
  1016. this.txtSEATCOVERCODE.MaxValue = new decimal(new int[] {
  1017. 999999,
  1018. 0,
  1019. 0,
  1020. 0});
  1021. this.txtSEATCOVERCODE.MinValue = new decimal(new int[] {
  1022. 0,
  1023. 0,
  1024. 0,
  1025. 0});
  1026. this.txtSEATCOVERCODE.Name = "txtSEATCOVERCODE";
  1027. this.txtSEATCOVERCODE.ShowDecimalPlaces = Dongke.WinForm.Controls.ShowDigitalKind.None;
  1028. this.txtSEATCOVERCODE.ShowMustInputAlert = false;
  1029. this.txtSEATCOVERCODE.Size = new System.Drawing.Size(100, 21);
  1030. this.txtSEATCOVERCODE.TabIndex = 27;
  1031. this.txtSEATCOVERCODE.ThousandsSeparator = Dongke.WinForm.Controls.ShowDigitalKind.None;
  1032. //
  1033. // c_Label8
  1034. //
  1035. this.c_Label8.AutoSize = true;
  1036. this.c_Label8.BackColor = System.Drawing.Color.Transparent;
  1037. this.c_Label8.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1038. this.c_Label8.ForeColor = System.Drawing.SystemColors.ControlText;
  1039. this.c_Label8.Location = new System.Drawing.Point(353, 138);
  1040. this.c_Label8.Name = "c_Label8";
  1041. this.c_Label8.Size = new System.Drawing.Size(161, 12);
  1042. this.c_Label8.TabIndex = 26;
  1043. this.c_Label8.Text = "对应机械打磨、施釉、盖板等";
  1044. //
  1045. // txtReservedDays
  1046. //
  1047. this.txtReservedDays.CanLostFocusOnError = false;
  1048. this.txtReservedDays.DataValue = new decimal(new int[] {
  1049. 0,
  1050. 0,
  1051. 0,
  1052. 0});
  1053. this.txtReservedDays.InputErrorAlert = Dongke.WinForm.Controls.InputErrorAlert.Always;
  1054. this.txtReservedDays.Location = new System.Drawing.Point(607, 89);
  1055. this.txtReservedDays.MaxValue = new decimal(new int[] {
  1056. 999,
  1057. 0,
  1058. 0,
  1059. 0});
  1060. this.txtReservedDays.MinValue = new decimal(new int[] {
  1061. 0,
  1062. 0,
  1063. 0,
  1064. 0});
  1065. this.txtReservedDays.MustInput = true;
  1066. this.txtReservedDays.Name = "txtReservedDays";
  1067. this.txtReservedDays.ShowMustInputAlert = false;
  1068. this.txtReservedDays.Size = new System.Drawing.Size(67, 21);
  1069. this.txtReservedDays.TabIndex = 37;
  1070. //
  1071. // lblLabel10
  1072. //
  1073. this.lblLabel10.Location = new System.Drawing.Point(524, 112);
  1074. this.lblLabel10.Name = "lblLabel10";
  1075. this.lblLabel10.Size = new System.Drawing.Size(113, 12);
  1076. this.lblLabel10.TabIndex = 38;
  1077. this.lblLabel10.Text = "(成型存坯汇总表用)";
  1078. //
  1079. // lblLabel9
  1080. //
  1081. this.lblLabel9.Location = new System.Drawing.Point(524, 92);
  1082. this.lblLabel9.MustInput = true;
  1083. this.lblLabel9.Name = "lblLabel9";
  1084. this.lblLabel9.Size = new System.Drawing.Size(77, 12);
  1085. this.lblLabel9.TabIndex = 36;
  1086. this.lblLabel9.Text = "成型存坯天数";
  1087. //
  1088. // txtUnitPrice
  1089. //
  1090. this.txtUnitPrice.CanLostFocusOnError = false;
  1091. this.txtUnitPrice.DataValue = new decimal(new int[] {
  1092. 0,
  1093. 0,
  1094. 0,
  1095. 0});
  1096. this.txtUnitPrice.InputErrorAlert = Dongke.WinForm.Controls.InputErrorAlert.Always;
  1097. this.txtUnitPrice.Location = new System.Drawing.Point(229, 88);
  1098. this.txtUnitPrice.MaxValue = new decimal(new int[] {
  1099. 1000000,
  1100. 0,
  1101. 0,
  1102. 0});
  1103. this.txtUnitPrice.MinValue = new decimal(new int[] {
  1104. 0,
  1105. 0,
  1106. 0,
  1107. 0});
  1108. this.txtUnitPrice.Name = "txtUnitPrice";
  1109. this.txtUnitPrice.Number = new System.Drawing.Point(6, 6);
  1110. this.txtUnitPrice.ShowMustInputAlert = false;
  1111. this.txtUnitPrice.Size = new System.Drawing.Size(100, 21);
  1112. this.txtUnitPrice.TabIndex = 21;
  1113. //
  1114. // txtPlateLimitNum1
  1115. //
  1116. this.txtPlateLimitNum1.CanLostFocusOnError = false;
  1117. this.txtPlateLimitNum1.DataValue = new decimal(new int[] {
  1118. 0,
  1119. 0,
  1120. 0,
  1121. 0});
  1122. this.txtPlateLimitNum1.InputErrorAlert = Dongke.WinForm.Controls.InputErrorAlert.Always;
  1123. this.txtPlateLimitNum1.Location = new System.Drawing.Point(607, 61);
  1124. this.txtPlateLimitNum1.MaxValue = new decimal(new int[] {
  1125. 999,
  1126. 0,
  1127. 0,
  1128. 0});
  1129. this.txtPlateLimitNum1.MinValue = new decimal(new int[] {
  1130. 0,
  1131. 0,
  1132. 0,
  1133. 0});
  1134. this.txtPlateLimitNum1.MustInput = true;
  1135. this.txtPlateLimitNum1.Name = "txtPlateLimitNum1";
  1136. this.txtPlateLimitNum1.ShowMustInputAlert = false;
  1137. this.txtPlateLimitNum1.Size = new System.Drawing.Size(67, 21);
  1138. this.txtPlateLimitNum1.TabIndex = 35;
  1139. //
  1140. // lblLabel3
  1141. //
  1142. this.lblLabel3.Location = new System.Drawing.Point(524, 65);
  1143. this.lblLabel3.MustInput = true;
  1144. this.lblLabel3.Name = "lblLabel3";
  1145. this.lblLabel3.Size = new System.Drawing.Size(77, 12);
  1146. this.lblLabel3.TabIndex = 34;
  1147. this.lblLabel3.Text = "装板限制数量";
  1148. //
  1149. // txtSPM002
  1150. //
  1151. this.txtSPM002.CanLostFocusOnError = false;
  1152. this.txtSPM002.DataValue = new decimal(new int[] {
  1153. 0,
  1154. 0,
  1155. 0,
  1156. 0});
  1157. this.txtSPM002.InputErrorAlert = Dongke.WinForm.Controls.InputErrorAlert.Always;
  1158. this.txtSPM002.Location = new System.Drawing.Point(607, 35);
  1159. this.txtSPM002.MaxValue = new decimal(new int[] {
  1160. 999,
  1161. 0,
  1162. 0,
  1163. 0});
  1164. this.txtSPM002.MinValue = new decimal(new int[] {
  1165. 0,
  1166. 0,
  1167. 0,
  1168. 0});
  1169. this.txtSPM002.MustInput = true;
  1170. this.txtSPM002.Name = "txtSPM002";
  1171. this.txtSPM002.ShowMustInputAlert = false;
  1172. this.txtSPM002.Size = new System.Drawing.Size(67, 21);
  1173. this.txtSPM002.TabIndex = 33;
  1174. //
  1175. // lblLabel1
  1176. //
  1177. this.lblLabel1.Location = new System.Drawing.Point(524, 11);
  1178. this.lblLabel1.MustInput = true;
  1179. this.lblLabel1.Name = "lblLabel1";
  1180. this.lblLabel1.Size = new System.Drawing.Size(77, 12);
  1181. this.lblLabel1.TabIndex = 30;
  1182. this.lblLabel1.Text = "自动报损天数";
  1183. this.lblLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  1184. //
  1185. // lblLabel2
  1186. //
  1187. this.lblLabel2.Location = new System.Drawing.Point(524, 38);
  1188. this.lblLabel2.MustInput = true;
  1189. this.lblLabel2.Name = "lblLabel2";
  1190. this.lblLabel2.Size = new System.Drawing.Size(77, 12);
  1191. this.lblLabel2.TabIndex = 32;
  1192. this.lblLabel2.Text = "交坯限制天数";
  1193. this.lblLabel2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  1194. //
  1195. // txtSPM001
  1196. //
  1197. this.txtSPM001.CanLostFocusOnError = false;
  1198. this.txtSPM001.DataValue = new decimal(new int[] {
  1199. 0,
  1200. 0,
  1201. 0,
  1202. 0});
  1203. this.txtSPM001.InputErrorAlert = Dongke.WinForm.Controls.InputErrorAlert.Always;
  1204. this.txtSPM001.Location = new System.Drawing.Point(607, 8);
  1205. this.txtSPM001.MaxValue = new decimal(new int[] {
  1206. 999,
  1207. 0,
  1208. 0,
  1209. 0});
  1210. this.txtSPM001.MinValue = new decimal(new int[] {
  1211. 0,
  1212. 0,
  1213. 0,
  1214. 0});
  1215. this.txtSPM001.MustInput = true;
  1216. this.txtSPM001.Name = "txtSPM001";
  1217. this.txtSPM001.ShowMustInputAlert = false;
  1218. this.txtSPM001.Size = new System.Drawing.Size(67, 21);
  1219. this.txtSPM001.TabIndex = 31;
  1220. //
  1221. // tabPage2
  1222. //
  1223. this.tabPage2.BackgroundImage = global::Dongke.IBOSS.PRD.Client.SystemModule.Resource1.bg;
  1224. this.tabPage2.Controls.Add(this.dgvGoodsSap);
  1225. this.tabPage2.Controls.Add(this.panel1);
  1226. this.tabPage2.Controls.Add(this.label1);
  1227. this.tabPage2.Controls.Add(this.groupBox1);
  1228. this.tabPage2.Location = new System.Drawing.Point(4, 22);
  1229. this.tabPage2.Name = "tabPage2";
  1230. this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
  1231. this.tabPage2.Size = new System.Drawing.Size(761, 319);
  1232. this.tabPage2.TabIndex = 1;
  1233. this.tabPage2.Text = "物料信息";
  1234. //
  1235. // dgvGoodsSap
  1236. //
  1237. this.dgvGoodsSap.AllowUserToAddRows = false;
  1238. this.dgvGoodsSap.AllowUserToDeleteRows = false;
  1239. this.dgvGoodsSap.AllowUserToModifyRows = true;
  1240. this.dgvGoodsSap.AllowUserToOrderColumns = true;
  1241. dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(235)))), ((int)(((byte)(235)))), ((int)(((byte)(235)))));
  1242. this.dgvGoodsSap.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
  1243. this.dgvGoodsSap.CellBackColorNochanged = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
  1244. this.dgvGoodsSap.CellBackColorReadOnly = System.Drawing.SystemColors.Control;
  1245. this.dgvGoodsSap.CellHeight = 23;
  1246. this.dgvGoodsSap.ChildNodeColumnName = null;
  1247. this.dgvGoodsSap.ChildNodeColumnText = null;
  1248. this.dgvGoodsSap.ColumnDeep = 1;
  1249. this.dgvGoodsSap.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
  1250. dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  1251. dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(48)))), ((int)(((byte)(58)))), ((int)(((byte)(70)))));
  1252. dataGridViewCellStyle2.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1253. dataGridViewCellStyle2.ForeColor = System.Drawing.Color.White;
  1254. dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1255. dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1256. dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
  1257. this.dgvGoodsSap.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;
  1258. this.dgvGoodsSap.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing;
  1259. this.dgvGoodsSap.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  1260. this.LogoID,
  1261. this.logoName,
  1262. this.colmaterialcode,
  1263. this.colmaterialremark,
  1264. this.colWaterLabelCode,
  1265. this.colPlateLimitNum,
  1266. this.colValueflag});
  1267. this.dgvGoodsSap.ColumnTreeView = null;
  1268. this.dgvGoodsSap.ContextMenuVisible = ((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags)((Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.Refine | Dongke.IBOSS.PRD.Basics.BaseControls.C_DataGridView.ContextMenuVisibleFlags.FileOut)));
  1269. dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
  1270. dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Window;
  1271. dataGridViewCellStyle3.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1272. dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.ControlText;
  1273. dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  1274. dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  1275. dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  1276. this.dgvGoodsSap.DefaultCellStyle = dataGridViewCellStyle3;
  1277. this.dgvGoodsSap.DynamicColumnName = "";
  1278. this.dgvGoodsSap.EnableHeadersVisualStyles = false;
  1279. this.dgvGoodsSap.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1280. this.dgvGoodsSap.FormatQuantityColumns = null;
  1281. this.dgvGoodsSap.HorizontalMergeColumn = null;
  1282. this.dgvGoodsSap.IsAutoCountSum = true;
  1283. this.dgvGoodsSap.IsAutoResizeColumns = false;
  1284. this.dgvGoodsSap.IsClickF12 = false;
  1285. this.dgvGoodsSap.IsOpenMergeCellFlag = false;
  1286. this.dgvGoodsSap.IsSubTotalFlag = false;
  1287. this.dgvGoodsSap.IsTopDeep = false;
  1288. this.dgvGoodsSap.Location = new System.Drawing.Point(201, 3);
  1289. this.dgvGoodsSap.MergeColumnNames = null;
  1290. this.dgvGoodsSap.MergeDetailColumnNames = null;
  1291. this.dgvGoodsSap.MergeDetailOnlyColumn = null;
  1292. this.dgvGoodsSap.MergeOnlyColumn = null;
  1293. this.dgvGoodsSap.Name = "dgvGoodsSap";
  1294. this.dgvGoodsSap.ReadOnly = true;
  1295. this.dgvGoodsSap.RefreshAtHscroll = false;
  1296. this.dgvGoodsSap.RowHeadersWidth = 50;
  1297. this.dgvGoodsSap.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
  1298. dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(159)))), ((int)(((byte)(39)))), ((int)(((byte)(39)))));
  1299. this.dgvGoodsSap.RowsDefaultCellStyle = dataGridViewCellStyle4;
  1300. this.dgvGoodsSap.RowTemplate.Height = 21;
  1301. this.dgvGoodsSap.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
  1302. this.dgvGoodsSap.Size = new System.Drawing.Size(554, 227);
  1303. this.dgvGoodsSap.SortOrderColumnName = null;
  1304. this.dgvGoodsSap.TabIndex = 1;
  1305. this.dgvGoodsSap.Tag = "";
  1306. this.dgvGoodsSap.TotalSumColumns = null;
  1307. this.dgvGoodsSap.ViewRowFilter = "";
  1308. this.dgvGoodsSap.VirtualMode = true;
  1309. this.dgvGoodsSap.SelectionChanged += new System.EventHandler(this.dgvGoodsSap_SelectionChanged);
  1310. //
  1311. // LogoID
  1312. //
  1313. this.LogoID.HeaderText = "LogoID";
  1314. this.LogoID.Name = "LogoID";
  1315. this.LogoID.ReadOnly = true;
  1316. this.LogoID.Visible = false;
  1317. //
  1318. // logoName
  1319. //
  1320. this.logoName.DataPropertyName = "logoName";
  1321. this.logoName.HeaderText = "产品商标";
  1322. this.logoName.Name = "logoName";
  1323. this.logoName.ReadOnly = true;
  1324. //
  1325. // colmaterialcode
  1326. //
  1327. this.colmaterialcode.DataPropertyName = "materialcode";
  1328. this.colmaterialcode.HeaderText = "物料编码";
  1329. this.colmaterialcode.Name = "colmaterialcode";
  1330. this.colmaterialcode.ReadOnly = true;
  1331. //
  1332. // colmaterialremark
  1333. //
  1334. this.colmaterialremark.DataPropertyName = "materialremark";
  1335. this.colmaterialremark.HeaderText = "物料描述";
  1336. this.colmaterialremark.Name = "colmaterialremark";
  1337. this.colmaterialremark.ReadOnly = true;
  1338. //
  1339. // colWaterLabelCode
  1340. //
  1341. this.colWaterLabelCode.DataPropertyName = "WaterLabelCode";
  1342. this.colWaterLabelCode.HeaderText = "水效标识";
  1343. this.colWaterLabelCode.Name = "colWaterLabelCode";
  1344. this.colWaterLabelCode.ReadOnly = true;
  1345. //
  1346. // colPlateLimitNum
  1347. //
  1348. this.colPlateLimitNum.DataPropertyName = "PlateLimitNum";
  1349. this.colPlateLimitNum.HeaderText = "装板限制数量";
  1350. this.colPlateLimitNum.Name = "colPlateLimitNum";
  1351. this.colPlateLimitNum.ReadOnly = true;
  1352. //
  1353. // colValueflag
  1354. //
  1355. this.colValueflag.DataPropertyName = "Valueflag";
  1356. this.colValueflag.FalseValue = "0";
  1357. this.colValueflag.HeaderText = "有效标识";
  1358. this.colValueflag.Name = "colValueflag";
  1359. this.colValueflag.ReadOnly = true;
  1360. this.colValueflag.TrueValue = "1";
  1361. //
  1362. // panel1
  1363. //
  1364. this.panel1.Controls.Add(this.txtPlateLimitNum);
  1365. this.panel1.Controls.Add(this.c_Label9);
  1366. this.panel1.Controls.Add(this.scbSAPCode2);
  1367. this.panel1.Controls.Add(this.c_Label6);
  1368. this.panel1.Controls.Add(this.lblLabel12);
  1369. this.panel1.Controls.Add(this.lblLabel11);
  1370. this.panel1.Controls.Add(this.txtSAPRemark);
  1371. this.panel1.Controls.Add(this.txtSAPWaterLabelCode);
  1372. this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
  1373. this.panel1.Location = new System.Drawing.Point(198, 230);
  1374. this.panel1.Name = "panel1";
  1375. this.panel1.Size = new System.Drawing.Size(560, 86);
  1376. this.panel1.TabIndex = 2;
  1377. //
  1378. // txtPlateLimitNum
  1379. //
  1380. this.txtPlateLimitNum.DataValue = new decimal(new int[] {
  1381. 0,
  1382. 0,
  1383. 0,
  1384. 0});
  1385. this.txtPlateLimitNum.Location = new System.Drawing.Point(456, 6);
  1386. this.txtPlateLimitNum.MaxValue = new decimal(new int[] {
  1387. 999,
  1388. 0,
  1389. 0,
  1390. 0});
  1391. this.txtPlateLimitNum.MinValue = new decimal(new int[] {
  1392. 0,
  1393. 0,
  1394. 0,
  1395. 0});
  1396. this.txtPlateLimitNum.Name = "txtPlateLimitNum";
  1397. this.txtPlateLimitNum.Size = new System.Drawing.Size(101, 21);
  1398. this.txtPlateLimitNum.TabIndex = 36;
  1399. this.txtPlateLimitNum.Validated += new System.EventHandler(this.txtPlateLimitNum_Validated);
  1400. //
  1401. // c_Label9
  1402. //
  1403. this.c_Label9.AutoSize = true;
  1404. this.c_Label9.BackColor = System.Drawing.Color.Transparent;
  1405. this.c_Label9.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1406. this.c_Label9.ForeColor = System.Drawing.SystemColors.ControlText;
  1407. this.c_Label9.Location = new System.Drawing.Point(373, 10);
  1408. this.c_Label9.Name = "c_Label9";
  1409. this.c_Label9.Size = new System.Drawing.Size(77, 12);
  1410. this.c_Label9.TabIndex = 14;
  1411. this.c_Label9.Text = "装板限制数量";
  1412. //
  1413. // scbSAPCode2
  1414. //
  1415. this.scbSAPCode2.CheckedData = null;
  1416. this.scbSAPCode2.EditReadOnly = false;
  1417. this.scbSAPCode2.Location = new System.Drawing.Point(64, 6);
  1418. this.scbSAPCode2.Name = "scbSAPCode2";
  1419. this.scbSAPCode2.Size = new System.Drawing.Size(125, 21);
  1420. this.scbSAPCode2.TabIndex = 13;
  1421. this.scbSAPCode2.TextValueChanged += new Dongke.WinForm.Controls.ScbSearchBox.TextBoxChangedHandle(this.scbSAPCode2_TextValueChanged);
  1422. //
  1423. // c_Label6
  1424. //
  1425. this.c_Label6.AutoSize = true;
  1426. this.c_Label6.BackColor = System.Drawing.Color.Transparent;
  1427. this.c_Label6.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1428. this.c_Label6.ForeColor = System.Drawing.SystemColors.ControlText;
  1429. this.c_Label6.Location = new System.Drawing.Point(195, 10);
  1430. this.c_Label6.Name = "c_Label6";
  1431. this.c_Label6.Size = new System.Drawing.Size(53, 12);
  1432. this.c_Label6.TabIndex = 4;
  1433. this.c_Label6.Text = "水效标识";
  1434. //
  1435. // lblLabel12
  1436. //
  1437. this.lblLabel12.AutoSize = false;
  1438. this.lblLabel12.Location = new System.Drawing.Point(6, 33);
  1439. this.lblLabel12.Name = "lblLabel12";
  1440. this.lblLabel12.Size = new System.Drawing.Size(15, 50);
  1441. this.lblLabel12.TabIndex = 2;
  1442. this.lblLabel12.Text = "物料描述";
  1443. //
  1444. // lblLabel11
  1445. //
  1446. this.lblLabel11.Location = new System.Drawing.Point(6, 10);
  1447. this.lblLabel11.Name = "lblLabel11";
  1448. this.lblLabel11.Size = new System.Drawing.Size(53, 12);
  1449. this.lblLabel11.TabIndex = 0;
  1450. this.lblLabel11.Text = "物料编码";
  1451. //
  1452. // txtSAPRemark
  1453. //
  1454. this.txtSAPRemark.Location = new System.Drawing.Point(27, 33);
  1455. this.txtSAPRemark.MaxLength = 100;
  1456. this.txtSAPRemark.Multiline = true;
  1457. this.txtSAPRemark.Name = "txtSAPRemark";
  1458. this.txtSAPRemark.ScrollBars = System.Windows.Forms.ScrollBars.Both;
  1459. this.txtSAPRemark.Size = new System.Drawing.Size(530, 50);
  1460. this.txtSAPRemark.TabIndex = 3;
  1461. this.txtSAPRemark.TextChanged += new System.EventHandler(this.txtSAPRemark_TextChanged);
  1462. this.txtSAPRemark.Validated += new System.EventHandler(this.txtSAPRemark_Validated);
  1463. //
  1464. // txtSAPWaterLabelCode
  1465. //
  1466. this.txtSAPWaterLabelCode.Location = new System.Drawing.Point(254, 6);
  1467. this.txtSAPWaterLabelCode.MaxLength = 100;
  1468. this.txtSAPWaterLabelCode.Name = "txtSAPWaterLabelCode";
  1469. this.txtSAPWaterLabelCode.Size = new System.Drawing.Size(113, 21);
  1470. this.txtSAPWaterLabelCode.TabIndex = 5;
  1471. this.txtSAPWaterLabelCode.Validated += new System.EventHandler(this.txtSAPWaterLabelCode_Validated);
  1472. //
  1473. // label1
  1474. //
  1475. this.label1.Dock = System.Windows.Forms.DockStyle.Left;
  1476. this.label1.Location = new System.Drawing.Point(195, 3);
  1477. this.label1.Name = "label1";
  1478. this.label1.Size = new System.Drawing.Size(3, 313);
  1479. this.label1.TabIndex = 1;
  1480. //
  1481. // groupBox1
  1482. //
  1483. this.groupBox1.BackColor = System.Drawing.Color.Transparent;
  1484. this.groupBox1.Controls.Add(this.scbSAPCode1);
  1485. this.groupBox1.Controls.Add(this.ftcLogo);
  1486. this.groupBox1.Controls.Add(this.lblLabel13);
  1487. this.groupBox1.Controls.Add(this.lblLabel8);
  1488. this.groupBox1.Controls.Add(this.txtCopies);
  1489. this.groupBox1.Controls.Add(this.lblLabel7);
  1490. this.groupBox1.Controls.Add(this.txtPackageNum);
  1491. this.groupBox1.Controls.Add(this.txtMaterialRemark);
  1492. this.groupBox1.Controls.Add(this.lblLabel6);
  1493. this.groupBox1.Controls.Add(this.txtOutletDistance);
  1494. this.groupBox1.Controls.Add(this.lblLabel5);
  1495. this.groupBox1.Controls.Add(this.lblLabel4);
  1496. this.groupBox1.Dock = System.Windows.Forms.DockStyle.Left;
  1497. this.groupBox1.Location = new System.Drawing.Point(3, 3);
  1498. this.groupBox1.Name = "groupBox1";
  1499. this.groupBox1.Size = new System.Drawing.Size(192, 313);
  1500. this.groupBox1.TabIndex = 0;
  1501. this.groupBox1.TabStop = false;
  1502. this.groupBox1.Text = "默认信息";
  1503. //
  1504. // scbSAPCode1
  1505. //
  1506. this.scbSAPCode1.CheckedData = null;
  1507. this.scbSAPCode1.EditReadOnly = false;
  1508. this.scbSAPCode1.Location = new System.Drawing.Point(61, 74);
  1509. this.scbSAPCode1.Name = "scbSAPCode1";
  1510. this.scbSAPCode1.Size = new System.Drawing.Size(125, 21);
  1511. this.scbSAPCode1.TabIndex = 12;
  1512. //
  1513. // ftcLogo
  1514. //
  1515. this.ftcLogo.FormattingEnabled = true;
  1516. this.ftcLogo.Location = new System.Drawing.Point(62, 285);
  1517. this.ftcLogo.Name = "ftcLogo";
  1518. this.ftcLogo.ShowMustInputAlert = false;
  1519. this.ftcLogo.Size = new System.Drawing.Size(124, 20);
  1520. this.ftcLogo.TabIndex = 11;
  1521. //
  1522. // lblLabel13
  1523. //
  1524. this.lblLabel13.Location = new System.Drawing.Point(3, 289);
  1525. this.lblLabel13.MustInput = true;
  1526. this.lblLabel13.Name = "lblLabel13";
  1527. this.lblLabel13.Size = new System.Drawing.Size(53, 12);
  1528. this.lblLabel13.TabIndex = 10;
  1529. this.lblLabel13.Text = "注浆商标";
  1530. //
  1531. // lblLabel8
  1532. //
  1533. this.lblLabel8.Location = new System.Drawing.Point(3, 247);
  1534. this.lblLabel8.MustInput = true;
  1535. this.lblLabel8.Name = "lblLabel8";
  1536. this.lblLabel8.Size = new System.Drawing.Size(53, 12);
  1537. this.lblLabel8.TabIndex = 8;
  1538. this.lblLabel8.Text = "打印份数";
  1539. this.lblLabel8.Visible = false;
  1540. //
  1541. // txtCopies
  1542. //
  1543. this.txtCopies.CanLostFocusOnError = false;
  1544. this.txtCopies.DataValue = new decimal(new int[] {
  1545. 0,
  1546. 0,
  1547. 0,
  1548. 0});
  1549. this.txtCopies.InputErrorAlert = Dongke.WinForm.Controls.InputErrorAlert.Always;
  1550. this.txtCopies.Location = new System.Drawing.Point(62, 243);
  1551. this.txtCopies.MaxValue = new decimal(new int[] {
  1552. 99,
  1553. 0,
  1554. 0,
  1555. 0});
  1556. this.txtCopies.MinValue = new decimal(new int[] {
  1557. 0,
  1558. 0,
  1559. 0,
  1560. 0});
  1561. this.txtCopies.MustInput = true;
  1562. this.txtCopies.Name = "txtCopies";
  1563. this.txtCopies.ShowMustInputAlert = false;
  1564. this.txtCopies.Size = new System.Drawing.Size(124, 21);
  1565. this.txtCopies.TabIndex = 9;
  1566. this.txtCopies.Visible = false;
  1567. //
  1568. // lblLabel7
  1569. //
  1570. this.lblLabel7.Location = new System.Drawing.Point(3, 105);
  1571. this.lblLabel7.MustInput = true;
  1572. this.lblLabel7.Name = "lblLabel7";
  1573. this.lblLabel7.Size = new System.Drawing.Size(53, 12);
  1574. this.lblLabel7.TabIndex = 6;
  1575. this.lblLabel7.Text = "物料描述";
  1576. //
  1577. // txtPackageNum
  1578. //
  1579. this.txtPackageNum.Location = new System.Drawing.Point(62, 20);
  1580. this.txtPackageNum.MaxLength = 10;
  1581. this.txtPackageNum.Name = "txtPackageNum";
  1582. this.txtPackageNum.Size = new System.Drawing.Size(124, 21);
  1583. this.txtPackageNum.TabIndex = 1;
  1584. //
  1585. // txtMaterialRemark
  1586. //
  1587. this.txtMaterialRemark.Location = new System.Drawing.Point(5, 128);
  1588. this.txtMaterialRemark.MaxLength = 100;
  1589. this.txtMaterialRemark.Multiline = true;
  1590. this.txtMaterialRemark.Name = "txtMaterialRemark";
  1591. this.txtMaterialRemark.ScrollBars = System.Windows.Forms.ScrollBars.Both;
  1592. this.txtMaterialRemark.Size = new System.Drawing.Size(181, 151);
  1593. this.txtMaterialRemark.TabIndex = 7;
  1594. //
  1595. // lblLabel6
  1596. //
  1597. this.lblLabel6.Location = new System.Drawing.Point(3, 78);
  1598. this.lblLabel6.Name = "lblLabel6";
  1599. this.lblLabel6.Size = new System.Drawing.Size(53, 12);
  1600. this.lblLabel6.TabIndex = 4;
  1601. this.lblLabel6.Text = "物料编码";
  1602. //
  1603. // txtOutletDistance
  1604. //
  1605. this.txtOutletDistance.Location = new System.Drawing.Point(62, 47);
  1606. this.txtOutletDistance.MaxLength = 3;
  1607. this.txtOutletDistance.Name = "txtOutletDistance";
  1608. this.txtOutletDistance.Size = new System.Drawing.Size(124, 21);
  1609. this.txtOutletDistance.TabIndex = 3;
  1610. //
  1611. // lblLabel5
  1612. //
  1613. this.lblLabel5.Location = new System.Drawing.Point(15, 51);
  1614. this.lblLabel5.MustInput = true;
  1615. this.lblLabel5.Name = "lblLabel5";
  1616. this.lblLabel5.Size = new System.Drawing.Size(41, 12);
  1617. this.lblLabel5.TabIndex = 2;
  1618. this.lblLabel5.Text = "出水距";
  1619. //
  1620. // lblLabel4
  1621. //
  1622. this.lblLabel4.Location = new System.Drawing.Point(3, 24);
  1623. this.lblLabel4.MustInput = true;
  1624. this.lblLabel4.Name = "lblLabel4";
  1625. this.lblLabel4.Size = new System.Drawing.Size(53, 12);
  1626. this.lblLabel4.TabIndex = 0;
  1627. this.lblLabel4.Text = "包装数量";
  1628. //
  1629. // txtSAPCode
  1630. //
  1631. this.txtSAPCode.Location = new System.Drawing.Point(472, 370);
  1632. this.txtSAPCode.MaxLength = 20;
  1633. this.txtSAPCode.Name = "txtSAPCode";
  1634. this.txtSAPCode.Size = new System.Drawing.Size(100, 21);
  1635. this.txtSAPCode.TabIndex = 1;
  1636. this.txtSAPCode.Visible = false;
  1637. this.txtSAPCode.Validated += new System.EventHandler(this.txtSAPCode_Validated);
  1638. //
  1639. // txtMaterialCode
  1640. //
  1641. this.txtMaterialCode.Location = new System.Drawing.Point(366, 370);
  1642. this.txtMaterialCode.MaxLength = 20;
  1643. this.txtMaterialCode.Name = "txtMaterialCode";
  1644. this.txtMaterialCode.Size = new System.Drawing.Size(100, 21);
  1645. this.txtMaterialCode.TabIndex = 5;
  1646. this.txtMaterialCode.Visible = false;
  1647. //
  1648. // chkGLT
  1649. //
  1650. this.chkGLT.AutoSize = true;
  1651. this.chkGLT.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1652. this.chkGLT.Location = new System.Drawing.Point(284, 354);
  1653. this.chkGLT.Name = "chkGLT";
  1654. this.chkGLT.Size = new System.Drawing.Size(96, 16);
  1655. this.chkGLT.TabIndex = 2;
  1656. this.chkGLT.Text = "高压型号标识";
  1657. this.chkGLT.UseVisualStyleBackColor = true;
  1658. this.chkGLT.Click += new System.EventHandler(this.chkGLT_Click);
  1659. //
  1660. // cbGLTDetail
  1661. //
  1662. this.cbGLTDetail.FormattingEnabled = true;
  1663. this.cbGLTDetail.Location = new System.Drawing.Point(386, 350);
  1664. this.cbGLTDetail.Name = "cbGLTDetail";
  1665. this.cbGLTDetail.Size = new System.Drawing.Size(153, 20);
  1666. this.cbGLTDetail.TabIndex = 42;
  1667. //
  1668. // cbSecurityCodeBindFlag
  1669. //
  1670. this.cbSecurityCodeBindFlag.AutoSize = true;
  1671. this.cbSecurityCodeBindFlag.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1672. this.cbSecurityCodeBindFlag.Location = new System.Drawing.Point(14, 376);
  1673. this.cbSecurityCodeBindFlag.Name = "cbSecurityCodeBindFlag";
  1674. this.cbSecurityCodeBindFlag.Size = new System.Drawing.Size(84, 16);
  1675. this.cbSecurityCodeBindFlag.TabIndex = 43;
  1676. this.cbSecurityCodeBindFlag.Text = "防伪码绑定";
  1677. this.cbSecurityCodeBindFlag.UseVisualStyleBackColor = true;
  1678. this.cbSecurityCodeBindFlag.CheckedChanged += new System.EventHandler(this.cbSecurityCodeBindFlag_CheckedChanged);
  1679. //
  1680. // cbSecurityCodeCheckFlag
  1681. //
  1682. this.cbSecurityCodeCheckFlag.AutoSize = true;
  1683. this.cbSecurityCodeCheckFlag.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1684. this.cbSecurityCodeCheckFlag.Location = new System.Drawing.Point(104, 376);
  1685. this.cbSecurityCodeCheckFlag.Name = "cbSecurityCodeCheckFlag";
  1686. this.cbSecurityCodeCheckFlag.Size = new System.Drawing.Size(84, 16);
  1687. this.cbSecurityCodeCheckFlag.TabIndex = 44;
  1688. this.cbSecurityCodeCheckFlag.Text = "防伪码验证";
  1689. this.cbSecurityCodeCheckFlag.UseVisualStyleBackColor = true;
  1690. this.cbSecurityCodeCheckFlag.CheckedChanged += new System.EventHandler(this.cbSecurityCodeCheckFlag_CheckedChanged);
  1691. //
  1692. // cbPlanFlag
  1693. //
  1694. this.cbPlanFlag.AutoSize = true;
  1695. this.cbPlanFlag.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1696. this.cbPlanFlag.Location = new System.Drawing.Point(194, 375);
  1697. this.cbPlanFlag.Name = "cbPlanFlag";
  1698. this.cbPlanFlag.Size = new System.Drawing.Size(96, 16);
  1699. this.cbPlanFlag.TabIndex = 45;
  1700. this.cbPlanFlag.Text = "计划排产标识";
  1701. this.cbPlanFlag.UseVisualStyleBackColor = true;
  1702. //
  1703. // F_MST_0502
  1704. //
  1705. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  1706. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  1707. this.CancelButton = this.btnCancel;
  1708. this.ClientSize = new System.Drawing.Size(784, 409);
  1709. this.Controls.Add(this.cbPlanFlag);
  1710. this.Controls.Add(this.cbSecurityCodeCheckFlag);
  1711. this.Controls.Add(this.cbSecurityCodeBindFlag);
  1712. this.Controls.Add(this.cbGLTDetail);
  1713. this.Controls.Add(this.btnCancel);
  1714. this.Controls.Add(this.txtSAPCode);
  1715. this.Controls.Add(this.btnSave);
  1716. this.Controls.Add(this.tabControl1);
  1717. this.Controls.Add(this.chkScrapSumFlag);
  1718. this.Controls.Add(this.lvPic);
  1719. this.Controls.Add(this.chkGLT);
  1720. this.Controls.Add(this.cbValueFlag);
  1721. this.Controls.Add(this.cbCeaseFlag);
  1722. this.Controls.Add(this.txtMaterialCode);
  1723. this.Controls.Add(this.lblPhoto);
  1724. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  1725. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  1726. this.IsSaveFormSize = false;
  1727. this.MaximizeBox = false;
  1728. this.MinimizeBox = false;
  1729. this.Name = "F_MST_0502";
  1730. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  1731. this.StatusSizingGrip = false;
  1732. this.Text = "新建商品档案";
  1733. this.Load += new System.EventHandler(this.F_MST_0702_Load);
  1734. this.Controls.SetChildIndex(this.lblPhoto, 0);
  1735. this.Controls.SetChildIndex(this.txtMaterialCode, 0);
  1736. this.Controls.SetChildIndex(this.cbCeaseFlag, 0);
  1737. this.Controls.SetChildIndex(this.cbValueFlag, 0);
  1738. this.Controls.SetChildIndex(this.chkGLT, 0);
  1739. this.Controls.SetChildIndex(this.lvPic, 0);
  1740. this.Controls.SetChildIndex(this.chkScrapSumFlag, 0);
  1741. this.Controls.SetChildIndex(this.tabControl1, 0);
  1742. this.Controls.SetChildIndex(this.btnSave, 0);
  1743. this.Controls.SetChildIndex(this.txtSAPCode, 0);
  1744. this.Controls.SetChildIndex(this.btnCancel, 0);
  1745. this.Controls.SetChildIndex(this.cbGLTDetail, 0);
  1746. this.Controls.SetChildIndex(this.cbSecurityCodeBindFlag, 0);
  1747. this.Controls.SetChildIndex(this.cbSecurityCodeCheckFlag, 0);
  1748. this.Controls.SetChildIndex(this.cbPlanFlag, 0);
  1749. this.tabControl1.ResumeLayout(false);
  1750. this.tabPage1.ResumeLayout(false);
  1751. this.tabPage1.PerformLayout();
  1752. this.groupBox2.ResumeLayout(false);
  1753. this.groupBox2.PerformLayout();
  1754. this.tabPage2.ResumeLayout(false);
  1755. ((System.ComponentModel.ISupportInitialize)(this.dgvGoodsSap)).EndInit();
  1756. this.panel1.ResumeLayout(false);
  1757. this.panel1.PerformLayout();
  1758. this.groupBox1.ResumeLayout(false);
  1759. this.groupBox1.PerformLayout();
  1760. this.ResumeLayout(false);
  1761. this.PerformLayout();
  1762. }
  1763. #endregion
  1764. private Basics.BaseControls.C_Label lblGoodsCode;
  1765. private Basics.BaseControls.C_Label lblGoodsName;
  1766. private Basics.BaseControls.C_Label lblGoodsSpecification;
  1767. private Basics.BaseControls.C_Label lblGoodsModel;
  1768. private Basics.BaseControls.C_Label lblGlazeTypeID;
  1769. private Basics.BaseControls.C_Label lblMudWeight;
  1770. private Basics.BaseControls.C_Label lblGlazeWeight;
  1771. private Basics.BaseControls.C_Label lblProductionCycle;
  1772. private Basics.BaseControls.C_Label lblRemarks;
  1773. private Basics.BaseControls.C_TextBox txtGoodsCode;
  1774. private Basics.BaseControls.C_TextBox txtGoodsName;
  1775. private Basics.BaseControls.C_TextBox txtGoodsSpecification;
  1776. private Basics.BaseControls.C_TextBox txtGoodsModel;
  1777. private Basics.BaseControls.C_TXT_Digital txtMudWeight;
  1778. private Basics.BaseControls.C_TXT_Digital txtGlazeWeight;
  1779. private Basics.BaseControls.C_TXT_Digital txtProductionCycle;
  1780. private Basics.BaseControls.C_CheckBox cbCeaseFlag;
  1781. private Basics.BaseControls.C_CheckBox cbValueFlag;
  1782. private Basics.BaseControls.C_TextBox txtRemarks;
  1783. private Basics.BaseControls.C_Button btnSave;
  1784. private Basics.BaseControls.C_Button btnCancel;
  1785. private System.Windows.Forms.OpenFileDialog odlgFile;
  1786. private Basics.BaseControls.C_Label lblPhoto;
  1787. private System.Windows.Forms.ImageList ilPic;
  1788. private System.Windows.Forms.ListView lvPic;
  1789. private Basics.BaseControls.C_Label lblLusterwareWeight;
  1790. private Basics.BaseControls.C_TXT_Digital txtLusterwareWeight;
  1791. private Basics.BaseControls.C_Button btnDelete;
  1792. private Basics.BaseControls.C_Button btnUpload;
  1793. private Basics.BaseControls.C_DateTimePicker dtpStartingDate;
  1794. private Basics.BaseControls.C_Label c_Label1;
  1795. private WinForm.Controls.TxtNumerical txtSPM002;
  1796. private WinForm.Controls.LblLabel lblLabel2;
  1797. private WinForm.Controls.TxtNumerical txtSPM001;
  1798. private WinForm.Controls.LblLabel lblLabel1;
  1799. private WinForm.Controls.LblLabel lblLabel3;
  1800. private WinForm.Controls.TxtNumerical txtPlateLimitNum1;
  1801. private Basics.BaseControls.C_Label c_Label2;
  1802. private WinForm.Controls.TxtNumerical txtUnitPrice;
  1803. private Basics.BaseControls.C_TXT_Digital txtMouldWeight;
  1804. private Basics.BaseControls.C_Label c_Label3;
  1805. private Basics.BaseControls.C_Label c_Label4;
  1806. private Basics.BaseControls.C_TXT_Digital txtMouldCost;
  1807. private Basics.BaseControls.C_CheckBox chkScrapSumFlag;
  1808. private WinForm.Controls.TxtNumerical txtReservedDays;
  1809. private WinForm.Controls.LblLabel lblLabel9;
  1810. private Basics.BaseControls.C_Label lblGoodsType;
  1811. private Controls.SearchBox.ScbGoodsType scbGoodsType;
  1812. private Basics.BaseControls.C_Label lblMouldMaterialCode;
  1813. private Basics.BaseControls.C_Label lblWaterLabelCode;
  1814. private Basics.BaseControls.C_Label lblMouldOutputCount;
  1815. private Basics.BaseControls.C_Label lblStandardGroutingNum;
  1816. private WinForm.Controls.TxtNumerical txtMouldOutputCount;
  1817. private Basics.BaseControls.C_TextBox txtWaterLabelCode;
  1818. private Basics.BaseControls.C_TextBox txtMouldMaterialCode;
  1819. private WinForm.Controls.TxtNumerical txtStandardGroutingNum;
  1820. private WinForm.Controls.TxtNumerical txtSEATCOVERCODE;
  1821. private Basics.BaseControls.C_Label c_Label5;
  1822. private System.Windows.Forms.TabControl tabControl1;
  1823. private System.Windows.Forms.TabPage tabPage1;
  1824. private System.Windows.Forms.TabPage tabPage2;
  1825. private System.Windows.Forms.GroupBox groupBox1;
  1826. private WinForm.Controls.LblLabel lblLabel8;
  1827. private WinForm.Controls.LblLabel lblLabel7;
  1828. private WinForm.Controls.TxtTextBox txtPackageNum;
  1829. private WinForm.Controls.TxtTextBox txtMaterialRemark;
  1830. private WinForm.Controls.LblLabel lblLabel6;
  1831. private WinForm.Controls.TxtNumerical txtCopies;
  1832. private WinForm.Controls.TxtCodeNo txtMaterialCode;
  1833. private WinForm.Controls.TxtCodeNo txtOutletDistance;
  1834. private WinForm.Controls.LblLabel lblLabel5;
  1835. private WinForm.Controls.LblLabel lblLabel4;
  1836. private System.Windows.Forms.GroupBox groupBox2;
  1837. private WinForm.Controls.LblLabel lblLabel10;
  1838. private Basics.BaseControls.C_DataGridView dgvGoodsSap;
  1839. private System.Windows.Forms.Label label1;
  1840. private System.Windows.Forms.Panel panel1;
  1841. private WinForm.Controls.TxtCodeNo txtSAPCode;
  1842. private WinForm.Controls.LblLabel lblLabel12;
  1843. private WinForm.Controls.LblLabel lblLabel11;
  1844. private WinForm.Controls.TxtTextBox txtSAPRemark;
  1845. private WinForm.Controls.FtcFilterComboBox ddlGlazeTypeID;
  1846. private WinForm.Controls.LblLabel lblLabel13;
  1847. private WinForm.Controls.FtcFilterComboBox ftcLogo;
  1848. private Basics.BaseControls.C_Label c_Label6;
  1849. private WinForm.Controls.TxtTextBox txtSAPWaterLabelCode;
  1850. private WinForm.Controls.TxtNumerical txtStandardGroutingSum;
  1851. private Basics.BaseControls.C_Label c_Label7;
  1852. private Basics.BaseControls.C_CheckBox chkGLT;
  1853. private WinForm.Controls.FtcFilterComboBox ddlMudStoreType;
  1854. private Basics.BaseControls.C_Label lblMudStoreType;
  1855. private Controls.SearchBox.ScbSAPCode scbSAPCode1;
  1856. private Controls.SearchBox.ScbSAPCode scbSAPCode2;
  1857. private Basics.BaseControls.C_Label c_Label8;
  1858. private System.Windows.Forms.ComboBox cbGLTDetail;
  1859. private Basics.BaseControls.C_Label c_Label9;
  1860. private System.Windows.Forms.DataGridViewTextBoxColumn LogoID;
  1861. private System.Windows.Forms.DataGridViewTextBoxColumn logoName;
  1862. private System.Windows.Forms.DataGridViewTextBoxColumn colmaterialcode;
  1863. private System.Windows.Forms.DataGridViewTextBoxColumn colmaterialremark;
  1864. private System.Windows.Forms.DataGridViewTextBoxColumn colWaterLabelCode;
  1865. private System.Windows.Forms.DataGridViewTextBoxColumn colPlateLimitNum;
  1866. private System.Windows.Forms.DataGridViewCheckBoxColumn colValueflag;
  1867. private WinForm.Controls.TxtNumerical txtPlateLimitNum;
  1868. private Basics.BaseControls.C_CheckBox cbSecurityCodeBindFlag;
  1869. private Basics.BaseControls.C_CheckBox cbSecurityCodeCheckFlag;
  1870. private Basics.BaseControls.C_CheckBox cbPlanFlag;
  1871. }
  1872. }