F_MST_0502.Designer.cs 106 KB

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